Added LineFinder class to help find text lines in plate images

This commit is contained in:
Matt Hill
2014-10-16 21:47:01 -04:00
parent 1ce39c3f1f
commit 4bfef05b9a
7 changed files with 350 additions and 58 deletions

View File

@@ -26,6 +26,7 @@
#include "pipeline_data.h"
#include "textcontours.h"
#include "platemask.h"
#include "linefinder.h"
class CharacterAnalysis
{
@@ -40,7 +41,6 @@ class CharacterAnalysis
TextContours bestContours;
bool thresholdsInverted;
bool isTwoLine;
std::vector<TextContours> allTextContours;
@@ -68,7 +68,7 @@ class CharacterAnalysis
bool verifySize(cv::Mat r, float minHeightPx, float maxHeightPx);
};
#endif // OPENALPR_CHARACTERANALYSIS_H