Binary Mask and gray scale image
古いコメントを表示
I have a binary mask and i want to extract the value of a grayscale image in a other variable. How can i do this ?
(if the pixel (159,300) in the mask = 1, and the pixel(159,300)in the grayscale image = 67, return 67 in the variable).
Thanks for your help.
Stéphan
回答 (1 件)
Sugar Daddy
2020 年 7 月 15 日
I = imread('circle.jpg');
I = rgb2gray(I);
M = I<125;
figure,subplot(121),imshow(I)
subplot(122),imshow(M)

To access Image index where mask value is 1, simply apply Logical Indexing
L = I(M);
figure,plot(L)

1 件のコメント
abrassart stephan
2020 年 7 月 15 日
編集済み: Walter Roberson
2020 年 7 月 16 日
カテゴリ
ヘルプ センター および File Exchange で Graph and Network Algorithms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!