How can i remove the black color from inside the white curve boundary
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Akhilesh Singh
el 14 de Feb. de 2014
Editada: Akhilesh Singh
el 22 de Mayo de 2014
Image1 = imread('image.jpg');% image read
a=Image1(:,:,1);
what mean this line a=Image1(:,:,1);
0 comentarios
Respuesta aceptada
Anand
el 14 de Feb. de 2014
Use imfill with the 'holes' option.
% read the image
im = imread('http://www.mathworks.com/matlabcentral/answers/uploaded_files/8143/ar1.jpg');
% binarize it
bw = rgb2gray(im)>100;
% fill holes
out = imfill(bw,'holes');
% display image
imshow(out);
1 comentario
Image Analyst
el 15 de Feb. de 2014
That finds the area of the completely filled white area. Exactly what do you mean when you say "the area of inside the white area". Do you mean the area of the black region that is inside the white area? If so, which one? There are several black regions inside the white region.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!