shannon entropy and entropy of grayscale
조회 수: 19 (최근 30일)
표시 이전 댓글
How can i find the entropy of a gray image without using the "entropy(I)" , "entropy" command? with just codes and arrays?

채택된 답변
the cyclist
2023년 4월 8일
I = imread('image.png');
figure
imagesc(I)
% Using histogram from imhist
p = imhist(I);
p = p/numel(I);
p(p==0) = [];
entropyFromImhist = -sum(p.*log2(p))
% Built-in entropy function
entropy(I)
댓글 수: 0
추가 답변 (1개)
埃博拉酱
2023년 4월 8일
Entropy.m is open source, why don't you just check out its source code?
edit entropy
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Preview and Device Configuration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!