Home
last modified time | relevance | path

Searched refs:smoothSize (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaoptflow/src/
Dfarneback.cpp350 int smoothSize = cvRound(sigma*5) | 1; in calcImpl() local
351 smoothSize = std::max(smoothSize, 3); in calcImpl()
422 Mat g = getGaussianKernel(smoothSize, sigma, CV_32F); in calcImpl()
423 … device::optflow_farneback::setGaussianBlurKernel(g.ptr<float>(smoothSize/2), smoothSize/2); in calcImpl()
428 …frames_[i], smoothSize/2, blurredFrame[i], BORDER_REFLECT101, StreamAccessor::getStream(streams[i]… in calcImpl()
/external/opencv3/modules/video/src/
Doptflowgf.cpp665 int smoothSize = cvRound(sigma*5) | 1; in operator ()() local
666 smoothSize = std::max(smoothSize, 3); in operator ()()
739 setGaussianBlurKernel(smoothSize, sigma); in operator ()()
743 if (!gaussianBlurOcl(frames_[i], smoothSize/2, blurredFrame[i])) in operator ()()
821 inline void setGaussianBlurKernel(int smoothSize, double sigma) in setGaussianBlurKernel() argument
823 Mat g = getGaussianKernel(smoothSize, sigma, CV_32F); in setGaussianBlurKernel()
824 Mat gKer(1, smoothSize/2 + 1, CV_32FC1, g.ptr<float>(smoothSize/2)); in setGaussianBlurKernel()