From c081efe3c67c128ec23976ed743bd4e4567bdbc0 Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Thu, 11 Apr 2024 14:37:32 +0300 Subject: [PATCH] imgproc: add 512mb tag for FindContours.accuracy test --- modules/imgproc/test/test_contours.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/imgproc/test/test_contours.cpp b/modules/imgproc/test/test_contours.cpp index 560a5b994f..8c6ddc7df7 100644 --- a/modules/imgproc/test/test_contours.cpp +++ b/modules/imgproc/test/test_contours.cpp @@ -408,7 +408,12 @@ _exit_: return code; } -TEST(Imgproc_FindContours, accuracy) { CV_FindContourTest test; test.safe_run(); } +TEST(Imgproc_FindContours, accuracy) +{ + applyTestTag(CV_TEST_TAG_MEMORY_512MB); + CV_FindContourTest test; + test.safe_run(); +} //rotate/flip a quadrant appropriately static void rot(int n, int *x, int *y, int rx, int ry)