I am attempting to use a cv::cuda::Stream (per thread) to do opencv cuda operations on images from multiple threads. Most functions take an optional Stream parameter, but some do not, like cv::cuda::meanStdDev. I find that if i call meanStdDev while the other (cv::cuda) calls are given a stream. I get a crash.
How would I be able to use a function like meanStdDev in my processing pipeline when using streams?
Thanks, -Ryan