removed debug func. call
authorAlexey Spizhevoy <no@email>
Fri, 8 Jul 2011 14:00:54 +0000 (14:00 +0000)
committerAlexey Spizhevoy <no@email>
Fri, 8 Jul 2011 14:00:54 +0000 (14:00 +0000)
modules/gpu/src/cuda/imgproc.cu

index 7b762ab..bb86cc8 100644 (file)
@@ -252,8 +252,6 @@ namespace cv { namespace gpu { namespace imgproc
 \r
     extern "C" void meanShiftFiltering_gpu(const DevMem2D& src, DevMem2D dst, int sp, int sr, int maxIter, float eps)\r
     {\r
-        printFuncAttrib(meanshift_kernel);\r
-\r
         dim3 grid(1, 1, 1);\r
         dim3 threads(32, 8, 1);\r
         grid.x = divUp(src.cols, threads.x);\r