select roi on the circle
Show older comments
Good day,
I hope someone can help me here.
I have a phantom CT image and want to select the objects (Roi). The objects are on a circle. Is there a way to convert this ROI to Cartesian coordinates. many thanks and best regards
1 Comment
Sulaymon Eshkabilov
on 21 Jun 2022
Answers (2)
Image Analyst
on 21 Jun 2022
0 votes
Looks like you could simply create a mask using the code in the FAQ:
Latifa Bouguessaa
on 22 Jun 2022
0 votes
1 Comment
Image Analyst
on 23 Jun 2022
Why do you need to cut it out (crop it)? That's probably not necessary. If you do you can do this
props = regionprops(mask, 'BoundingBox');
croppedImage = imcrop(grayImage, props.BoundingBox);
Categories
Find more on ROI-Based Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!