Commit 3df41c1d authored by Andrey Kamaev's avatar Andrey Kamaev

Tegra version of cv::detail::

parent fbfc0cc9
......@@ -381,6 +381,10 @@ void MultiBandBlender::blend(Mat &dst, Mat &dst_mask)
void normalizeUsingWeightMap(const Mat& weight, Mat& src)
{
#ifdef HAVE_TEGRA_OPTIMIZATION
if(tegra::normalizeUsingWeightMap(weight, src))
return;
#endif
CV_Assert(src.type() == CV_16SC3);
if(weight.type() == CV_32FC1)
......
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