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!