Image Processing ( calculate perimeter)
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I now calculate the perimter of this hand . I've got the left image using bmarea and the one on the right is when imclose is used
How do I now find the perimeter as shown on the left? I've got the outline what should i do now ?
thank u
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145262/image.jpeg)
0 comentarios
Respuestas (2)
Teja Muppirala
el 10 de Abr. de 2011
Use the REGIONPROPS function.
I = peaks(500) > 3;
imshow(I);
P = regionprops(I,'perimeter');
P.Perimeter
7 comentarios
Sean de Wolski
el 11 de Abr. de 2011
Movida: DGM
el 29 de Dic. de 2023
e means *10^...
in this case 13613.
Sean de Wolski
el 13 de Abr. de 2011
cprops(:).Perimeter
Will list off the six perimeters (one for each of the six binary objects)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!