Searched refs:bufM (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudaoptflow/src/ |
D | farneback.cpp | 151 GpuMat& M, GpuMat &bufM, int blockSize, bool updateMatrices, Stream streams[]); 155 GpuMat& M, GpuMat &bufM, int blockSize, bool updateMatrices, Stream streams[]); 258 GpuMat& M, GpuMat &bufM, int blockSize, bool updateMatrices, Stream streams[]) in updateFlow_boxFilter() argument 261 …device::optflow_farneback::boxFilter5Gpu(M, blockSize/2, bufM, StreamAccessor::getStream(streams[0… in updateFlow_boxFilter() 263 …device::optflow_farneback::boxFilter5Gpu_CC11(M, blockSize/2, bufM, StreamAccessor::getStream(stre… in updateFlow_boxFilter() 264 swap(M, bufM); in updateFlow_boxFilter() 276 GpuMat& M, GpuMat &bufM, int blockSize, bool updateMatrices, Stream streams[]) in updateFlow_gaussianBlur() argument 280 … M, blockSize/2, bufM, BORDER_REPLICATE, StreamAccessor::getStream(streams[0])); in updateFlow_gaussianBlur() 283 … M, blockSize/2, bufM, BORDER_REPLICATE, StreamAccessor::getStream(streams[0])); in updateFlow_gaussianBlur() 284 swap(M, bufM); in updateFlow_gaussianBlur() [all …]
|
/external/opencv3/modules/video/src/ |
D | optflowgf.cpp | 712 UMat bufM = allocMatFromBuf(5*height, width, CV_32F, bufM_); in operator ()() local 760 … if (!updateFlow_gaussianBlur(R[0], R[1], curFlowX, curFlowY, M, bufM, winSize, i < numIters-1)) in operator ()() 765 … if (!updateFlow_boxFilter(R[0], R[1], curFlowX, curFlowY, M, bufM, winSize, i < numIters-1)) in operator ()() 1012 UMat& M, UMat &bufM, int blockSize, bool updateMatrices) in updateFlow_boxFilter() argument 1014 if (!boxFilter5Ocl(M, blockSize/2, bufM)) in updateFlow_boxFilter() 1016 swap(M, bufM); in updateFlow_boxFilter() 1026 UMat& M, UMat &bufM, int blockSize, bool updateMatrices) in updateFlow_gaussianBlur() argument 1028 if (!gaussianBlur5Ocl(M, blockSize/2, bufM)) in updateFlow_gaussianBlur() 1030 swap(M, bufM); in updateFlow_gaussianBlur()
|