You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EasyPR/include/easypr/core/chars_identify.h

24 lines
385 B

11 years ago
#ifndef __CHARS_IDENTIFY_H__
#define __CHARS_IDENTIFY_H__
#include <opencv2/opencv.hpp>
11 years ago
namespace easypr {
class CharsIdentify {
public:
static CharsIdentify* instance();
11 years ago
std::pair<std::string, std::string> identify(cv::Mat input);
11 years ago
private:
CharsIdentify();
static CharsIdentify* instance_;
//<2F><>ʹ<EFBFBD>õ<EFBFBD>ANNģ<4E><C4A3>
cv::Ptr<cv::ml::ANN_MLP> ann_;
};
11 years ago
}
11 years ago
#endif