Home | History | Annotate | Download | only in src

Lines Matching refs:_result

183     void Match_CCORR_32F::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& _stream)
196 _result.create(image.rows - templ.rows + 1, image.cols - templ.cols + 1, CV_32FC1);
197 GpuMat result = _result.getGpuMat();
233 void Match_CCORR_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
246 _result.create(image.rows - templ.rows + 1, image.cols - templ.cols + 1, CV_32FC1);
247 GpuMat result = _result.getGpuMat();
256 match32F_.match(imagef_, templf_, _result, stream);
276 void Match_CCORR_NORMED_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
287 match_CCORR_.match(image, templ, _result, stream);
288 GpuMat result = _result.getGpuMat();
306 void Match_SQDIFF_32F::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
317 _result.create(image.rows - templ.rows + 1, image.cols - templ.cols + 1, CV_32FC1);
318 GpuMat result = _result.getGpuMat();
340 void Match_SQDIFF_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
353 _result.create(image.rows - templ.rows + 1, image.cols - templ.cols + 1, CV_32FC1);
354 GpuMat result = _result.getGpuMat();
364 match_CCORR_.match(image, templ, _result, stream);
365 GpuMat result = _result.getGpuMat();
387 void Match_SQDIFF_NORMED_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
402 match_CCORR_.match(image, templ, _result, stream);
403 GpuMat result = _result.getGpuMat();
426 void Match_CCOEFF_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
437 match_CCORR_.match(image, templ, _result, stream);
438 GpuMat result = _result.getGpuMat();
505 void Match_CCOEFF_NORMED_8U::match(InputArray _image, InputArray _templ, OutputArray _result, Stream& stream)
519 match_CCORR_32F_.match(imagef_, templf_, _result, stream);
520 GpuMat result = _result.getGpuMat();