I = imread('TEST_2.JPG');
Igray = rgb2gray(I);
Ibw = im2bw(Igray,graythresh(Igray));
Iedge = edge(uint8(Ibw));
se = strel('square',2);
Iedge2 = imdilate(Iedge, se);
Ifill= imfill(Iedge2,'holes');
imshow(Ifill)
大多数数字是分开和识别的,但很少有数字彼此非常接近,因此它被识别为一个数字。有没有办法分开这些混合数字?对不起,我是新来的,直到 10 声望才能发布图片。