segmentation size of an image

2 views (last 30 days)
Sreepriya P
Sreepriya P on 2 Jun 2021
Edited: Sreepriya P on 16 Jun 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.

Accepted Answer

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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!