Home
last modified time | relevance | path

Searched refs:mask1_ (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/videostab/src/
Dinpainting.cpp354 if (mask1_.size() != mask.size()) in inpaint()
356 mask1_.create(mask.size()); in inpaint()
357 mask1_.setTo(255); in inpaint()
392 mask1_, transformedMask1_, motion1to0(Rect(0,0,3,2)), mask1_.size(), in inpaint()
395 warpPerspective(mask1_, transformedMask1_, motion1to0, mask1_.size(), INTER_NEAREST); in inpaint()
484 Mat_<uchar> mask0_(mask0), mask1_(mask1); in calcFlowMask() local
499 if (x1 >= 0 && x1 < mask1_.cols && y1 >= 0 && y1 < mask1_.rows && mask1_(y1,x1)) in calcFlowMask()
519 Mat_<uchar> flowMask_(flowMask), mask1_(mask1), mask0_(mask0); in completeFrameAccordingToFlow() local
531 if (x1 >= 0 && x1 < frame1.cols && y1 >= 0 && y1 < frame1.rows && mask1_(y1,x1) in completeFrameAccordingToFlow()
/external/opencv3/modules/videostab/include/opencv2/videostab/
Dinpainting.hpp169 Mat_<uchar> mask1_, transformedMask1_; member in cv::videostab::MotionInpainter
/external/opencv3/modules/stitching/src/
Dseam_finders.cpp224 mask1_ = Mat::zeros(unionSize_, CV_8U); in process()
227 Mat tmp = mask1_(Rect(tl1.x - unionTl_.x, tl1.y - unionTl_.y, mask1.cols, mask1.rows)); in process()
242 if (mask1_(y, x) && in process()
243 ((x == 0 || !mask1_(y, x-1)) || (x == unionSize_.width-1 || !mask1_(y, x+1)) || in process()
244 (y == 0 || !mask1_(y-1, x)) || (y == unionSize_.height-1 || !mask1_(y+1, x)))) in process()
281 if (mask1_(y, x) && mask2_(y, x)) in findComponents()
283 else if (mask1_(y, x)) in findComponents()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dseam_finders.hpp212 Mat_<uchar> mask1_, mask2_; member in cv::detail::DpSeamFinder