Refactored histogram to support horizontal histograms

This commit is contained in:
Matt Hill
2015-09-20 21:04:55 -04:00
parent 7b59d3a238
commit 75c6784369
9 changed files with 465 additions and 294 deletions

View File

@@ -0,0 +1,28 @@
/*
* Copyright (c) 2015 OpenALPR Technology, Inc.
* Open source Automated License Plate Recognition [http://www.openalpr.com]
*
* This file is part of OpenALPR.
*
* OpenALPR is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License
* version 3 as published by the Free Software Foundation
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "histogramhorizontal.h"
namespace alpr
{
HistogramHorizontal::HistogramHorizontal(cv::Mat inputImage, cv::Mat mask) {
analyzeImage(inputImage, mask, false);
}
}