Home
last modified time | relevance | path

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

/external/opencv3/modules/stitching/src/
Dseam_finders.cpp222 unionSize_ = Size(unionBr_.x - unionTl_.x, unionBr_.y - unionTl_.y); in process()
224 mask1_ = Mat::zeros(unionSize_, CV_8U); in process()
225 mask2_ = Mat::zeros(unionSize_, CV_8U); in process()
235 contour1mask_ = Mat::zeros(unionSize_, CV_8U); in process()
236 contour2mask_ = Mat::zeros(unionSize_, CV_8U); in process()
238 for (int y = 0; y < unionSize_.height; ++y) in process()
240 for (int x = 0; x < unionSize_.width; ++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()
250 ((x == 0 || !mask2_(y, x-1)) || (x == unionSize_.width-1 || !mask2_(y, x+1)) || in process()
[all …]
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dseam_finders.hpp211 Size unionSize_; member in cv::detail::DpSeamFinder