How to plot a structure with multiple fields
14 ビュー (過去 30 日間)
古いコメントを表示
0 件のコメント
採用された回答
Jan
2021 年 3 月 11 日
編集済み: Jan
2021 年 3 月 11 日
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 件のコメント
Jan
2021 年 3 月 11 日
Move these lines out of the loop:
imshow(StichedM_PRNB_2);
hold on;
title('Class 2 removal on PRNB', 'FontSize', 12);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Lighting, Transparency, and Shading についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!