我有一个代表MATLAB中数字的二进制图像:
我想填写所有数字。期望的结果是:
我发现的唯一一件事是imfill
功能,但由于我丢失了内部数据(例如9的内圈),因此这并不是很有用。
答案 0 :(得分:6)
另一种可能性是使用BWBOUNDARIES函数,其中:
跟踪对象的外部边界以及对象的边界 这些物体内的洞
该信息包含在第四个输出A
中,这是一个表示父子洞依赖关系的邻接矩阵。
%# read binary image
bw = imread('SUvif.png');
%# find all boundaries
[B,L,N,A] = bwboundaries(bw, 8, 'holes');
%# exclude inner holes
[r,~] = find(A(:,N+1:end)); %# find inner boundaries that enclose stuff
[rr,~] = find(A(:,r)); %# stuff they enclose
idx = setdiff(1:numel(B), [r(:);rr(:)]); %# exclude both
bw2 = ismember(L,idx); %# filled image
%# compare results
subplot(311), imshow(bw), title('original')
subplot(312), imshow( imfill(bw,'holes') ), title('imfill')
subplot(313), imshow(bw2), title('bwboundaries')
答案 1 :(得分:4)
问题是如何区分孔与数字。一种可能的临时解决方案是按照内部像素的区域对它们进行过滤。
function SolveSoProblem()
I = imread('http://i.stack.imgur.com/SUvif.png');
%Fill all the holes
F = imfill(I,'holes');
%Find all the small ones,and mark their edges in the image
bw = bwlabel(I);
rp = regionprops(bw,'FilledArea','PixelIdxList');
indexesOfHoles = [rp.FilledArea]<150;
pixelsNotToFill = vertcat(rp(indexesOfHoles).PixelIdxList);
F(pixelsNotToFill) = 0;
figure;imshow(F);
%Remove the inner area
bw1 = bwlabel(F,4);
rp = regionprops(bw1,'FilledArea','PixelIdxList');
indexesOfHoles1 = [rp.FilledArea]<150;
pixelListToRemove = vertcat(rp(indexesOfHoles1).PixelIdxList);
F(pixelListToRemove) = 0;
figure;imshow(F);
end
步骤(1):
之后
步骤(2):
之后
答案 2 :(得分:0)
假设左上角的像素总是在要填充的区域之外:
在顶行工作,将像素复制到输出图像
当您在输入图像中找到白色像素后跟黑色像素时,开始在输出图像中设置白色像素,直到您变为黑色像素,然后是白色像素。