select roi on the circle
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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
Risposte (2)
Image Analyst
il 21 Giu 2022
Looks like you could simply create a mask using the code in the FAQ:
0 Commenti
Latifa Bouguessaa
il 22 Giu 2022
1 Commento
Image Analyst
il 23 Giu 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);
Vedere anche
Categorie
Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!