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.
0 件のコメント
回答 (1 件)
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
0 件のコメント
参考
カテゴリ
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!