Searched refs:_kx (Results 1 - 3 of 3) sorted by relevance

/external/opencv/cv/include/
H A Dcv.hpp169 const CvMat* _kx, const CvMat* _ky,
176 const CvMat* _kx, const CvMat* _ky,
202 static void init_sobel_kernel( CvMat* _kx, CvMat* _ky, int dx, int dy, int flags=0 );
203 static void init_scharr_kernel( CvMat* _kx, CvMat* _ky, int dx, int dy, int flags=0 );
303 const CvMat* _kx, const CvMat* _ky,
/external/opencv/cv/src/
H A Dcvfilter.cpp641 const CvMat* _kx, const CvMat* _ky,
647 init( _max_width, _src_type, _dst_type, _kx, _ky, _anchor, _border_mode, _border_value );
669 const CvMat* _kx, const CvMat* _ky,
684 if( !CV_IS_MAT(_kx) || !CV_IS_MAT(_ky) ||
685 (_kx->cols != 1 && _kx->rows != 1) ||
687 CV_MAT_CN(_kx->type) != 1 || CV_MAT_CN(_ky->type) != 1 ||
688 !CV_ARE_TYPES_EQ(_kx,_ky) )
695 filter_type = MAX( CV_32F, CV_MAT_DEPTH(_kx->type) );
697 _ksize.width = _kx
[all...]
H A Dcvderiv.cpp476 const CvMat* _kx, const CvMat* _ky,
480 CvSepFilter::init( _max_width, _src_type, _dst_type, _kx, _ky,
490 const CvMat* _kx = state->get_x_kernel(); \
492 const dsttype* kx = (dsttype*)_kx->data.ptr; \
494 int ksize = _kx->cols + _kx->rows - 1; \
548 const CvMat* _kx = state->get_x_kernel();
550 const int* kx = (const int*)_kx->data.ptr;
552 int ksize = _kx->cols + _kx
690 const CvMat* _kx = state->get_x_kernel(); local
[all...]

Completed in 87 milliseconds