HomeSort by relevance Sort by last modified time
    Searched defs:dst_tl (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);
125 dst_tl.x, dst_tl.y, 1/projector_.scale, rowsPerWI);
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)
144 xmap.at<float>(v - dst_tl.y, u - dst_tl.x) = x
177 Point dst_tl, dst_br; local
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)
84 xmap.at<float>(v - dst_tl.y, u - dst_tl.x) = x
143 Point dst_tl, dst_br; local
    [all...]

Completed in 50 milliseconds