How can I compute the absolute mean brightness error AMBE in Matlab?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
An objective measurement is proposed to rate the performance in preserving the original brightness. It is referred to as absolute mean brightness error (AMBE) and is defined as the absolute difference between the input and the output image’s mean AMBE = absolute( MB(X) − MB(Y) ) . X and Y denotes the input and output image, respectively. and the MB(.) denotes the process of mean brightness. Lower AMBE indicates that the brightness is better preserved. the input is color image, so i know that the absolute difference between input and output will be in grayscale format. and i want to know how to estimate the mean brightness (MB) for each image. does any one know how to do this in Matlab??
0 commentaires
Réponses (1)
Fahmi Akmal Dzulkifli
le 27 Fév 2020
Modifié(e) : Fahmi Akmal Dzulkifli
le 27 Fév 2020
Is this what you are looking for?
A1 = imread(yourimage); % your original image
B = rgb2gray(A1);
A2 = imread(yourimage2); % your enhanced image
B2 = rgb2gray(A2);
Z1 = mean2(B); % Calculate mean of an entire original image
Z2 = mean2(B2); % Calculate mean of an entire output image
AMBE = Z1-Z2; % calculate AMBE
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!