我正在进行图像处理,并在图像中查找连接的组件。在MATLAB中我使用bwconncomp函数但是任何人都可以帮助我如何在java中执行它或者在OpenCv中是否有任何直接函数。
答案 0 :(得分:2)
您可以在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
。