Filter löschen
Filter löschen

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

12 Ansichten (letzte 30 Tage)
How Can we extract the green channel matrix alone from colour image

Antworten (2)

Guillaume
Guillaume am 4 Mär. 2016
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 am 4 Mär. 2016
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.

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by