Home
last modified time | relevance | path

Searched refs:border_mode (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dwarpers.hpp94 virtual Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
107 …ual void warpBackward(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
148 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
151 void warpBackward(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
196 int interp_mode, int border_mode, OutputArray dst);
197 …nt warp(InputArray src, InputArray K, InputArray R, InputArray T, int interp_mode, int border_mode,
230 …Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArr…
255 …Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArr…
426 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, in warp() argument
430 Point result = warp(d_src_, K, R, interp_mode, border_mode, d_dst_); in warp()
[all …]
Dwarpers_inl.hpp94 …onWarperBase<P>::warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, in warp() argument
101 remap(src, dst, xmap, ymap, interp_mode, border_mode); in warp()
108 …Base<P>::warpBackward(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, in warpBackward() argument
134 remap(src, dst, xmap, ymap, interp_mode, border_mode); in warpBackward()
/external/opencv3/modules/stitching/src/
Dwarpers_cuda.cpp181 int interp_mode, int border_mode, in warp() argument
184 return warp(src, K, R, Mat::zeros(3, 1, CV_32F), interp_mode, border_mode, dst); in warp()
189 int interp_mode, int border_mode, in warp() argument
198 (void)border_mode; in warp()
205 cuda::remap(src, dst, d_xmap_, d_ymap_, interp_mode, border_mode); in warp()
234 int interp_mode, int border_mode, in warp() argument
242 (void)border_mode; in warp()
249 cuda::remap(src, dst, d_xmap_, d_ymap_, interp_mode, border_mode); in warp()
280 int interp_mode, int border_mode, in warp() argument
288 (void)border_mode; in warp()
[all …]
Dwarpers.cpp153 …r::warp(InputArray src, InputArray K, InputArray R, InputArray T, int interp_mode, int border_mode, in warp() argument
160 remap(src, dst, uxmap, uymap, interp_mode, border_mode); in warp()
166 int interp_mode, int border_mode, OutputArray dst) in warp() argument
170 return warp(src, K, R, T, interp_mode, border_mode, dst); in warp()
346 …:warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray ds… in warp() argument
352 remap(src, dst, uxmap, uymap, interp_mode, border_mode); in warp()
395 …:warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray ds… in warp() argument
401 remap(src, dst, uxmap, uymap, interp_mode, border_mode); in warp()
/external/opencv3/modules/stitching/perf/opencl/
Dperf_warpers.cpp91 Point warp(InputArray src, int interp_mode, int border_mode, OutputArray dst) const in warp() argument
93 return warper->warp(src, K, R, interp_mode, border_mode, dst); in warp()
/external/opencv/cv/src/
Dcvfilter.cpp154 border_mode = _border_mode; in init()
162 if( border_mode != IPL_BORDER_CONSTANT && border_mode != IPL_BORDER_REPLICATE && in init()
163 border_mode != IPL_BORDER_REFLECT && border_mode != IPL_BORDER_REFLECT_101 ) in init()
192 if( border_mode == IPL_BORDER_CONSTANT ) in init()
201 int mode = border_mode; in start_process()
304 if( border_mode == IPL_BORDER_CONSTANT || in make_y_border()
305 border_mode == IPL_BORDER_REPLICATE ) in make_y_border()
307 uchar* row1 = border_mode == IPL_BORDER_CONSTANT ? const_row : rows[max_ky]; in make_y_border()
312 row1 = border_mode == IPL_BORDER_CONSTANT ? const_row : rows[row_count-1]; in make_y_border()
318 int j, dj = 1, shift = border_mode == IPL_BORDER_REFLECT_101; in make_y_border()
[all …]
Dcvmorph.cpp280 if( depth == CV_32F && border_mode == IPL_BORDER_CONSTANT ) in init()
342 if( border_mode != IPL_BORDER_CONSTANT ) in fill_cyclic_buffer()
/external/opencv/cv/include/
Dcv.hpp152 int max_ky, border_mode; member in CvBaseImageFilter