Filter löschen
Filter löschen

How to find the intensity of each pixel of an image?

27 Ansichten (letzte 30 Tage)
shimul
shimul am 6 Sep. 2013
Bearbeitet: Image Analyst am 2 Apr. 2018
Consider an image sample.jpg Now I want to count the number of pixels on that image have intensity value larger than 200(white pixels).
If the image contain such pixels above 75% then I want to reject the image. How can I accomplish this in matlab?
  2 Kommentare
Doug Hull
Doug Hull am 6 Sep. 2013
What format is the image in? RGB or greyscale? If it is just a greyscale image, it is really just a matrix and you can do any calculations on it like you would any matrix in MATLAB.
shimul
shimul am 13 Sep. 2013
Yap I have done this. However thanks

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 6 Sep. 2013
Bearbeitet: Image Analyst am 6 Sep. 2013
If it's a color image, first convert to a gray image
[rows, columns, numberofColorChannels] = size(originalImage);
if numberofColorChannels > 1
grayImage = rgb2gray(originalImage);
else
grayImage = originalImage;
end
otherwise if it's already gray, you don't need to call rgb2gray(). Then threshold
binaryImage = grayImage >= 200;
Then count
numberOfWhitePixels = sum(binaryImage(:));
Note: MATLAB uses the American spelling of gray, not the English spelling of grey.
  14 Kommentare
Image Analyst
Image Analyst am 6 Mai 2016
You should start your own question for this.
sana saleeme
sana saleeme am 6 Mai 2016
will you answer me there?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Upeka Somaratne
Upeka Somaratne am 2 Apr. 2018
How can I get the pixel coordinates of the pixels which have intensity value greater than 200? (in matlab)
  1 Kommentar
shimul
shimul am 2 Apr. 2018
Bearbeitet: Image Analyst am 2 Apr. 2018
[rows, cols] = find(yourImage > 200);
considering the image is grayscale.

Melden Sie sich an, um zu kommentieren.

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