Is there an OpenCV Cuda function similar to findContours?

There are several functions of the OpenCV CPU that have a direct analogue of CUDA, for example, cv::cvtColorand cv::cuda::cvtColor.

But I did not find a direct or indirect (GPU) instance of Cuda for the cv::findContoursCPU.

Isn't there an OpenCV Cuda feature like findContours? Or do findContours work both on cv::Matand on cv::cuda::GpuMat?

+4
source share
1 answer

Unfortunately no. Even in the latest version of OpenCV 3.2.0. But they have this update as shown here: https://github.com/opencv/opencv/wiki/ChangeLog

findContours 32- ( - 8- ). .

+2

Source: https://habr.com/ru/post/1625467/


All Articles