Searched refs:_kx (Results 1 – 3 of 3) sorted by relevance
/external/opencv/cv/src/ |
D | cvfilter.cpp | 641 const CvMat* _kx, const CvMat* _ky, in CvSepFilter() argument 647 init( _max_width, _src_type, _dst_type, _kx, _ky, _anchor, _border_mode, _border_value ); in CvSepFilter() 669 const CvMat* _kx, const CvMat* _ky, in init() argument 684 if( !CV_IS_MAT(_kx) || !CV_IS_MAT(_ky) || in init() 685 (_kx->cols != 1 && _kx->rows != 1) || in init() 687 CV_MAT_CN(_kx->type) != 1 || CV_MAT_CN(_ky->type) != 1 || in init() 688 !CV_ARE_TYPES_EQ(_kx,_ky) ) in init() 695 filter_type = MAX( CV_32F, CV_MAT_DEPTH(_kx->type) ); in init() 697 _ksize.width = _kx->rows + _kx->cols - 1; in init() 703 if( !(kx && CV_ARE_SIZES_EQ(kx,_kx)) ) in init() [all …]
|
D | cvderiv.cpp | 476 const CvMat* _kx, const CvMat* _ky, in init() argument 480 CvSepFilter::init( _max_width, _src_type, _dst_type, _kx, _ky, in init() 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(); in icvLaplaceCol_32s16s() local 550 const int* kx = (const int*)_kx->data.ptr; in icvLaplaceCol_32s16s() 552 int ksize = _kx->cols + _kx->rows - 1, ksize2 = ksize/2; in icvLaplaceCol_32s16s() 690 const CvMat* _kx = state->get_x_kernel(); in icvLaplaceCol_32f() local 692 const float* kx = (const float*)_kx->data.ptr; in icvLaplaceCol_32f() [all …]
|
/external/opencv/cv/include/ |
D | cv.hpp | 169 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,
|