필터 지우기
필터 지우기

Similarity level of the pixel

조회 수: 1 (최근 30일)
Nataliya
Nataliya 2015년 8월 14일
답변: Image Analyst 2015년 8월 14일
Hi, I want to compute the similarity of the pixel with its neighbors. Basically what I want is to assign more weights to the pixels that are similar to its neighboring pixels and less weight to pixels that are dissimilar. Is there any feature or some method that will do this. Kindly suggest. Thanks

채택된 답변

Image Analyst
Image Analyst 2015년 8월 14일
How about scanning with a 3x3 window and computing the standard deviation - that will be 0 if all the pixels are the same and high if they're different. Then subtract that from 255
out = 255 - stdfilt(grayImage);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by