Added logic to LineFinder to find both lines for multiline plates

This commit is contained in:
Matt Hill
2014-10-18 20:13:30 -04:00
parent 3964ffa49f
commit 2ac6337342
6 changed files with 164 additions and 124 deletions

View File

@@ -22,6 +22,7 @@
#define OPENALPR_TEXTLINE_H
#include "utility.h"
#include "opencv2/imgproc/imgproc.hpp"
class TextLine {
public:
@@ -38,6 +39,9 @@ public:
LineSegment charBoxLeft;
LineSegment charBoxRight;
float lineHeight;
cv::Mat drawDebugImage(cv::Mat baseImage);
private:
};