segmentation size of an image

2 visualizaciones (últimos 30 días)
Sreepriya P
Sreepriya P el 2 de Jun. de 2021
Editada: Sreepriya P el 16 de Jun. de 2021
I would like to do an image segmentation in ultrasound images. I need to segment my images into six equal parts. How can i calculate the segmentation size?
this is my image, i need to segment this to six equal parts and also calculate segmentation size. anybody please help me out this poblem.

Respuesta aceptada

Image Analyst
Image Analyst el 2 de Jun. de 2021
Try this:
[rows, columns, numberOfColorChannels] = size(ultrasoundImage);
segRows = rows/6;
segColumns = columns/6;

Más respuestas (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by