cuda::Stream in v3 (CudaMem, Stream::enqueUpload())
I am trying to rewrite some CPU algorithm in OpenCV-3.1 Cuda with streams. I've figured out that API changed. I've looked at the docs, samples directory and I've googled for it. No answer.
It seams that type CudaMem was changed to HostMem. When I am trying to use stream upload, I am getting:
error: ‘class cv::cuda::Stream’ has no member named ‘enqueueUpload’
How to use streams with page locked memory in OpenCV-3.1?
How are you using the stream? Could you provide some relevant part of your code?
I was trying to use code from http://stackoverflow.com/questions/17...
I'm also interested in this. It seems that the
cv::cuda::CudaMem
class has been removed, and instead there is thecv::cuda::HostMem
class now.