Commit 466345e9 authored by Alexander Shishkov's avatar Alexander Shishkov

fixed stitching compilation

parent 49207ce1
...@@ -287,7 +287,7 @@ void MultiBandBlender::feed(const Mat &img, const Mat &mask, Point tl) ...@@ -287,7 +287,7 @@ void MultiBandBlender::feed(const Mat &img, const Mat &mask, Point tl)
} }
else// weight_type_ == CV_16S else// weight_type_ == CV_16S
{ {
mask.convetTo(weight_map, CV_16S); mask.convertTo(weight_map, CV_16S);
add(weight_map, 1, weight_map, mask != 0); add(weight_map, 1, weight_map, mask != 0);
} }
......
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