From 56d3cad326e3df8e87280f3b56bdd2974923edbe Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Thu, 11 Oct 2012 12:27:10 +0400 Subject: [PATCH] enabled odd size in DFT_COMPLEX_OUTPUT test --- modules/core/test/test_dxt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/test/test_dxt.cpp b/modules/core/test/test_dxt.cpp index ff3aa7c156..441ce27bad 100644 --- a/modules/core/test/test_dxt.cpp +++ b/modules/core/test/test_dxt.cpp @@ -838,8 +838,8 @@ protected: RNG& rng = theRNG(); for( int i = 0; i < 10; i++ ) { - int m = rng.uniform(2, 11) & -2; - int n = rng.uniform(2, 11) & -2; + int m = rng.uniform(2, 11); + int n = rng.uniform(2, 11); int depth = rng.uniform(0, 2) + CV_32F; Mat src8u(m, n, depth), src(m, n, depth), dst(m, n, CV_MAKETYPE(depth, 2)); Mat z = Mat::zeros(m, n, depth), dstz;