HomeSort by relevance Sort by last modified time
    Searched refs:mask2_ (Results 1 - 2 of 2) sorted by null

  /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 225 mask2_ = Mat::zeros(unionSize_, CV_8U);
230 tmp = mask2_(Rect(tl2.x - unionTl_.x, tl2.y - unionTl_.y, mask2.cols, mask2.rows));
249 if (mask2_(y, x) &&
250 ((x == 0 || !mask2_(y, x-1)) || (x == unionSize_.width-1 || !mask2_(y, x+1)) ||
251 (y == 0 || !mask2_(y-1, x)) || (y == unionSize_.height-1 || !mask2_(y+1, x))))
281 if (mask1_(y, x) && mask2_(y, x))
285 else if (mask2_(y, x))
    [all...]

Completed in 64 milliseconds