How do i determine the pixel coordinates of an image using RGB values?

조회 수: 1 (최근 30일)
Varun  Subramaniam
Varun Subramaniam 2019년 12월 10일
답변: JESUS DAVID ARIZA ROYETH 2019년 12월 10일
For example: i'd like to get the coordinates of the pixels with R values from 230 to 250.

답변 (1개)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 12월 10일
image=imread('peppers.png');
R=image(:,:,1);%red chanel
[x,y]=find(and(R>=230,R<=250));%here coordinates

카테고리

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