Searched refs:_src_type (Results 1 - 5 of 5) sorted by relevance

/external/opencv/cv/include/
H A Dcv.hpp65 CvBaseImageFilter( int _max_width, int _src_type, int _dst_type,
73 input image has data type _src_type, the output will have _dst_type.
82 virtual void init( int _max_width, int _src_type, int _dst_type,
168 CvSepFilter( int _max_width, int _src_type, int _dst_type,
175 virtual void init( int _max_width, int _src_type, int _dst_type,
180 virtual void init_deriv( int _max_width, int _src_type, int _dst_type,
182 virtual void init_gaussian( int _max_width, int _src_type, int _dst_type,
186 virtual void init( int _max_width, int _src_type, int _dst_type,
216 CvLinearFilter( int _max_width, int _src_type, int _dst_type,
223 virtual void init( int _max_width, int _src_type, in
[all...]
/external/opencv/cv/src/
H A Dcvderiv.cpp367 CvLaplaceFilter::CvLaplaceFilter( int _max_width, int _src_type, int _dst_type, bool _normalized, argument
371 init( _max_width, _src_type, _dst_type, _normalized, _ksize, _border_mode, _border_value );
398 void CvLaplaceFilter::init( int _max_width, int _src_type, int _dst_type, bool _normalized,
407 int src_depth = CV_MAT_DEPTH(_src_type), dst_depth = CV_MAT_DEPTH(_dst_type);
415 CV_MAT_CN(_src_type) != CV_MAT_CN(_dst_type) )
427 CvSepFilter::init( _max_width, _src_type, _dst_type, kx, ky,
465 void CvLaplaceFilter::init( int _max_width, int _src_type, int _dst_type,
470 CvSepFilter::init( _max_width, _src_type, _dst_type, _is_separable,
475 void CvLaplaceFilter::init( int _max_width, int _src_type, int _dst_type,
480 CvSepFilter::init( _max_width, _src_type, _dst_typ
[all...]
H A Dcvfilter.cpp68 CvBaseImageFilter::CvBaseImageFilter( int _max_width, int _src_type, int _dst_type, argument
79 init( _max_width, _src_type, _dst_type, _is_separable,
124 void CvBaseImageFilter::init( int _max_width, int _src_type, int _dst_type, argument
135 if( !(buffer && _max_width <= max_width && _src_type == src_type &&
143 src_type = CV_MAT_TYPE(_src_type);
640 CvSepFilter::CvSepFilter( int _max_width, int _src_type, int _dst_type,
647 init( _max_width, _src_type, _dst_type, _kx, _ky, _anchor, _border_mode, _border_value );
668 void CvSepFilter::init( int _max_width, int _src_type, int _dst_type,
692 if( CV_MAT_CN(_src_type) != CV_MAT_CN(_dst_type) )
700 CV_CALL( CvBaseImageFilter::init( _max_width, _src_type, _dst_typ
[all...]
H A Dcvsmooth.cpp88 CvBoxFilter::CvBoxFilter( int _max_width, int _src_type, int _dst_type, argument
97 init( _max_width, _src_type, _dst_type, _normalized,
108 void CvBoxFilter::init( int _max_width, int _src_type, int _dst_type, argument
120 if( (normalized && CV_MAT_TYPE(_src_type) != CV_MAT_TYPE(_dst_type)) ||
121 (!normalized && CV_MAT_CN(_src_type) != CV_MAT_CN(_dst_type)))
126 min_depth = CV_MAT_DEPTH(_src_type) == CV_8U ? CV_32S : CV_64F;
128 CvBaseImageFilter::init( _max_width, _src_type, _dst_type, 1, _ksize,
H A Dcvmorph.cpp292 void CvMorphology::init( int _max_width, int _src_type, int _dst_type, argument
297 CvBaseImageFilter::init( _max_width, _src_type, _dst_type, _is_separable,

Completed in 203 milliseconds