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

  /external/opencv/cv/include/
cv.hpp 66 bool _is_separable, CvSize _ksize,
76 _ksize and _anchor specify the kernel size and the anchor point. _anchor=(-1,-1) means
83 bool _is_separable, CvSize _ksize,
187 bool _is_separable, CvSize _ksize,
231 bool _is_separable, CvSize _ksize,
254 bool _normalized, CvSize _ksize,
259 bool _normalized, CvSize _ksize,
286 bool _normalized, int _ksize,
291 bool _normalized, int _ksize,
297 bool _is_separable, CvSize _ksize,
    [all...]
  /external/opencv3/modules/imgproc/src/
morph.cpp 101 MorphRowIVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {}
108 int i, k, _ksize = ksize*cn; local
115 for( k = cn; k < _ksize; k += cn )
126 for( k = cn; k < _ksize; k += cn )
143 MorphRowFVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {}
149 int i, k, _ksize = ksize*cn; local
156 for( k = cn; k < _ksize; k += cn )
175 MorphColumnIVec(int _ksize, int _anchor) : ksize(_ksize), anchor(_anchor) {
181 int i = 0, k, _ksize = ksize; local
285 int i = 0, k, _ksize = ksize; local
646 int i, j, k, _ksize = ksize*cn; local
700 int i, k, _ksize = ksize; local
    [all...]
filter.cpp 529 int i = 0, k, _ksize = kernel.rows + kernel.cols - 1; local
542 for( k = 0; k < _ksize; k++, src += cn )
573 for( k = 0; k < _ksize; k++, src += cn )
621 int i = 0, j, k, _ksize = kernel.rows + kernel.cols - 1; local
624 const int* kx = kernel.ptr<int>() + _ksize/2;
628 src += (_ksize/2)*cn;
634 if( _ksize == 1 )
636 if( _ksize == 3 )
720 else if( _ksize == 5 )
804 if( _ksize == 3
1222 int i = 0, k, _ksize = kernel.rows + kernel.cols - 1; local
1433 int _ksize = kernel.rows + kernel.cols - 1; local
1471 int _ksize = kernel.rows + kernel.cols - 1; local
1521 int i = 0, _ksize = kernel.rows + kernel.cols - 1; local
2237 int i = 0, _ksize = kernel.rows + kernel.cols - 1; local
2464 int _ksize = kernel.rows + kernel.cols - 1; local
2796 int _ksize = kernel.rows + kernel.cols - 1; local
2944 int i = 0, _ksize = kernel.rows + kernel.cols - 1; local
3086 int _ksize = ksize; local
3285 int _ksize = ksize; local
    [all...]
deriv.cpp 89 int dx, int dy, int _ksize, bool normalize, int ktype )
91 int i, j, ksizeX = _ksize, ksizeY = _ksize;
104 if( _ksize % 2 == 0 || _ksize > 31 )
    [all...]
smooth.cpp 75 RowSum( int _ksize, int _anchor ) :
78 ksize = _ksize;
109 ColumnSum( int _ksize, int _anchor, double _scale ) :
112 ksize = _ksize;
212 ColumnSum( int _ksize, int _anchor, double _scale ) :
215 ksize = _ksize;
387 ColumnSum( int _ksize, int _anchor, double _scale ) :
390 ksize = _ksize;
556 ColumnSum( int _ksize, int _anchor, double _scale ) :
559 ksize = _ksize;
    [all...]
imgwarp.cpp     [all...]
  /external/opencv/cv/src/
cvmorph.cpp 132 CvSize _ksize, CvPoint _anchor,
138 _element_shape, _element, _ksize, _anchor,
159 CvSize _ksize, CvPoint _anchor,
182 _ksize = cvGetMatSize(_element);
184 if( nz == _ksize.width*_ksize.height )
192 _element_shape == RECT, _ksize, _anchor, _border_mode, _border_value ));
229 _ksize.width == element->cols && _ksize.height == element->rows) )
233 CV_CALL( element = cvCreateMat( _ksize.height, _ksize.width, CV_8UC1 ))
    [all...]
cvderiv.cpp 368 int _ksize, int _border_mode, CvScalar _border_value )
371 init( _max_width, _src_type, _dst_type, _normalized, _ksize, _border_mode, _border_value );
408 int _ksize = MAX( _ksize0, 3 );
420 if( _ksize < 1 || _ksize > CV_MAX_SOBEL_KSIZE || _ksize % 2 == 0 )
423 CV_CALL( kx = cvCreateMat( 1, _ksize, CV_32F ));
424 CV_CALL( ky = cvCreateMat( 1, _ksize, CV_32F ));
466 bool _is_separable, CvSize _ksize,
471 _ksize, _anchor, _border_mode, _border_value )
    [all...]
cvfilter.cpp 69 bool _is_separable, CvSize _ksize, CvPoint _anchor,
80 _ksize, _anchor, _border_mode, _border_value );
125 bool _is_separable, CvSize _ksize, CvPoint _anchor,
137 _ksize.width == ksize.width && _ksize.height == ksize.height &&
142 max_width = _max_width; //MAX(_max_width,_ksize.width);
145 ksize = _ksize;
677 CvSize _ksize;
697 _ksize.width = _kx->rows + _kx->cols - 1;
698 _ksize.height = _ky->rows + _ky->cols - 1
    [all...]
cvsmooth.cpp 89 bool _normalized, CvSize _ksize,
98 _ksize, _anchor, _border_mode, _border_value );
109 bool _normalized, CvSize _ksize,
128 CvBaseImageFilter::init( _max_width, _src_type, _dst_type, 1, _ksize,
    [all...]

Completed in 358 milliseconds