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!