Image Processing B&W Picture Calculate Color Percentage

8 Ansichten (letzte 30 Tage)
Andar
Andar am 9 Sep. 2019
Bearbeitet: Shunichi Kusano am 9 Sep. 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!

Antworten (1)

Shunichi Kusano
Shunichi Kusano am 9 Sep. 2019
Bearbeitet: Shunichi Kusano am 9 Sep. 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.

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by