Image reading and processing
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Usha Silwal
le 11 Sep 2019
Réponse apportée : Sourav Bairagya
le 16 Sep 2019
How do I generate just the red channel, from the colourful image that I have attached below?
3 commentaires
Réponse acceptée
Sourav Bairagya
le 16 Sep 2019
After reading the image properly, you can separate the channels using this code segment.
a=imread('test.jpg');
a_red=a(:,:,1); %RED channel
a_green=a(:,:,2); %GREEN channel
a_blue=a(:,:,3); %BLUE channel
figure;imshow(a);title('Color Image');
figure;imshow(a_red);title('Red Channel');
figure;imshow(a_green);title('Green Channel');
figure;imshow(a_blue);title('Blue Channel');
Now, you can also save each channel as separate image using ‘imwrite’ function. Hope this will help.
0 commentaires
Plus de réponses (0)
Voir également
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!