HomeSort by relevance Sort by last modified time
    Searched refs:histImg (Results 1 - 2 of 2) sorted by null

  /external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
calcBackProject_Demo1.cpp 79 Mat histImg = Mat::zeros( w, h, CV_8UC3 );
82 { rectangle( histImg, Point( i*bin_w, h ), Point( (i+1)*bin_w, h - cvRound( hist.at<float>(i)*h/255.0 ) ), Scalar( 0, 0, 255 ), -1 ); }
84 imshow( "Histogram", histImg );
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 619 int histImg[256] = {0};
626 histImg[buffImg[i]] ++;
632 if (histImg[i] > iHistMin)
638 if (histImg[i] > iHistMin)
651 black += histImg[i];
653 white += histImg[i];
    [all...]

Completed in 394 milliseconds