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

Remove compiler warnings

This commit is contained in:
Namgoo Lee
2020-08-21 23:52:30 +09:00
parent f617f18e46
commit a7ffcaab28
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -242,7 +242,7 @@ TEST(EqualizeHistIssue, Issue18035)
imgPaths.push_back(std::string(cvtest::TS::ptr()->get_data_path()) + "../cv/shared/graffiti.png");
imgPaths.push_back(std::string(cvtest::TS::ptr()->get_data_path()) + "../cv/shared/lena.png");
for (int i = 0; i < imgPaths.size(); ++i)
for (size_t i = 0; i < imgPaths.size(); ++i)
{
std::string imgPath = imgPaths[i];
cv::Mat src = cv::imread(imgPath, cv::IMREAD_GRAYSCALE);