From 4eca555f95a42e7742a3ca9c56ca43c5fc9220a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 24 Jan 2022 15:30:09 +0100 Subject: [PATCH] increase the range of possible size of region --- .../test_region_growing_on_point_set_3_with_sorting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shape_detection/test/Shape_detection/test_region_growing_on_point_set_3_with_sorting.cpp b/Shape_detection/test/Shape_detection/test_region_growing_on_point_set_3_with_sorting.cpp index dc5365688e4..6d5d8890d51 100644 --- a/Shape_detection/test/Shape_detection/test_region_growing_on_point_set_3_with_sorting.cpp +++ b/Shape_detection/test/Shape_detection/test_region_growing_on_point_set_3_with_sorting.cpp @@ -155,7 +155,7 @@ int main(int argc, char *argv[]) { }, [](const auto& region) -> bool { std::cout << "- num regions spheres: " << region.size() << std::endl; - return (region.size() >= 57 && region.size() <= 77); + return (region.size() >= 30 && region.size() <= 77); } );