You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef EXTRACT_SEAL_MAIN_H
|
|
#define EXTRACT_SEAL_MAIN_H
|
|
|
|
#include <opencv2/core.hpp>
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
struct SealInfo;
|
|
|
|
vector<SealInfo> extract_seal_main(const cv::Mat& img, const vector<vector<double>>& det);
|
|
|
|
#endif
|