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.
34 lines
812 B
C++
34 lines
812 B
C++
//
|
|
// Created by 庾金科 on 20/09/2017.
|
|
//
|
|
|
|
#ifndef SWIFTPR_PLATEDETECTION_H
|
|
#define SWIFTPR_PLATEDETECTION_H
|
|
|
|
#include <opencv2/opencv.hpp>
|
|
#include "PlateInfo.h"
|
|
#include <vector>
|
|
namespace pr{
|
|
class PlateDetection{
|
|
public:
|
|
PlateDetection(std::string filename_cascade);
|
|
PlateDetection();
|
|
void LoadModel(std::string filename_cascade);
|
|
void plateDetectionRough(cv::Mat InputImage,std::vector<pr::PlateInfo> &plateInfos,int min_w=36,int max_w=800);
|
|
// std::vector<pr::PlateInfo> plateDetectionRough(cv::Mat InputImage,int min_w= 60,int max_h = 400);
|
|
|
|
|
|
// std::vector<pr::PlateInfo> plateDetectionRoughByMultiScaleEdge(cv::Mat InputImage);
|
|
|
|
|
|
|
|
private:
|
|
cv::CascadeClassifier cascade;
|
|
|
|
|
|
};
|
|
|
|
}// namespace pr
|
|
|
|
#endif //SWIFTPR_PLATEDETECTION_H
|