Ask Your Question

dagongji09's profile - activity

2019-10-25 09:18:58 -0600 marked best answer How to use cudaoptflow in python

I have build opencv4.1.0 with opencv-contrib, python2.7, cuda9.0 in centos7 successfully.And I want to use GPU to speed up TVL1 calculate. But when I use cv.cuda.OpticalFlowDual_TVL1 or cv.cudaoptflow it will retrun error 'module' object has no attribute.But in C++, we can find cv::cuda::OpticalFlowDual_TVL1. How can I do the same work in python ?

2019-10-24 04:27:42 -0600 commented question How to use cudaoptflow in python

In fact, I have solved this problem.Now I can use GPU like that cv.cuda_OpticalFlowDual_TVL1.create() just as C++ do but

2019-10-24 04:27:04 -0600 commented question How to use cudaoptflow in python

In fact, I have solved this problem.Now I can use GPU like that cv.cuda_OpticalFlowDual_TVL1.create() just as C++ do but

2019-10-23 22:23:27 -0600 asked a question How to use cudaoptflow in python

How to use cudaoptflow in python I have build opencv4.1.0 with opencv-contrib, python2.7, cuda9.0 in centos7 successfull