Borrar filtros
Borrar filtros

How can I compute the absolute mean brightness error AMBE in Matlab?

7 visualizaciones (últimos 30 días)
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??

Respuestas (1)

Fahmi Akmal Dzulkifli
Fahmi Akmal Dzulkifli el 27 de Feb. de 2020
Editada: Fahmi Akmal Dzulkifli el 27 de Feb. de 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

Categorías

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

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by