stable cvtColor
authorIlya Lavrenov <ilya.lavrenov@itseez.com>
Mon, 1 Oct 2012 14:52:27 +0000 (18:52 +0400)
committerIlya Lavrenov <ilya.lavrenov@itseez.com>
Mon, 1 Oct 2012 14:52:27 +0000 (18:52 +0400)
modules/imgproc/src/color.cpp

index 25cdbea..6c06a89 100644 (file)
@@ -192,7 +192,8 @@ void CvtColorLoop(const Mat& src, Mat& dst, const Cvt& cvt)
 {
     Range range(0, src.rows);
     CvtColorLoop_Invoker<Cvt> invoker(src, dst, cvt);
-    parallel_for_(range, invoker);
+    invoker(range);
+//     parallel_for_(range, invoker);
 }
 
 ////////////////// Various 3/4-channel to 3/4-channel RGB transformations /////////////////