Image Processing B&W Picture Calculate Color Percentage

7 vues (au cours des 30 derniers jours)
Andar
Andar le 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!

Réponses (1)

Shunichi Kusano
Shunichi Kusano le 9 Sep 2019
Modifié(e) : Shunichi Kusano le 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.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by