Added thresholds to some sanity checks
This commit is contained in:
parent
e1afb1409f
commit
932204d197
@ -70,7 +70,7 @@ PERF_TEST_P( Image_KernelSize, GaborFilter2d,
|
|||||||
filter2D(sourceImage, filteredImage, CV_32F, gaborKernel);
|
filter2D(sourceImage, filteredImage, CV_32F, gaborKernel);
|
||||||
}
|
}
|
||||||
|
|
||||||
SANITY_CHECK(filteredImage);
|
SANITY_CHECK(filteredImage, 1e-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ PERF_TEST_P(surf, detect, testing::Values(SURF_IMAGES))
|
|||||||
|
|
||||||
TEST_CYCLE() detector(frame, mask, points);
|
TEST_CYCLE() detector(frame, mask, points);
|
||||||
|
|
||||||
SANITY_CHECK_KEYPOINTS(points);
|
SANITY_CHECK_KEYPOINTS(points, 1e-3);
|
||||||
}
|
}
|
||||||
|
|
||||||
PERF_TEST_P(surf, extract, testing::Values(SURF_IMAGES))
|
PERF_TEST_P(surf, extract, testing::Values(SURF_IMAGES))
|
||||||
@ -67,6 +67,6 @@ PERF_TEST_P(surf, full, testing::Values(SURF_IMAGES))
|
|||||||
|
|
||||||
TEST_CYCLE() detector(frame, mask, points, descriptors, false);
|
TEST_CYCLE() detector(frame, mask, points, descriptors, false);
|
||||||
|
|
||||||
SANITY_CHECK_KEYPOINTS(points);
|
SANITY_CHECK_KEYPOINTS(points, 1e-3);
|
||||||
SANITY_CHECK(descriptors, 1e-4);
|
SANITY_CHECK(descriptors, 1e-4);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user