extraction of pixel values of image

조회 수: 4 (최근 30일)
Smruti Khobragade
Smruti Khobragade 2020년 1월 24일
댓글: Smruti Khobragade 2020년 1월 29일
Hello
i want to extract the pixels values of image attached and store it in array or matrix?
  댓글 수: 3
Guillaume
Guillaume 2020년 1월 24일
편집: Guillaume 2020년 1월 24일
The question is not clear. In matlab, an image is stored as a matrix of pixel values. So if you've got the image loaded in matlab, you already have what you want.
Smruti Khobragade
Smruti Khobragade 2020년 1월 29일
i wanted to get the highest pixel values of black color to compare it with anothe images highest black color pixel values

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

답변 (1개)

Jose Jeremias Caballero
Jose Jeremias Caballero 2020년 1월 24일
편집: Jose Jeremias Caballero 2020년 1월 24일
>> a=imread('image.jpeg');
>> read1=a(:,:,1);
>> green1=a(:,:,2);
>> blue1=a(:,:,3);
  댓글 수: 3
Image Analyst
Image Analyst 2020년 1월 24일
read is a built-in function. You shouldn't use built-in function names as variables -- I think you meant red.
Smruti Khobragade
Smruti Khobragade 2020년 1월 29일
hello,image analyst
sir can u help me in another question i posted
Thankyou .

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

카테고리

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