OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unionSize_
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/stitching/src/
seam_finders.cpp
222
unionSize_
= Size(unionBr_.x - unionTl_.x, unionBr_.y - unionTl_.y);
224
mask1_ = Mat::zeros(
unionSize_
, CV_8U);
225
mask2_ = Mat::zeros(
unionSize_
, CV_8U);
235
contour1mask_ = Mat::zeros(
unionSize_
, CV_8U);
236
contour2mask_ = Mat::zeros(
unionSize_
, CV_8U);
238
for (int y = 0; y <
unionSize_
.height; ++y)
240
for (int x = 0; x <
unionSize_
.width; ++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))))
250
((x == 0 || !mask2_(y, x-1)) || (x ==
unionSize_
.width-1 || !mask2_(y, x+1)) |
[
all
...]
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
seam_finders.hpp
211
Size
unionSize_
;
Completed in 241 milliseconds