Commit 56d3cad3 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

enabled odd size in DFT_COMPLEX_OUTPUT test

parent 97156897
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment