From 466345e93652dad7550e44c7bb6e86913b252808 Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Thu, 8 Mar 2012 08:10:04 +0000 Subject: [PATCH] fixed stitching compilation --- modules/stitching/src/blenders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/stitching/src/blenders.cpp b/modules/stitching/src/blenders.cpp index 4f0a4b1..ed2f911 100644 --- a/modules/stitching/src/blenders.cpp +++ b/modules/stitching/src/blenders.cpp @@ -287,7 +287,7 @@ void MultiBandBlender::feed(const Mat &img, const Mat &mask, Point tl) } 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); } -- 2.7.4