how to get the complete pixel value of an image

조회 수: 3 (최근 30일)
nandish s
nandish s 2012년 2월 24일
i have an image and i need to know the complete pixel value of the image in the perfect order i.e, same as that of image resolution. i'm familiar in using matlab software for signal processing but for image processing i'm a learner please do suggest the entire program and what are the important keywords in image processing how to use them
  댓글 수: 1
Sapam Jaya
Sapam Jaya 2013년 9월 16일
go to workspace ,click the variable of the input

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

답변 (2개)

Walter Roberson
Walter Roberson 2013년 9월 16일
imread() the image file. The result will be a matrix with the information.

Muhammad Ali Qadar
Muhammad Ali Qadar 2013년 9월 16일
I=imread('cameraman.tif');
I1=I(1);% will give you value of first Pixel
% Smilarly you can get information of Remaining Pixels, or you can click on work space and click on the I varirable gives you all matrix
Whos I1
%will give you information about the image you are working on , hope it helps

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by