Searched refs:masksize (Results 1 – 4 of 4) sorted by relevance
/external/opencv/cv/src/ |
D | cvderiv.cpp | 154 ( CvSize roi, int masksize, int* bufsize ); 166 CvSize size, int masksize, int bordertype, 171 CvSize size, int masksize, int bordertype, 294 int bufsize = 0, masksize = aperture_size == 3 ? 33 : 55; in cvSobel() local 304 ipp_sobel_getbufsize_func( size, masksize, &bufsize ) : in cvSobel() 319 size, masksize, bordertype, 0, buffer ) : in cvSobel() 321 … size, masksize, bordertype, 0, buffer ) : in cvSobel() 835 int bufsize = 0, masksize = aperture_size == 3 ? 33 : 55; in cvLaplace() local 844 status = ipp_laplace_getbufsize_func( size, masksize, &bufsize ); in cvLaplace() 858 … size, masksize, bordertype, 0, buffer ) : in cvLaplace() [all …]
|
D | _cvipp.h | 385 CV_PLUGINS1(CV_PLUGIN_IPPCV), ( CvSize roi, int masksize, int* buffersize )) \ 388 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int masksize, \ 426 CV_PLUGINS1(CV_PLUGIN_IPPCV), ( CvSize roi, int masksize, int* buffersize )) \ 429 ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int masksize, \
|
/external/opencv3/modules/imgproc/src/ |
D | corner.cpp | 617 IppiMaskSize masksize = ksize == 5 ? ippMskSize5x5 : ippMskSize3x3; in cornerHarris() local 628 … if (ippiHarrisCornerGetBufferSize(roisize, masksize, blockSize, datatype, cn, &bufsize) >= 0) in cornerHarris() 637 … filterType, masksize, blockSize, (Ipp32f)k, (Ipp32f)scale, borderTypeIpp, 0, buffer); in cornerHarris() 640 … filterType, masksize, blockSize, (Ipp32f)k, (Ipp32f)scale, borderTypeIpp, 0, buffer); in cornerHarris()
|
D | deriv.cpp | 827 IppiMaskSize masksize = ksize == 3 ? ippMskSize3x3 : ippMskSize5x5; in Laplacian() local 833 …eIpp >= 0 && ippiFilterLaplacianGetBufferSize_##ippfavor##_C1R(roisize, masksize, &bufsize) >= 0) \ in Laplacian() 837 … (int)dst.step, roisize, masksize, borderTypeIpp, 0, buffer); \ in Laplacian()
|