Home | History | Annotate | Download | only in src

Lines Matching full:frame0

111                              const NCVMatrix<Ncv32f>& frame0, const NCVMatrix<Ncv32f>& frame1,
117 ncvSafeCall( NCVBroxOpticalFlow(desc, gpuCounter, frame0, frame1, u, v, 0) );
129 const GpuMat frame0 = _I0.getGpuMat();
132 CV_Assert( frame0.type() == CV_32FC1 );
133 CV_Assert( frame1.size() == frame0.size() && frame1.type() == frame0.type() );
138 GpuMat u = pool.getBuffer(frame0.size(), CV_32FC1);
139 GpuMat v = pool.getBuffer(frame0.size(), CV_32FC1);
151 frame0MemSeg.begin.ptr = const_cast<uchar*>(frame0.data);
152 frame0MemSeg.size = frame0.step * frame0.rows;
172 NCVMatrixReuse<Ncv32f> frame0Mat(frame0MemSeg, static_cast<Ncv32u>(textureAlignment), frame0.cols, frame0.rows, static_cast<Ncv32u>(frame0.step));