Problem with animated line, not drawing anything

7 Ansichten (letzte 30 Tage)
Santiago Marin
Santiago Marin am 2 Sep. 2019
Kommentiert: Santiago Marin am 3 Sep. 2019
I want to plot the value a metric takes while varying the filter sigma value, the code is as follows:
ImgOrg=imread('ROIOriginal_pgm25.png'); %Load the image
for sigmaVal=0.5:0.1:5
Imed=imgaussfilt(ImgOrg,sigmaVal); %Apply the filter with the sigma value
[peaksnr, ~] = psnr(Imed, ImgOrg); %Calculate the metric after applying the filter
h = animatedline;
addpoints(h,sigmaVal,peaksnr)
drawnow limitrate
end
But all I get is an empty figure, I can't see any line or any point. I'm in Matlab R2019a.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 2 Sep. 2019
Move the
h = animatedline;
to before the loop.

Weitere Antworten (0)

Kategorien

Mehr zu Animation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by