I have noisy image matrix.I need to plot it on line plot.How do I do it?
1 回表示 (過去 30 日間)
古いコメントを表示
I have both 2d and 3d noisy image matrix.I need to figure out how much have they been denoised.So,I need to plot them on a line plot.What should be appropriate code snippet?
0 件のコメント
回答 (1 件)
KSSV
2021 年 10 月 9 日
You can convert image into column using (:). But I don't think this is the way to check.
I = imread('cameraman.tif') ;
plot(I(:))
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!