local variation of image
显示 更早的评论
I want to calculate the local standard variation in a sliding window for an image. How it should be done using matlab ??
采纳的回答
更多回答(1 个)
Wolfgang Schwanghart
2011-5-7
Hi,
or
doc stdfilt
Hope this helps, Wolfgang
6 个评论
nayomi ranamuka
2011-5-7
nayomi ranamuka
2011-5-7
Walter Roberson
2011-5-7
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
2011-5-7
Wolfgang Schwanghart
2011-5-7
What exactly is the problem? Did you try to run the example in the documentation?
Walter Roberson
2011-5-7
J = stdfilt(I, ones(5,5));
类别
在 帮助中心 和 File Exchange 中查找有关 Neighborhood and Block Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!