mirror of
https://github.com/opencv/opencv.git
synced 2025-06-12 04:12:52 +08:00
Attempt to fix Windows int type warning
This commit is contained in:
parent
1aa658fa75
commit
d80fd565b4
@ -755,7 +755,7 @@ struct ArucoDetector::ArucoDetectorImpl {
|
||||
performCornerSubpixRefinement(grey, grey_pyramid, closest_pyr_image_idx, candidates, dictionary);
|
||||
}
|
||||
} else if (DictionaryMode::Multi == dictMode) {
|
||||
map<size_t, vector<MarkerCandidateTree>> candidatesPerDictionarySize;
|
||||
map<int, vector<MarkerCandidateTree>> candidatesPerDictionarySize;
|
||||
for (const Dictionary& dictionary : dictionaries) {
|
||||
candidatesPerDictionarySize.emplace(dictionary.markerSize, vector<MarkerCandidateTree>());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user