How Can we extract the green channel matrix alone from colour image? Is there any formula apart from matlab extraction

12 次查看(过去 30 天)
How Can we extract the green channel matrix alone from colour image

回答(2 个)

Guillaume
Guillaume 2016-3-4
greenchannel = rgbimage(:, :, 2);
The first page of an rgb image is the red channel, the 2nd is the green channel and the 3rd is the blue channel, hence the name rgb.

Walter Roberson
Walter Roberson 2016-3-4
If you need to do it by mathematical formula, then you can use a Projection Matrix
[r, c, p] = size(YourRGBArray);
GreenPlane = reshape(reshape(YourRGBArray,[], 3) * [0; 1; 0], r, c);
I do not recommend this for practical use; matrix indexing is faster and clearer.

类别

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