Calculate entropy of an MR image
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have to calculate entropy of mr image. I used both methods but it gives different ans... Can anyone help??
% Find entropy
E = entropy(realimg(:));
% lg = log2(sum(realimg(:)));
en = -sum(realimg(:).*log2(realimg(:)));
0 commentaires
Réponse acceptée
Image Analyst
le 5 Nov 2018
Simply do
>> edit entropy.m
to discover what their formula is and how it differs from yours. It will be obvious.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!