HomeSort by relevance Sort by last modified time
    Searched refs:border_mode (Results 1 - 8 of 8) sorted by null

  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers.hpp 90 @param border_mode Border extrapolation mode
94 virtual Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
103 @param border_mode Border extrapolation mode
107 virtual 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 virtual Point 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, OutputArray dst);
255 Point warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray dst)
    [all...]
warpers_inl.hpp 94 Point RotationWarperBase<P>::warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
101 remap(src, dst, xmap, ymap, interp_mode, border_mode);
108 void RotationWarperBase<P>::warpBackward(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode,
134 remap(src, dst, xmap, ymap, interp_mode, border_mode);
  /external/opencv3/modules/stitching/src/
warpers_cuda.cpp 181 int interp_mode, int border_mode,
184 return warp(src, K, R, Mat::zeros(3, 1, CV_32F), interp_mode, border_mode, dst);
189 int interp_mode, int border_mode,
198 (void)border_mode;
205 cuda::remap(src, dst, d_xmap_, d_ymap_, interp_mode, border_mode);
234 int interp_mode, int border_mode,
242 (void)border_mode;
249 cuda::remap(src, dst, d_xmap_, d_ymap_, interp_mode, border_mode);
280 int interp_mode, int border_mode,
288 (void)border_mode;
    [all...]
warpers.cpp 153 Point PlaneWarper::warp(InputArray src, InputArray K, InputArray R, InputArray T, int interp_mode, int border_mode,
160 remap(src, dst, uxmap, uymap, interp_mode, border_mode);
166 int interp_mode, int border_mode, OutputArray dst)
170 return warp(src, K, R, T, interp_mode, border_mode, dst);
346 Point SphericalWarper::warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray dst)
352 remap(src, dst, uxmap, uymap, interp_mode, border_mode);
395 Point CylindricalWarper::warp(InputArray src, InputArray K, InputArray R, int interp_mode, int border_mode, OutputArray dst)
401 remap(src, dst, uxmap, uymap, interp_mode, border_mode);
  /external/opencv3/modules/stitching/perf/opencl/
perf_warpers.cpp 91 Point warp(InputArray src, int interp_mode, int border_mode, OutputArray dst) const
93 return warper->warp(src, K, R, interp_mode, border_mode, dst);
  /external/opencv/cv/src/
cvfilter.cpp 154 border_mode = _border_mode;
162 if( border_mode != IPL_BORDER_CONSTANT && border_mode != IPL_BORDER_REPLICATE &&
163 border_mode != IPL_BORDER_REFLECT && border_mode != IPL_BORDER_REFLECT_101 )
192 if( border_mode == IPL_BORDER_CONSTANT )
201 int mode = border_mode;
304 if( border_mode == IPL_BORDER_CONSTANT ||
305 border_mode == IPL_BORDER_REPLICATE )
307 uchar* row1 = border_mode == IPL_BORDER_CONSTANT ? const_row : rows[max_ky]
    [all...]
cvmorph.cpp 280 if( depth == CV_32F && border_mode == IPL_BORDER_CONSTANT )
342 if( border_mode != IPL_BORDER_CONSTANT )
    [all...]
  /external/opencv/cv/include/
cv.hpp 152 int max_ky, border_mode; member in class:CvBaseImageFilter

Completed in 96 milliseconds