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

1 次查看(过去 30 天)
For example: i'd like to get the coordinates of the pixels with R values from 230 to 250.

回答(1 个)

JESUS DAVID ARIZA ROYETH
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