You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Recognizer.h 424 B

6 years ago
123456789101112131415161718192021
  1. //
  2. // Created by 庾金科 on 20/10/2017.
  3. //
  4. #ifndef SWIFTPR_RECOGNIZER_H
  5. #define SWIFTPR_RECOGNIZER_H
  6. #include "PlateInfo.h"
  7. #include "opencv2/dnn.hpp"
  8. namespace pr{
  9. typedef cv::Mat label;
  10. class GeneralRecognizer{
  11. public:
  12. virtual label recognizeCharacter(cv::Mat character) = 0;
  13. void SegmentBasedSequenceRecognition(PlateInfo &plateinfo);
  14. };
  15. }
  16. #endif //SWIFTPR_RECOGNIZER_H