Lines Matching refs:NCVMatrixAlloc
86 NCVStatus CopyData(IplImage *image, Ptr<NCVMatrixAlloc<Ncv32f> >& dst) in CopyData()
88 …dst = Ptr<NCVMatrixAlloc<Ncv32f> > (new NCVMatrixAlloc<Ncv32f> (*g_pHostMemAllocator, image->width… in CopyData()
113 NCVStatus CopyData(const IplImage *image, const NCVMatrixAlloc<Ncv32f> &dst) in CopyData()
140 Ptr<NCVMatrixAlloc<Ncv32f> > &src, in LoadImages()
141 Ptr<NCVMatrixAlloc<Ncv32f> > &dst, in LoadImages()
187 static NCVStatus ShowFlow (NCVMatrixAlloc<Ncv32f> &u, NCVMatrixAlloc<Ncv32f> &v, const char *name) in ShowFlow()
191 NCVMatrixAlloc<Ncv32f> host_u(*g_pHostMemAllocator, u.width(), u.height()); in ShowFlow()
194 NCVMatrixAlloc<Ncv32f> host_v (*g_pHostMemAllocator, u.width (), u.height ()); in ShowFlow()
247 static IplImage *CreateImage (NCVMatrixAlloc<Ncv32f> &h_r, NCVMatrixAlloc<Ncv32f> &h_g, NCVMatrixAl… in CreateImage()
416 Ptr<NCVMatrixAlloc<Ncv32f> > src_host; in main()
417 Ptr<NCVMatrixAlloc<Ncv32f> > dst_host; in main()
429 …Ptr<NCVMatrixAlloc<Ncv32f> > src (new NCVMatrixAlloc<Ncv32f> (*g_pGPUMemAllocator, src_host->width… in main()
432 …Ptr<NCVMatrixAlloc<Ncv32f> > dst (new NCVMatrixAlloc<Ncv32f> (*g_pGPUMemAllocator, src_host->width… in main()
442 NCVMatrixAlloc<Ncv32f> name(*allocator, sx, sy);\ in main()