findContours

    findContours函数是opencv中非常有用的分割函数,为开发人员提供形状、面积等拓扑信息等。函数原型如下:

    void findContours ( InputOutputArray image, OutputArrayOfArrays contours, OutputArray hierarchy, int mode, int method, Point                                       offset = Point() )

    详细解释:https://blog.csdn.net/keith_bb/article/details/70185209

                                                             findContours_第1张图片

                                                                                只画出外侧轮廓并填充

                                                             findContours_第2张图片

                                                                                    只画出外部轮廓

                                                              findContours_第3张图片

                                                                                        提取所有轮廓

对于其中一些参数还不是很明白,只是使用过程中用来做了一些特征提取。

你可能感兴趣的:(图像处理)