Commit c560a78c authored by Ilya Lavrenov's avatar Ilya Lavrenov

stable cvtColor

parent 45593030
...@@ -192,7 +192,8 @@ void CvtColorLoop(const Mat& src, Mat& dst, const Cvt& cvt) ...@@ -192,7 +192,8 @@ void CvtColorLoop(const Mat& src, Mat& dst, const Cvt& cvt)
{ {
Range range(0, src.rows); Range range(0, src.rows);
CvtColorLoop_Invoker<Cvt> invoker(src, dst, cvt); 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 ///////////////// ////////////////// Various 3/4-channel to 3/4-channel RGB transformations /////////////////
......
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