Revert "Wrong files..."

This reverts commit 9fc8965a32.
This commit is contained in:
Kees-V
2015-05-13 16:12:24 +02:00
parent a107071c77
commit 80928d0471
2 changed files with 5 additions and 5 deletions

View File

@@ -59,8 +59,8 @@ namespace alpr
// Do a bilateral filter to clean the noise but keep edges sharp // Do a bilateral filter to clean the noise but keep edges sharp
Mat smoothed(inputImage.size(), inputImage.type()); Mat smoothed(inputImage.size(), inputImage.type());
// adaptiveBilateralFilter(inputImage, smoothed, Size(3,3), 45, 45); adaptiveBilateralFilter(inputImage, smoothed, Size(3,3), 45, 45);
bilateralFilter(inputImage, smoothed, 3, 45, 45);
int morph_elem = 2; int morph_elem = 2;
int morph_size = 2; int morph_size = 2;

View File

@@ -34,12 +34,12 @@ namespace alpr
this->config = config; this->config = config;
//this->descriptorMatcher = DescriptorMatcher::create( "BruteForce-HammingLUT" ); //this->descriptorMatcher = DescriptorMatcher::create( "BruteForce-HammingLUT" );
// this->descriptorMatcher = new BFMatcher(NORM_HAMMING, false); this->descriptorMatcher = new BFMatcher(NORM_HAMMING, false);
//this->descriptorMatcher = DescriptorMatcher::create( "FlannBased" ); //this->descriptorMatcher = DescriptorMatcher::create( "FlannBased" );
// this->detector = new FastFeatureDetector(10, true); this->detector = new FastFeatureDetector(10, true);
// this->extractor = new BRISK(10, 1, 0.9); this->extractor = new BRISK(10, 1, 0.9);
} }
FeatureMatcher::~FeatureMatcher() FeatureMatcher::~FeatureMatcher()