OpenCv Java:如何在OpenCv JAVA中查找图像的连通组件

时间:2014-04-15 10:24:14

标签: java android eclipse matlab opencv

我正在进行图像处理,并在图像中查找连接的组件。在MATLAB中我使用bwconncomp函数但是任何人都可以帮助我如何在java中执行它或者在OpenCv中是否有任何直接函数。

1 个答案:

答案 0 :(得分:2)

查看FindContours

您可以在Android中使用它:

Imgproc.findContours(Mat image, 
        java.util.List<MatOfPoint> contours, 
        Mat hierarchy, 
        int mode, 
        int method)

层次结构参数涉及图像拓扑和嵌套轮廓,因此, 对于简单的轮廓,您可以分别为模式和方法传递new Mat()Imgproc.RETR_LIST以及Imgproc.CHAIN_APPROX_NONE