extraction of pixel values of image
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello
i want to extract the pixels values of image attached and store it in array or matrix?
댓글 수: 3
답변 (1개)
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
2020년 1월 24일
read is a built-in function. You shouldn't use built-in function names as variables -- I think you meant red.
참고 항목
카테고리
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!