Effacer les filtres
Effacer les filtres

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

12 vues (au cours des 30 derniers jours)
How Can we extract the green channel matrix alone from colour image

Réponses (2)

Guillaume
Guillaume le 4 Mar 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 le 4 Mar 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.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by