Question
I want to find the indices (x y coordinate) of pixels that have a specfic RGB values (237,28,36) for example, in an image with the dimension of (16x24x3), and then I want to save these indices into 2D logical matrix.
Related Questions
Expert Answer
Kshitij Singh
PhD Expert
Answered Aug 22, 2026
Something like this
img; % 16x24x3 x = reshape([237,28,36], 1, 1, []); mask = all(img==x, 3)
mask is a 2D logical matrix.
Have a different question? Ask here