How do I display the output of my stats_

1 回表示 (過去 30 日間)
Donnell Perkins
Donnell Perkins 2020 年 3 月 16 日
回答済み: Stijn Haenen 2020 年 3 月 16 日
fontSize = 20;
I= rgb2gray(imread('C:\Users\x\Desktop\5.jpg'))
subplot(1, 2, 1);
imshow(I);
title('Original Image', 'FontSize', fontSize);
subplot(1, 2, 2);
imshow(I);
title('Draw Region Of Interest', 'FontSize', fontSize);
set(gcf, 'units','normalized','outerposition',[0 0 1 1]); % Maximize figure.
set(gcf,'name','Analysis of Texture Features of Cervical Cells','numbertitle','off')
subplot(1, 2, 2);
hFH = drawassisted()
maskImage = hFH.createMask();
subplot(1, 2, 2);
blackMaskedImage = I;
blackMaskedImage(~maskImage) = NaN;
imshow(blackMaskedImage);
title('Masked Image', 'FontSize', fontSize);
maskedImage = I.* cast(maskImage, class(I));
glcm_maskedImage=graycomatrix(maskedImage);
stats_maskImage = graycoprops(glcm_maskedImage)
y= [stats_maskImage.Homogeneity; stats_maskImage.Energy; stats_maskImage.Correlation; stats_maskImage.Contrast];
bar(y)
subplot(1, 3, 3);

回答 (1 件)

Stijn Haenen
Stijn Haenen 2020 年 3 月 16 日
Im not sure what you mean.
With the command 'gcf' you get all the stats of the figure.
The stats of the maskImage are in your workspace right?

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by