Home
last modified time | relevance | path

Searched refs:mask2_ (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/stitching/src/
Dseam_finders.cpp225 mask2_ = Mat::zeros(unionSize_, CV_8U); in process()
230 tmp = mask2_(Rect(tl2.x - unionTl_.x, tl2.y - unionTl_.y, mask2.cols, mask2.rows)); in process()
249 if (mask2_(y, x) && in process()
250 ((x == 0 || !mask2_(y, x-1)) || (x == unionSize_.width-1 || !mask2_(y, x+1)) || in process()
251 (y == 0 || !mask2_(y-1, x)) || (y == unionSize_.height-1 || !mask2_(y+1, x)))) in process()
281 if (mask1_(y, x) && mask2_(y, x)) in findComponents()
285 else if (mask2_(y, x)) in findComponents()
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dseam_finders.hpp212 Mat_<uchar> mask1_, mask2_; member in cv::detail::DpSeamFinder