Commit 8fe4e98b authored by Elena Gvozdeva's avatar Elena Gvozdeva

Fixed trailing whitespace

parent b2d8b491
......@@ -1708,10 +1708,8 @@ void cv::medianBlur( InputArray _src0, OutputArray _dst, int ksize )
}
bool use_opencl = ocl::useOpenCL() && _dst.isUMat();
// if ( use_opencl && ocl_medianFilter(_src0,_dst, ksize))
if (use_opencl)
{ CV_Assert (ocl_medianFilter(_src0,_dst,ksize));
return;}
if ( use_opencl && ocl_medianFilter(_src0,_dst, ksize))
return;
Mat src0 = _src0.getMat();
_dst.create( src0.size(), src0.type() );
......
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