From 76f6f7b72179c2811b81a31ebaebcb28a820018c Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 24 Sep 2015 22:18:58 -0400 Subject: [PATCH] Removed debug output images --- src/openalpr/segmentation/histogram.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/openalpr/segmentation/histogram.cpp b/src/openalpr/segmentation/histogram.cpp index afa009c..06ba928 100644 --- a/src/openalpr/segmentation/histogram.cpp +++ b/src/openalpr/segmentation/histogram.cpp @@ -82,7 +82,6 @@ namespace alpr } } - drawAndWait(inputImage); int histo_width = this->colHeights.size(); int histo_height = max_col_size + 10; @@ -100,7 +99,7 @@ namespace alpr histoImg.at(histo_height - columnCount, col) = 255; } - drawAndWait(histoImg); + } int Histogram::getLocalMinimum(int leftX, int rightX)