From: Alexey Spizhevoy Date: Fri, 8 Jul 2011 14:00:54 +0000 (+0000) Subject: removed debug func. call X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~6701 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=abe34e3b33b97b926448795fb1842264b0b7bcdc;p=platform%2Fupstream%2Fopencv.git removed debug func. call --- diff --git a/modules/gpu/src/cuda/imgproc.cu b/modules/gpu/src/cuda/imgproc.cu index 7b762ab..bb86cc8 100644 --- a/modules/gpu/src/cuda/imgproc.cu +++ b/modules/gpu/src/cuda/imgproc.cu @@ -252,8 +252,6 @@ namespace cv { namespace gpu { namespace imgproc extern "C" void meanShiftFiltering_gpu(const DevMem2D& src, DevMem2D dst, int sp, int sr, int maxIter, float eps) { - printFuncAttrib(meanshift_kernel); - dim3 grid(1, 1, 1); dim3 threads(32, 8, 1); grid.x = divUp(src.cols, threads.x);