From: Vadim Pisarevsky Date: Thu, 21 Oct 2010 13:20:10 +0000 (+0000) Subject: change at => at, since the histogram is cv_32f, not cv_64f X-Git-Tag: accepted/2.0/20130307.220821~4343 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=948d96645c6f338786d4f4aca1dd30d812377056;p=profile%2Fivi%2Fopencv.git change at => at, since the histogram is cv_32f, not cv_64f --- diff --git a/modules/contrib/src/quadsubpix.cpp b/modules/contrib/src/quadsubpix.cpp index 73c846a..46f6cde 100644 --- a/modules/contrib/src/quadsubpix.cpp +++ b/modules/contrib/src/quadsubpix.cpp @@ -62,7 +62,7 @@ void drawCircles(Mat& img, const vector& corners, const vector& } } -int histQuantile(const MatND& hist, float quantile) +int histQuantile(const Mat& hist, float quantile) { if(hist.dims > 1) return -1; // works for 1D histograms only @@ -71,7 +71,7 @@ int histQuantile(const MatND& hist, float quantile) float quantile_sum = total_sum*quantile; for(int j = 0; j < hist.size[0]; j++) { - cur_sum += (float)hist.at(j); + cur_sum += (float)hist.at(j); if(cur_sum > quantile_sum) { return j; @@ -173,7 +173,7 @@ void findCorner(const vector& contour, Point2f point, Point2f& corner) return; } -int segment_hist_max(const MatND& hist, int& low_thresh, int& high_thresh) +int segment_hist_max(const Mat& hist, int& low_thresh, int& high_thresh) { Mat bw; //const double max_bell_width = 20; // we expect two bells with width bounded above @@ -194,7 +194,7 @@ int segment_hist_max(const MatND& hist, int& low_thresh, int& high_thresh) const double out_of_bells_fraction = 0.1; for(int x = 0; x < hist.size[0]; x++) { - quantile_sum += hist.at(x); + quantile_sum += hist.at(x); if(quantile_sum < 0.2*total_sum) continue; if(quantile_sum - low_sum > out_of_bells_fraction*total_sum) @@ -228,7 +228,7 @@ bool find4QuadCornerSubpix(const Mat& img, std::vector& corners, Size r const int nbins = 256; float ranges[] = {0, 256}; const float* _ranges = ranges; - MatND hist; + Mat hist; #if defined(_SUBPIX_VERBOSE) vector radius;