Why i got different standard deviation values when i apply these command for matrix called as M?
Afficher commentaires plus anciens
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
Plus de réponses (0)
Catégories
En savoir plus sur Neighborhood and Block Processing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!