How to extract nearest pixel value [roi] by selection of reference pixel on a image?
古いコメントを表示
How to extract nearest pixel value [roi] by selection of reference pixel on a image?
回答 (1 件)
Swarooph
2017 年 8 月 2 日
Example:
img = imread('peppers.png');
figure;imshow(img)
h = impoint(gca,[]);
position = wait(h); %Double click on a pixel in the figure window
pixelLoc = round(position) %Get nearest pixel location
img(pixelLoc(2),pixelLoc(1),1:3) %Use pixel location to index into RGB image
Result:
pixelVal =
(:,:,1) =
158
(:,:,2) =
50
(:,:,3) =
56
2 件のコメント
Selva Karna
2017 年 8 月 3 日
Binu
2017 年 8 月 3 日
Swarooph's answer gives you both the pixel position(x,y) and pixel value. If you are looking for a ROI and not just a pixel, try imrect or imellipse. They both use the imroi class and functions are similar to impoint.
カテゴリ
ヘルプ センター および File Exchange で Build Interactive Tools についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!