1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

enabled odd size in DFT_COMPLEX_OUTPUT test

This commit is contained in:
Vadim Pisarevsky
2012-10-11 12:27:10 +04:00
parent 97156897b2
commit 56d3cad326
+2 -2
View File
@@ -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;