Connected component labeling

本文介绍了连通组件标记法,以8连接性为例,解释了如何从左到右、从上到下扫描图像,通过检查像素邻居来分配和合并标签,实现前景物体的识别和分组。
摘要由CSDN通过智能技术生成

以 black-white and 8-connectivity 为例,0代表背景,1代表前景物体。该算法包括 two scans, from left to right and from top to down.

The first scan:  examine the four neighbors(斜左上角,正上方,斜右上角和左方)

i. If none of the pixel value is 1, then assign this pixel a new label;

ii. If only one of this four pixels is 1, then assign its label to the current pixel;

iii. Then if more than 1 pixels are 1, then assign the minimal label to the current pixel, and make a note of equivalences for these pixels.

The second scan: merge the labels with the equivalent notes.

示例:

1. 源数据:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值