필터 지우기
필터 지우기

how to find the pixel value of an image ?

조회 수: 1 (최근 30일)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2012년 8월 24일
댓글: Image Analyst 2017년 10월 8일
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개)

Image Analyst
Image Analyst 2012년 8월 24일
% 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
sathish kumar rb
sathish kumar rb 2017년 10월 8일
편집: Image Analyst 2017년 10월 8일
Where do I read the image in above code?
Is grayImage the image?
Image Analyst
Image Analyst 2017년 10월 8일
grayImage is the image. Usually you get it from reading in some image file with imread():
grayImage = imread(fullFileName);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by