如果我有 abject 的像素位置为 [x, y] = find(Bw2 == 0); 然后我如何删除它然后填充原始背景
这是我的代码
[x, y] = find(Bw2 == 0);
[row, colo, z]=size(RGB); %size of rgb image
for i=1:row
for j=1:colo
if any(i==x) %if the row of rgb image is the same of pixel location row
if any(j==y(i==x)) %if the colos of rgb image is the same of pixel loca colo
Free_image= imfill(RGB,i,j);
end
end
end
end