/external/opencv3/modules/features2d/src/kaze/ |
nldiffusion_functions.h | 33 void compute_derivative_kernels(cv::OutputArray _kx, cv::OutputArray _ky, int dx, int dy, int scale);
|
nldiffusion_functions.cpp | 303 * @param _kx Horizontal kernel ues 309 void compute_derivative_kernels(cv::OutputArray _kx, cv::OutputArray _ky, int dx, int dy, int scale) { 315 getDerivKernels(_kx, _ky, dx, dy, 0, true, CV_32F); 319 _kx.create(ksize, 1, CV_32F, -1, true); 321 Mat kx = _kx.getMat();
|
/external/opencv/cv/include/ |
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,
|
/external/opencv/cv/src/ |
cvfilter.cpp | 641 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->rows + _kx->cols - 1 [all...] |
cvderiv.cpp | 476 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->rows - 1, ksize2 = ksize/2 690 const CvMat* _kx = state->get_x_kernel(); local [all...] |
/external/opencv3/modules/imgproc/src/ |
deriv.cpp | 57 static void getScharrKernels( OutputArray _kx, OutputArray _ky, 63 _kx.create(ksize, 1, ktype, -1, true); 65 Mat kx = _kx.getMat(); 88 static void getSobelKernels( OutputArray _kx, OutputArray _ky, 99 _kx.create(ksizeX, 1, ktype, -1, true); 101 Mat kx = _kx.getMat(); [all...] |
filter.cpp | 531 const int* _kx = kernel.ptr<int>(); local 544 f = _mm_cvtsi32_si128(_kx[k]); 575 f = _mm_cvtsi32_si128(_kx[k]); 1224 const float* _kx = kernel.ptr<float>(); local 1436 const float* _kx = kernel.ptr<float>(); local 1477 const float* _kx = (const float*)kernel.data; local [all...] |