fix cuda::normalize (dtype < 0) case

This commit is contained in:
Vladislav Vinogradov
2015-10-02 11:41:01 +03:00
parent d69b7c332a
commit 1bf811c3f1
2 changed files with 6 additions and 2 deletions

View File

@@ -249,6 +249,10 @@ void cv::cuda::normalize(InputArray _src, OutputArray _dst, double a, double b,
CV_Assert( src.channels() == 1 );
CV_Assert( mask.empty() || (mask.size() == src.size() && mask.type() == CV_8U) );
if (dtype < 0)
{
dtype = _dst.fixedType() ? _dst.type() : src.type();
}
dtype = CV_MAT_DEPTH(dtype);
const int src_depth = src.depth();