Approximate Entropy Calculation for an Image

Hi,
How can we compute the APPROXIMATE ENTROPY of an IMAGE.
Please help,
Thanks

 採用された回答

Thorsten
Thorsten 2015 年 6 月 29 日

0 投票

function E = entropy(I)
% Assume I in the range 0..1
p = hist(I(:), linspace(0,1,256)); % create histogram
p(p==0) = []; % remove zero entries that would cause log2 to return NaN
p = p/numel(I); % normalize histogram to unity
E = -sum(p.*log2(p)); % entropy definition

3 件のコメント

shishir
shishir 2015 年 6 月 29 日
This is for computing the ENTROPY. But I want to compute SAMPLE ENTROPY and APPROXIMATE ENTROPY of an IMAGE.
So if you give me something regarding the described entropies, it would be great help.
Thank You Sir,
Thorsten
Thorsten 2015 年 6 月 29 日
Marcus Tan
Marcus Tan 2021 年 7 月 25 日
Can someone guide me also how to calculate the approximate entropy of an Spectrogram image transformed from EEG signal? I have seen number of file exchange but none of them work.

サインインしてコメントする。

その他の回答 (1 件)

Maria da Luz
Maria da Luz 2024 年 4 月 29 日

0 投票

Como recortar a região de interrese dessa imagem que neste caso é a mandibula.só a parte branca

カテゴリ

質問済み:

2015 年 6 月 29 日

回答済み:

2024 年 4 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by