mirror of
https://github.com/opencv/opencv.git
synced 2025-06-08 01:53:19 +08:00
Guard non-free usage in stitching as contrib can be built without it.
This commit is contained in:
parent
b08d67c4e1
commit
0016c25b58
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
namespace opencv_test { namespace {
|
namespace opencv_test { namespace {
|
||||||
|
|
||||||
#ifdef HAVE_OPENCV_XFEATURES2D
|
#if defined(HAVE_OPENCV_XFEATURES2D) && defined(OPENCV_ENABLE_NONFREE)
|
||||||
|
|
||||||
TEST(SurfFeaturesFinder, CanFindInROIs)
|
TEST(SurfFeaturesFinder, CanFindInROIs)
|
||||||
{
|
{
|
||||||
@ -74,7 +74,7 @@ TEST(SurfFeaturesFinder, CanFindInROIs)
|
|||||||
ASSERT_EQ(bad_count, 0);
|
ASSERT_EQ(bad_count, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAVE_OPENCV_XFEATURES2D
|
#endif // HAVE_OPENCV_XFEATURES2D && OPENCV_ENABLE_NONFREE
|
||||||
|
|
||||||
TEST(ParallelFeaturesFinder, IsSameWithSerial)
|
TEST(ParallelFeaturesFinder, IsSameWithSerial)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user