1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

build: eliminate warnings

This commit is contained in:
Alexander Alekhin
2022-05-23 19:37:16 +00:00
parent d9bf522b27
commit 434c96e625
3 changed files with 16 additions and 20 deletions
+1 -1
View File
@@ -375,7 +375,7 @@ void cv::fisheye::undistortPoints( InputArray distorted, OutputArray undistorted
size_t n = distorted.total();
int sdepth = distorted.depth();
const bool isEps = criteria.type & TermCriteria::EPS;
const bool isEps = (criteria.type & TermCriteria::EPS) != 0;
/* Define max count for solver iterations */
int maxCount = std::numeric_limits<int>::max();