Home | History | Annotate | Download | only in src

Lines Matching refs:flowx

71             const PtrStepSzf flowx, const PtrStepSzf flowy, const PtrStepSzf R0, const PtrStepSzf R1,
75 const PtrStepSzf M, PtrStepSzf flowx, PtrStepSzf flowy, cudaStream_t stream);
150 const GpuMat& R0, const GpuMat& R1, GpuMat& flowx, GpuMat &flowy,
154 const GpuMat& R0, const GpuMat& R1, GpuMat& flowx, GpuMat& flowy,
157 void calcImpl(const GpuMat &frame0, const GpuMat &frame1, GpuMat &flowx, GpuMat &flowy, Stream &stream);
170 GpuMat flowx = pool.getBuffer(frame0.size(), CV_32FC1);
173 calcImpl(frame0, frame1, flowx, flowy, stream);
175 GpuMat flows[] = {flowx, flowy};
257 const GpuMat& R0, const GpuMat& R1, GpuMat& flowx, GpuMat &flowy,
268 device::optflow_farneback::updateFlowGpu(M, flowx, flowy, StreamAccessor::getStream(streams[0]));
271 device::optflow_farneback::updateMatricesGpu(flowx, flowy, R0, R1, M, StreamAccessor::getStream(streams[0]));
275 const GpuMat& R0, const GpuMat& R1, GpuMat& flowx, GpuMat& flowy,
286 device::optflow_farneback::updateFlowGpu(M, flowx, flowy, StreamAccessor::getStream(streams[0]));
289 device::optflow_farneback::updateMatricesGpu(flowx, flowy, R0, R1, M, StreamAccessor::getStream(streams[0]));
292 void FarnebackOpticalFlowImpl::calcImpl(const GpuMat &frame0, const GpuMat &frame1, GpuMat &flowx, GpuMat &flowy, Stream &stream)
306 flowx.create(size, CV_32F);
308 GpuMat flowx0 = flowx;
454 flowx = curFlowX;