fixer error with incorrect condition

This commit is contained in:
Ilya Lavrenov 2013-08-22 17:38:55 +04:00
parent ec461a2ff0
commit 6c4ad9b597

View File

@ -2336,7 +2336,7 @@ void cv::ocl::pow(const oclMat &x, double p, oclMat &y)
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());
string kernelName = "arithm_pow";