From 27a0ed0018fd50ffad68f57f31fdea31a565cdbc Mon Sep 17 00:00:00 2001 From: Bo Li Date: Thu, 18 Jul 2013 10:09:50 +0800 Subject: [PATCH] removed tab in five-point.cpp --- modules/calib3d/src/five-point.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/calib3d/src/five-point.cpp b/modules/calib3d/src/five-point.cpp index b93541b..3796627 100644 --- a/modules/calib3d/src/five-point.cpp +++ b/modules/calib3d/src/five-point.cpp @@ -537,12 +537,12 @@ int cv::recoverPose( InputArray E, InputArray _points1, InputArray _points2, Out // If _mask is given, then use it to filter outliers. if (!_mask.empty()) { - Mat mask = _mask.getMat(); + Mat mask = _mask.getMat(); CV_Assert(mask.size() == mask1.size()); - bitwise_and(mask, mask1, mask1); - bitwise_and(mask, mask2, mask2); - bitwise_and(mask, mask3, mask3); - bitwise_and(mask, mask4, mask4); + bitwise_and(mask, mask1, mask1); + bitwise_and(mask, mask2, mask2); + bitwise_and(mask, mask3, mask3); + bitwise_and(mask, mask4, mask4); } if (_mask.empty() && _mask.needed()) { -- 2.7.4