how to find pixel value of an image

조회 수: 2 (최근 30일)
vasantha malairamar
vasantha malairamar 2017년 3월 27일
답변: Aaron Charles Alday 2020년 2월 16일
imread('a.jpg');
[r c]=size(A);pixel
  댓글 수: 1
Adam
Adam 2017년 3월 27일
Your question is not clear, mostly because you just wrote 2 lines of code without any question apart from the very vague title.

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

답변 (4개)

aaru sri
aaru sri 2019년 2월 7일
how to make a one pixel change in it

KSSV
KSSV 2017년 3월 27일
% Gray Image
I = imread('your image') ;
level = I(r, c);
% RGB image
I = imread('your image') ;
rgb = impixel(I,r,c) ;
  댓글 수: 2
vasantha malairamar
vasantha malairamar 2017년 3월 27일
Undefined function or variable 'c'.
Error in secure>pushbutton2_Callback (line 306) rg = impixel(I,r,c) ;
KSSV
KSSV 2017년 3월 27일
r,c should be indices which stand off row and column positions.

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


Sushil  Sharma
Sushil Sharma 2019년 11월 7일
I just update your answer, if you need to know the rows and columns in your image:
Let's say you have an image which is
I = imread('abc.png') % your image
rgb = impixel(I,rows, columns) %impixel function
rgb = 107 107 107 % you will get the pixel value

Aaron Charles Alday
Aaron Charles Alday 2020년 2월 16일
Hi! May I ask how to determine the pixel value of a grayscale picture?

태그

Community Treasure Hunt

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

Start Hunting!

Translated by