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

  /external/opencv3/modules/stitching/src/
warpers.cpp 106 Point dst_tl, dst_br; local
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; local
178 detectResultRoi(src_size, dst_tl, dst_br);
321 Point dst_tl, dst_br; local
369 Point dst_tl, dst_br; local
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers_inl.hpp 70 Point dst_tl, dst_br; local
71 detectResultRoi(src_size, dst_tl, dst_br);
73 _xmap.create(dst_br.y - dst_tl.y + 1, dst_br.x - dst_tl.x + 1, CV_32F);
74 _ymap.create(dst_br.y - dst_tl.y + 1, dst_br.x - dst_tl.x + 1, CV_32F);
79 for (int v = dst_tl.y; v <= dst_br.y; ++v)
81 for (int u = dst_tl.x; u <= dst_br.x; ++u)
89 return Rect(dst_tl, dst_br);
143 Point dst_tl, dst_br; local
    [all...]

Completed in 175 milliseconds