Home | History | Annotate | Download | only in src

Lines Matching defs:hist_

372         Mat hist_;
427 hist_.create(cvCeil(imageSize_.height * idp) + 2, cvCeil(imageSize_.width * idp) + 2, CV_32SC1);
428 hist_.setTo(0);
430 const int rows = hist_.rows - 2;
431 const int cols = hist_.cols - 2;
458 ++hist_.at<int>(c.y + 1, c.x + 1);
469 const int histRows = hist_.rows - 2;
470 const int histCols = hist_.cols - 2;
474 const int* prevRow = hist_.ptr<int>(y);
475 const int* curRow = hist_.ptr<int>(y + 1);
476 const int* nextRow = hist_.ptr<int>(y + 2);