How can I compute the absolute mean brightness error AMBE in Matlab?
7 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Fahmi Akmal Dzulkifli
2020-2-27
编辑:Fahmi Akmal Dzulkifli
2020-2-27
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 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!