Moved public variable to private

This commit is contained in:
Matt Hill
2014-07-01 19:01:22 -04:00
parent 717f1f0e7e
commit 0708523131
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ void PlateLines::processImage(Mat inputImage, CharacterRegion* charRegion, float
// Create a mask that is dilated based on the detected characters
vector<vector<Point> > polygons;
polygons.push_back(charRegion->charAnalysis->charArea);
polygons.push_back(charRegion->getCharArea());
Mat mask = Mat::zeros(inputImage.size(), CV_8U);
fillPoly(mask, polygons, Scalar(255,255,255));