Why i got different standard deviation values when i apply these command for matrix called as M?

2 vues (au cours des 30 derniers jours)
I am trying to find the local standard deviation of each pixel in an image using a neighborhood window size 3*3 centered at each pixel.However, i got different result when I run the bellow code can you tell me why please?. The MATLAB code as follow
inputimage=imread('cameraman.tif');% read the input image
input_image=double(inputimage); % convert the class
%%%the first method to compute the standard deviation
standard_method1=colfilt(input_image,[3 3],'sliding',@std);
%%%the second method to compute the standard deviation
standard_method2=stdfilt(input_image);

Réponse acceptée

MHN
MHN le 7 Avr 2016
Modifié(e) : MHN le 7 Avr 2016
The differences are just on the border of the image. The reason is that colfilt and stdfilt handle the border pixels differently. "For pixels on the borders of I, stdfilt uses symmetric padding. In symmetric padding, the values of padding pixels are a mirror reflection of the border pixels in I."
Also note that they are using different numerical method, so they might be not EXACTLY the same (if you compare them logically).
  2 commentaires
AMMAR KAMOONA
AMMAR KAMOONA le 7 Avr 2016
Thanks Thus, we can say that the first method is more accurately because it uses zero padding on border. Is that right?
MHN
MHN le 7 Avr 2016
Modifié(e) : MHN le 7 Avr 2016
It depends on your application and how you like to handle the border pixels. For more applications I prefer stdfilt since the border pixels have almost the same range of values comparing with the other pixels. Anyway, We can not say which one is more accurate, they just handle the border pixels differently. Please use "Accepted Answer" if it gives you your answer.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by