fixer error with incorrect condition

pull/1326/head
Ilya Lavrenov 12 years ago
parent ec461a2ff0
commit 6c4ad9b597
  1. 2
      modules/ocl/src/arithm.cpp

@ -2336,7 +2336,7 @@ void cv::ocl::pow(const oclMat &x, double p, oclMat &y)
return; return;
} }
CV_Assert((x.type() == y.type() && x.size() == y.size() && x.depth() == CV_32F) || x.depth() == CV_64F); CV_Assert(x.depth() == CV_32F || x.depth() == CV_64F);
y.create(x.size(), x.type()); y.create(x.size(), x.type());
string kernelName = "arithm_pow"; string kernelName = "arithm_pow";

Loading…
Cancel
Save