Need exact co-ordinate points for an irregular shape
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sunetra Banerjee
le 18 Juin 2021
Modifié(e) : Sunetra Banerjee
le 18 Juin 2021
I need to calculate slopes of some irregular ROIs. So, I need the exact co-ordinates of few points. Is it possible to get the exact co-ordinate points of the highlighted points? As I have many ROIs in a single image, I need the co-ordinates automatically.

0 commentaires
Réponse acceptée
KSSV
le 18 Juin 2021
If I is your binarized image.
[y,x] = find(I) ;
idx = boundary(x,y) ;
x = x(idx) ; y = y(idx) ;
The above gives the coordinates of boundary. You can pick the points based on distance from mean logic.
1 commentaire
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!