Image Processing B&W Picture Calculate Color Percentage

8 visualizaciones (últimos 30 días)
Andar
Andar el 9 de Sept. de 2019
Editada: Shunichi Kusano el 9 de Sept. de 2019
I'm trying to do image processing on a B&W image.
I want to select a certain grayscale color and find out the perfectage of pixels that are lighter than that value.
Any starting points or code to help would be greatly appreciated. Thanks!

Respuestas (1)

Shunichi Kusano
Shunichi Kusano el 9 de Sept. de 2019
Editada: Shunichi Kusano el 9 de Sept. de 2019
Hi Andar, this is the sample code.
img = imread('cameraman.tif');
imshow(img);
th = 100; % threshold to select brighter pixels
totalPixelNumber = numel(img);
%% method 1: making binary image
bw1 = img > th;
imshow(bw1)
nnz(bw1) / totalPixelNumber * 100% percentage
%% method2: finding brighter pixels directly
pixels = find(img > th);
length(pixels) / totalPixelNumber * 100% percentage
hope this helps.

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by