From d80fd565b4222b1a425b11e847a23f5482aca8a2 Mon Sep 17 00:00:00 2001 From: Benjamin Knecht Date: Tue, 4 Mar 2025 16:24:50 +0100 Subject: [PATCH] Attempt to fix Windows int type warning --- modules/objdetect/src/aruco/aruco_detector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/objdetect/src/aruco/aruco_detector.cpp b/modules/objdetect/src/aruco/aruco_detector.cpp index a128710f4d..0075d3e5a8 100644 --- a/modules/objdetect/src/aruco/aruco_detector.cpp +++ b/modules/objdetect/src/aruco/aruco_detector.cpp @@ -755,7 +755,7 @@ struct ArucoDetector::ArucoDetectorImpl { performCornerSubpixRefinement(grey, grey_pyramid, closest_pyr_image_idx, candidates, dictionary); } } else if (DictionaryMode::Multi == dictMode) { - map> candidatesPerDictionarySize; + map> candidatesPerDictionarySize; for (const Dictionary& dictionary : dictionaries) { candidatesPerDictionarySize.emplace(dictionary.markerSize, vector()); }