local variation of image
Mostrar comentarios más antiguos
I want to calculate the local standard variation in a sliding window for an image. How it should be done using matlab ??
Respuesta aceptada
Más respuestas (1)
Wolfgang Schwanghart
el 7 de Mayo de 2011
Hi,
or
doc stdfilt
Hope this helps, Wolfgang
6 comentarios
nayomi ranamuka
el 7 de Mayo de 2011
nayomi ranamuka
el 7 de Mayo de 2011
Walter Roberson
el 7 de Mayo de 2011
Yes?
J = stdfilt(I, NHOOD) calculates the local standard deviation of the input image I, where you specify the neighborhood in NHOOD. NHOOD is a multidimensional array of zeros and ones where the nonzero elements specify the neighbors. NHOOD's size must be odd in each dimension.
nayomi ranamuka
el 7 de Mayo de 2011
Wolfgang Schwanghart
el 7 de Mayo de 2011
What exactly is the problem? Did you try to run the example in the documentation?
Walter Roberson
el 7 de Mayo de 2011
J = stdfilt(I, ones(5,5));
Categorías
Más información sobre Neighborhood and Block Processing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!