How Can we extract the green channel matrix alone from colour image? Is there any formula apart from matlab extraction
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How Can we extract the green channel matrix alone from colour image
0 Kommentare
Antworten (2)
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.
0 Kommentare
Walter Roberson
am 4 Mär. 2016
[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.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!