shannon entropy and entropy of grayscale

9 visualizaciones (últimos 30 días)
elTurco
elTurco el 7 de Abr. de 2023
Respondida: the cyclist el 8 de Abr. de 2023
How can i find the entropy of a gray image without using the "entropy(I)" , "entropy" command? with just codes and arrays?
  2 comentarios
the cyclist
the cyclist el 7 de Abr. de 2023
Sounds like homework.
Can you use imhist?
elTurco
elTurco el 8 de Abr. de 2023
Yes i can

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 8 de Abr. de 2023
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))
entropyFromImhist = 4.3978
% Built-in entropy function
entropy(I)
ans = 4.3978

Más respuestas (1)

埃博拉酱
埃博拉酱 el 8 de Abr. de 2023
Entropy.m is open source, why don't you just check out its source code?
edit entropy

Categorías

Más información sobre Image Processing and Computer Vision en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by