immse same size error
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have problem with MSE. I'm working on noise-reduction filters and one of type how to figure out which filter is bether is MSE. Here's code:
X = getappdata (0, 'X');
C = uigetfile('*.*');
C = imread(C);
err = immse(X,C);
panel(handles.panel);
fprintf('\n The mean-squared error is %0.4f\n', err);
Where X is imported image in other function. Denoised image is result from X so they have same size, I allready checked that. Any ideas how to figure this out?
0 Kommentare
Antworten (2)
Image Analyst
am 13 Mär. 2018
Figure WHAT out? Images with a lower MSE will be closer to the reference image. What are you doing with the panel() function?
6 Kommentare
Steve Eddins
am 13 Mär. 2018
Compare the output of size(X) and size(C) to double-check your assumption that X and C are the same size.
3 Kommentare
nur Iqtiffah
am 23 Nov. 2019
Hi, do you solve your problem yet? Cuz i have the same problem. Can you please respond asap?
Image Analyst
am 23 Nov. 2019
I don't understand your problem. Are your images the same size and number of color channels and immse() throws an error? Attach both your images with the paper clip icon.
Siehe auch
Kategorien
Mehr zu Image Filtering and Enhancement finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

