From afd2eefa783a405fe40acc7e5cc04e3669a50ca5 Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Sun, 1 Mar 2020 19:52:35 +0100 Subject: [PATCH] Shape_detection: Correcting comment in efficient_RANSAC_with_parameters example Just because 200 != 500. --- .../Shape_detection/efficient_RANSAC_with_parameters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shape_detection/examples/Shape_detection/efficient_RANSAC_with_parameters.cpp b/Shape_detection/examples/Shape_detection/efficient_RANSAC_with_parameters.cpp index b2425c2c514..e4d21ac5856 100644 --- a/Shape_detection/examples/Shape_detection/efficient_RANSAC_with_parameters.cpp +++ b/Shape_detection/examples/Shape_detection/efficient_RANSAC_with_parameters.cpp @@ -65,7 +65,7 @@ int main(int argc, char** argv) { // Set probability to miss the largest primitive at each iteration. parameters.probability = 0.05; - // Detect shapes with at least 500 points. + // Detect shapes with at least 200 points. parameters.min_points = 200; // Set maximum Euclidean distance between a point and a shape.