How to plot a structure with multiple fields

12 vues (au cours des 30 derniers jours)
Eberechi ICHI
Eberechi ICHI le 11 Mar 2021
Commenté : Eberechi ICHI le 11 Mar 2021

Réponse acceptée

Jan
Jan le 11 Mar 2021
Modifié(e) : Jan le 11 Mar 2021
FigH = figure;
AxesH = axes(FigH, 'NextPlot', 'add');
for k = 1:numel(rgn2)
data = rgn2(k).PixelList;
plot(data(:, 1), data(:, 2)); % Or how you plot one of these values
end
  4 commentaires
Jan
Jan le 11 Mar 2021
Move these lines out of the loop:
imshow(StichedM_PRNB_2);
hold on;
title('Class 2 removal on PRNB', 'FontSize', 12);
Eberechi ICHI
Eberechi ICHI le 11 Mar 2021
Thanks @Jan. This worked perfectly...
subplot(2,2,4)
imshow(StichedM_PRNB_2);
hold on;
for k = 1:numel(rgn2)
data = rgn2(k).PixelList;
plot(data(:, 1), data(:, 2), 'w*', 'LineWidth', 2, 'MarkerSize', 1);
end
title('Class 2 removal on PRNB', 'FontSize', 12);

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Lighting, Transparency, and Shading dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by