How to adjust TEXT in "regionprops" ?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abdul Hannan Qureshi
le 19 Avr 2022
Modifié(e) : Abdul Hannan Qureshi
le 19 Avr 2022
I am using "regionprops" with "Perimeter" property. The following outcome I have achieved:
How I can move these texts below each related white line and add unit to it, i.e., 283.04 cm.
Mentioned below is the used code:
j=regionprops(binaryImage,'Perimeter','Centroid');
score= ([j.Perimeter]/(2*3.7));
figure, imshow(binaryImage);
for cnt = 1:length(j)
text(j(cnt).Centroid(1),j(cnt).Centroid(2),num2str(score(cnt)),'FontSize',12,'color','red');
end
Kindly guide.
0 commentaires
Réponse acceptée
Matt J
le 19 Avr 2022
Modifié(e) : Matt J
le 19 Avr 2022
The question doesn't seem to have anything to do with regionprops really, just with your call to text().
morespace=5;
figure, imshow(binaryImage);
for cnt = 1:length(j)
text(j(cnt).Centroid(1),j(cnt).Centroid(2)+morespace,...
num2str(score(cnt))+" cm",'FontSize',12,'color','red');
end
1 commentaire
Plus de réponses (1)
Image Analyst
le 19 Avr 2022
For what it's worth, see the attached demo. It explains how the blobs are numbered (labeled), which is a confusing topic for many people.
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!