How to See Regionprops Results on Seperate Windows

1 vue (au cours des 30 derniers jours)
Murat Kocaman
Murat Kocaman le 4 Juin 2018
Commenté : Murat Kocaman le 4 Juin 2018
Hello,
My study gives results on matlab interface. The line is:
s=regionprops(logical(bw3),'Centroid','Area','Eccentricity','Perimeter');
Is it possible to see these values on a seperate window as a result?

Réponse acceptée

Varun Garg
Varun Garg le 4 Juin 2018
Hi Murat,
I understand from your question that you want to see your table s in a separate window. I think uitable will solve your problem.
Example Snippet:
a = imread('circlesBrightDark.png');
bw = a < 100;
stats = regionprops('table',bw,'Centroid', 'MajorAxisLength','MinorAxisLength')
uitable('Data', [stats.Centroid stats.MajorAxisLength stats.MinorAxisLength],...
'ColumnName', {'Centroid_X', 'Centroid_Y', 'MajorAxisLength','MinorAxisLength'}, ...
'Position', [20 20 500 150]);
You can later save the generated figure for later use. Hope my answer helps.
  1 commentaire
Murat Kocaman
Murat Kocaman le 4 Juin 2018
Yes this was what i need thank you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Produits


Version

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by