1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Merge branch 4.x

This commit is contained in:
Alexander Smorkalov
2024-08-27 18:31:36 +03:00
108 changed files with 1241 additions and 646 deletions
+4 -2
View File
@@ -67,9 +67,11 @@ TEST(SurfFeaturesFinder, CanFindInROIs)
int tl_rect_count = 0, br_rect_count = 0, bad_count = 0;
for (const auto &keypoint : roi_features.keypoints)
{
if (rois[0].contains(keypoint.pt))
// Workaround for https://github.com/opencv/opencv/issues/26016
// To keep its behaviour, keypoint.pt casts to Point_<int>.
if (rois[0].contains(Point_<int>(keypoint.pt)))
tl_rect_count++;
else if (rois[1].contains(keypoint.pt))
else if (rois[1].contains(Point_<int>(keypoint.pt)))
br_rect_count++;
else
bad_count++;