how to extract the green channel of a rgb image

5 次查看(过去 30 天)
i want to extract the green channel from rgb image

回答(1 个)

Walter Roberson
Walter Roberson 2020-3-6
G = YourMatrix(:, :, 3);
  1 个评论
DGM
DGM 2023-12-6
G = YourMatrix(:, :, 2); % channels are ordered R,G,B
... or to just get all three,
[R G B] = imsplit(YourMatrix);

请先登录,再进行评论。

类别

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