This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#ifndef __CHARS_IDENTIFY_H__
#define __CHARS_IDENTIFY_H__
#include <opencv2/opencv.hpp>
namespace easypr {
class CharsIdentify {
public:
static CharsIdentify* instance();
std::pair<std::string, std::string> identify(cv::Mat input);
private:
CharsIdentify();
static CharsIdentify* instance_;
//!使用的ANN模型
cv::Ptr<cv::ml::ANN_MLP> ann_;
};
}
#endif