select roi on the circle
2 views (last 30 days)
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
Answers (2)
Image Analyst
on 21 Jun 2022
Looks like you could simply create a mask using the code in the FAQ:
0 Comments
Latifa Bouguessaa
on 22 Jun 2022
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);
See Also
Categories
Find more on Read, Write, and Modify Image 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!