OpenCV Cuda 不是有类似于 findContours 的函数吗?

Isn't there a OpenCV Cuda function similar to findContours?

有几个 OpenCV CPU 函数具有直接的 CUDA 对应项,例如 cv::cvtColorcv::cuda::cvtColor

但我没有找到 cv::findContours CPU 的直接或间接 (GPU) Cuda 对应物。

OpenCV Cuda没有类似findContours的函数吗?或者 findContours 是否适用于 cv::Matcv::cuda::GpuMat

很遗憾,没有。甚至在最新的 OpenCV 3.2.0 版本中也没有。但是他们有这个更新,如下所示:https://github.com/opencv/opencv/wiki/ChangeLog

findContours 现在可以在标签的 32 位整数图像上找到轮廓(不仅在黑白 8 位图像上)。这是朝着更方便的连通分量分析迈出的一步。