mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-07 08:11:14 +08:00
Updated code to use state ID library
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
#include "prewarp.h"
|
||||
|
||||
#include "licenseplatecandidate.h"
|
||||
#include "stateidentifier.h"
|
||||
#include "../statedetection/state_detector.h"
|
||||
#include "segmentation/charactersegmenter.h"
|
||||
#include "ocr.h"
|
||||
|
||||
@@ -76,7 +76,7 @@ namespace alpr
|
||||
AlprFullDetails recognizeFullDetails(cv::Mat img, std::vector<cv::Rect> regionsOfInterest);
|
||||
|
||||
AlprResults recognize( std::vector<char> imageBytes );
|
||||
AlprResults recognize( std::vector<char> imageBytes, std::vector<AlprRegionOfInterest> regionsOfInterest );
|
||||
AlprResults recognize( std::vector<char> imageBytes, std::vector<AlprRegionOfInterest> regionsOfInterest );
|
||||
AlprResults recognize( unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight, std::vector<AlprRegionOfInterest> regionsOfInterest );
|
||||
AlprResults recognize( cv::Mat img );
|
||||
AlprResults recognize( cv::Mat img, std::vector<cv::Rect> regionsOfInterest );
|
||||
@@ -100,7 +100,7 @@ namespace alpr
|
||||
private:
|
||||
|
||||
Detector* plateDetector;
|
||||
StateIdentifier* stateIdentifier;
|
||||
StateDetector* stateDetector;
|
||||
OCR* ocr;
|
||||
PreWarp* prewarp;
|
||||
|
||||
|
Reference in New Issue
Block a user