/external/opencv3/modules/videostab/src/ |
inpainting.cpp | 354 if (mask1_.size() != mask.size()) 356 mask1_.create(mask.size()); 357 mask1_.setTo(255); 392 mask1_, transformedMask1_, motion1to0(Rect(0,0,3,2)), mask1_.size(), 395 warpPerspective(mask1_, transformedMask1_, motion1to0, mask1_.size(), INTER_NEAREST); 484 Mat_<uchar> mask0_(mask0), mask1_(mask1); 499 if (x1 >= 0 && x1 < mask1_.cols && y1 >= 0 && y1 < mask1_.rows && mask1_(y1,x1) [all...] |
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
inpainting.hpp | 169 Mat_<uchar> mask1_, transformedMask1_; member in class:cv::videostab::MotionInpainter
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
seam_finders.hpp | 212 Mat_<uchar> mask1_, mask2_; member in class:cv::detail::DpSeamFinder
|
/external/opencv3/modules/stitching/src/ |
seam_finders.cpp | 224 mask1_ = Mat::zeros(unionSize_, CV_8U); 227 Mat tmp = mask1_(Rect(tl1.x - unionTl_.x, tl1.y - unionTl_.y, mask1.cols, mask1.rows)); 242 if (mask1_(y, x) && 243 ((x == 0 || !mask1_(y, x-1)) || (x == unionSize_.width-1 || !mask1_(y, x+1)) || 244 (y == 0 || !mask1_(y-1, x)) || (y == unionSize_.height-1 || !mask1_(y+1, x)))) 281 if (mask1_(y, x) && mask2_(y, x)) 283 else if (mask1_(y, x)) [all...] |