Effacer les filtres
Effacer les filtres

how to find the pixel value of an image ?

1 vue (au cours des 30 derniers jours)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran le 24 Août 2012
Commenté : Image Analyst le 8 Oct 2017
How to find the following
2) pixel within 5 units (out of 255) of pixel ; 3) pixel within 10 units (out of 255) of pixel ; 4) pixel within 25 units (out of 255) of pixel ; 5) pixel within 50 units (out of 255) of pixel .
I used the code a=imread('cameraman.tif');[r c]=size(a). Then accessed each and every row and column values. Is that right.
  1 commentaire
Image Analyst
Image Analyst le 24 Août 2012
No, that's not right.

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 24 Août 2012
% Specify the pixel value that you want to find intensities around.
targetValue = 173; % Or whatever you want.
% Specify how much intensity around that value do you want to find.
tolerance = 95; % or 10 or 25 or 50 or whatever.
% Get the low and high of that intensity range.
lowValue = uint8(targetValue - tolerance);
highValue = uint8(targetValue + tolerance);
% Get a binary image (like a map) of where are the pixels in range.
pixelsInRange = (grayImage >= lowValue) & (grayImage <= highValue);
  2 commentaires
sathish kumar rb
sathish kumar rb le 8 Oct 2017
Modifié(e) : Image Analyst le 8 Oct 2017
Where do I read the image in above code?
Is grayImage the image?
Image Analyst
Image Analyst le 8 Oct 2017
grayImage is the image. Usually you get it from reading in some image file with imread():
grayImage = imread(fullFileName);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Segmentation and Analysis 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