how to get the complete pixel value of an image
1 回表示 (過去 30 日間)
古いコメントを表示
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
回答 (2 件)
Walter Roberson
2013 年 9 月 16 日
imread() the image file. The result will be a matrix with the information.
0 件のコメント
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!