Home
last modified time | relevance | path

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

/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