Lines Matching full:dst_roi_
76 dst_roi_ = dst_roi;
89 int dx = tl.x - dst_roi_.x;
90 int dy = tl.y - dst_roi_.y;
141 int dx = tl.x - dst_roi_.x;
142 int dy = tl.y - dst_roi_.y;
287 Point tl_new(std::max(dst_roi_.x, tl.x - gap),
288 std::max(dst_roi_.y, tl.y - gap));
289 Point br_new(std::min(dst_roi_.br().x, tl.x + img.cols + gap),
290 std::min(dst_roi_.br().y, tl.y + img.rows + gap));
297 tl_new.x = dst_roi_.x + (((tl_new.x - dst_roi_.x) >> num_bands_) << num_bands_);
298 tl_new.y = dst_roi_.y + (((tl_new.y - dst_roi_.y) >> num_bands_) << num_bands_);
305 int dy = std::max(br_new.y - dst_roi_.br().y, 0);
306 int dx = std::max(br_new.x - dst_roi_.br().x, 0);
361 int y_tl = tl_new.y - dst_roi_.y;
362 int y_br = br_new.y - dst_roi_.y;
363 int x_tl = tl_new.x - dst_roi_.x;
364 int x_br = br_new.x - dst_roi_.x;