Lines Matching defs:dst_br
106 Point dst_tl, dst_br;
107 detectResultRoi(src_size, dst_tl, dst_br);
109 Size dsize(dst_br.x - dst_tl.x + 1, dst_br.y - dst_tl.y + 1);
131 return Rect(dst_tl, dst_br);
139 for (int v = dst_tl.y; v <= dst_br.y; ++v)
141 for (int u = dst_tl.x; u <= dst_br.x; ++u)
149 return Rect(dst_tl, dst_br);
177 Point dst_tl, dst_br;
178 detectResultRoi(src_size, dst_tl, dst_br);
180 return Rect(dst_tl, Point(dst_br.x + 1, dst_br.y + 1));
191 void PlaneWarper::detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br)
218 dst_br.x = static_cast<int>(br_uf);
219 dst_br.y = static_cast<int>(br_vf);
223 void SphericalWarper::detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br)
225 detectResultRoiByBorder(src_size, dst_tl, dst_br);
229 float br_uf = static_cast<float>(dst_br.x);
230 float br_vf = static_cast<float>(dst_br.y);
262 dst_br.x = static_cast<int>(br_uf);
263 dst_br.y = static_cast<int>(br_vf);
266 void SphericalPortraitWarper::detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br)
268 detectResultRoiByBorder(src_size, dst_tl, dst_br);
272 float br_uf = static_cast<float>(dst_br.x);
273 float br_vf = static_cast<float>(dst_br.y);
305 dst_br.x = static_cast<int>(br_uf);
306 dst_br.y = static_cast<int>(br_vf);
321 Point dst_tl, dst_br;
322 detectResultRoi(src_size, dst_tl, dst_br);
324 Size dsize(dst_br.x - dst_tl.x + 1, dst_br.y - dst_tl.y + 1);
338 return Rect(dst_tl, dst_br);
369 Point dst_tl, dst_br;
370 detectResultRoi(src_size, dst_tl, dst_br);
372 Size dsize(dst_br.x - dst_tl.x + 1, dst_br.y - dst_tl.y + 1);
387 return Rect(dst_tl, dst_br);