Added edgefinder to compile

This commit is contained in:
Matt Hill
2014-10-25 16:17:08 -04:00
parent bab9ecdf54
commit db232f5ec9
3 changed files with 4 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ set(lpr_source_files
binarize_wolf.cpp
segmentation/charactersegmenter.cpp
segmentation/verticalhistogram.cpp
edges/edgefinder.cpp
edges/platecorners.cpp
edges/platelines.cpp
edges/textlinecollection.cpp

View File

@@ -28,7 +28,6 @@ EdgeFinder::EdgeFinder(PipelineData* pipeline_data) {
// First re-crop the area from the original picture knowing the text position
pipeline_data.
}

View File

@@ -20,6 +20,9 @@
#ifndef OPENALPR_EDGEFINDER_H
#define OPENALPR_EDGEFINDER_H
#include "opencv2/imgproc/imgproc.hpp"
#include "pipeline_data.h"
class EdgeFinder {
public:
EdgeFinder(PipelineData* pipeline_data);