From e7bf07786dff7535e6ba2e9c8ecd297de1ae6051 Mon Sep 17 00:00:00 2001 From: Vincent Rabaud Date: Wed, 29 May 2024 16:41:32 +0200 Subject: [PATCH] Have the findContours_legacy overload call findContours_legacy. --- modules/imgproc/src/contours.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/src/contours.cpp b/modules/imgproc/src/contours.cpp index d88c6cbede08..0577ca16c1a0 100644 --- a/modules/imgproc/src/contours.cpp +++ b/modules/imgproc/src/contours.cpp @@ -1884,7 +1884,7 @@ void cv::findContours_legacy( InputArray _image, OutputArrayOfArrays _contours, { CV_INSTRUMENT_REGION(); - findContours(_image, _contours, noArray(), mode, method, offset); + findContours_legacy(_image, _contours, noArray(), mode, method, offset); } /* End of file. */