How to plot a structure with multiple fields

 Respuesta aceptada

Jan
Jan el 11 de Mzo. de 2021
Editada: Jan el 11 de Mzo. de 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 comentarios

Eberechi ICHI
Eberechi ICHI el 11 de Mzo. de 2021
Thanks @Jan
I adapted your code but was only getting kind of the last field being ploted. see my modified code below for any further comments. The points are meant to appear all on the image (101 plots of patches).
for k = 1:numel(rgn2)
imshow(StichedM_PRNB_2);
hold on;
data = rgn2(k).PixelList;
plot(data(:, 1), data(:, 2), 'w*', 'LineWidth', 2, 'MarkerSize', 1);
title('Class 2 removal on PRNB', 'FontSize', 12);
end
Eberechi ICHI
Eberechi ICHI el 11 de Mzo. de 2021
Please i ned assistacne on how to get the all fields plotted in the loop. Thanks
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 el 11 de Mzo. de 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);

Iniciar sesión para comentar.

Más respuestas (0)

Productos

Versión

R2020a

Preguntada:

el 11 de Mzo. de 2021

Comentada:

el 11 de Mzo. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by