From 5023afffc714a2a7581ca87c861c557e184d720e Mon Sep 17 00:00:00 2001 From: Kirill Kornyakov Date: Wed, 26 Dec 2012 10:33:02 +0400 Subject: [PATCH] Removed hack from perf test on HoughLines, since I hope it is fixed by pr263 --- modules/imgproc/perf/perf_houghLines.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/modules/imgproc/perf/perf_houghLines.cpp b/modules/imgproc/perf/perf_houghLines.cpp index c6cc6e439a..4e6b5b3fba 100644 --- a/modules/imgproc/perf/perf_houghLines.cpp +++ b/modules/imgproc/perf/perf_houghLines.cpp @@ -36,18 +36,5 @@ PERF_TEST_P(Image_RhoStep_ThetaStep_Threshold, HoughLines, TEST_CYCLE() HoughLines(image, lines, rhoStep, thetaStep, threshold); -#ifdef WIN32 - //FIXME: ugly fix to make sanity check pass on Win32, must be investigated, issue #2617 - if (lines.cols == 2015) - { - lines = lines(Rect(0, 0, lines.cols - 1, lines.rows)); - SANITY_CHECK(lines, 800.0); - } - else - { - SANITY_CHECK(lines); - } -#else SANITY_CHECK(lines); -#endif }