1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Partially backport C API removal in imgproc module to reduce conflicts with 5.x

This commit is contained in:
Alexander Smorkalov
2024-02-29 12:24:01 +03:00
parent 5e5a035c5b
commit fc98b31c3e
13 changed files with 78 additions and 78 deletions
+1 -1
View File
@@ -2471,7 +2471,7 @@ cvThreshHist( CvHistogram* hist, double thresh )
{
CvMat mat;
cvGetMat( hist->bins, &mat, 0, 1 );
cvThreshold( &mat, &mat, thresh, 0, CV_THRESH_TOZERO );
cvThreshold( &mat, &mat, thresh, 0, cv::THRESH_TOZERO );
}
else
{