gpt4 book ai didi

algorithm - 用于车牌识别的洪水填充

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:09:23 25 4
gpt4 key购买 nike

我有一个二值图像的车牌。

enter image description here

我对图像进行了膨胀以加厚边缘,然后进行“洪水填充”,最后进行腐 eclipse 以变薄:

enter image description here

但我希望我的输出是这样的:

enter image description here

有人能帮帮我吗?并告诉我如何获得所需的输出。

ab=imread('test1.png');

level=graythresh(ab);
ab=im2bw(ab,level);

se=strel('disk',1);
ab=imdilate(ab,se);


ab=imfill(ab,'holes');
ab=bwmorph(ab,'thin',1);
ab=imerode(ab,strel('line',3,90));

figure();imshow(ab,[]); title('floodFilling');

最佳答案

您可以通过对 imfill 的其他一些巧妙调用来完成此操作。这是一种方法,假设您的二进制图像在数组 BW 中:

Tmp = imfill(BW, 'holes');
Tmp2 = imfill(Tmp-BW, 'holes');
Res = Tmp - imfill(BW & Tmp2, 'holes');

Res是包含所需输出的二进制图像:

enter image description here

关于algorithm - 用于车牌识别的洪水填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29411250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com