Searched refs:_templ (Results 1 – 6 of 6) sorted by relevance
/external/opencv3/modules/imgproc/src/ |
D | templmatch.cpp | 169 static bool convolve_dft(InputArray _image, InputArray _templ, OutputArray _result) in convolve_dft() argument 173 CV_Assert(_templ.type() == CV_32F); in convolve_dft() 175 buf.create(_image.size(), _templ.size()); in convolve_dft() 179 UMat templ = _templ.getUMat(); in convolve_dft() 235 static bool convolve_32F(InputArray _image, InputArray _templ, OutputArray _result) in convolve_32F() argument 237 _result.create(_image.rows() - _templ.rows() + 1, _image.cols() - _templ.cols() + 1, CV_32F); in convolve_32F() 240 return(convolve_dft(_image, _templ, _result)); in convolve_32F() 244 UMat templ = _templ.getUMat(); in convolve_32F() 254 static bool matchTemplateNaive_CCORR(InputArray _image, InputArray _templ, OutputArray _result) in matchTemplateNaive_CCORR() argument 282 UMat image = _image.getUMat(), templ = _templ.getUMat(); in matchTemplateNaive_CCORR() [all …]
|
/external/opencv3/modules/cudaimgproc/src/ |
D | match_template.cpp | 183 …void Match_CCORR_32F::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& _st… in match() argument 188 GpuMat templ = _templ.getGpuMat(); in match() 233 …void Match_CCORR_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stre… in match() argument 238 GpuMat templ = _templ.getGpuMat(); in match() 276 …void Match_CCORR_NORMED_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Strea… in match() argument 281 GpuMat templ = _templ.getGpuMat(); in match() 306 …void Match_SQDIFF_32F::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& st… in match() argument 311 GpuMat templ = _templ.getGpuMat(); in match() 340 …void Match_SQDIFF_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& str… in match() argument 345 GpuMat templ = _templ.getGpuMat(); in match() [all …]
|
/external/opencv/cv/src/ |
D | cvtemplmatch.cpp | 45 icvCrossCorr( const CvArr* _img, const CvArr* _templ, CvArr* _corr, CvPoint anchor ) in icvCrossCorr() argument 59 CvMat tstub, *templ = (CvMat*)_templ; in icvCrossCorr() 324 cvMatchTemplate( const CvArr* _img, const CvArr* _templ, CvArr* _result, int method ) in cvMatchTemplate() argument 337 CvMat tstub, *templ = (CvMat*)_templ; in cvMatchTemplate()
|
D | _cvimgproc.h | 75 icvCrossCorr( const CvArr* _img, const CvArr* _templ,
|
/external/opencv3/modules/imgproc/test/ |
D | test_templmatch.cpp | 312 CvMat _input = test_mat[INPUT][0], _templ = test_mat[INPUT][1]; in prepare_to_validation() local 314 cvTsMatchTemplate( &_input, &_templ, &_output, method ); in prepare_to_validation()
|
/external/opencv3/modules/cudaarithm/src/ |
D | arithm.cpp | 471 …void ConvolutionImpl::convolve(InputArray _image, InputArray _templ, OutputArray _result, bool cco… in convolve() argument 474 GpuMat templ = getInputMat(_templ, _stream); in convolve()
|