İ need to switch red and blue colors in RGB picture. How i can do that? my version of matlab is R2013a
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
İ need to switch red and blue colors in RGB picture. How i can do that? my version of matlab is R2013a
0 commentaires
Réponses (1)
Thomas
le 3 Mar 2014
Modifié(e) : Thomas
le 3 Mar 2014
Similar question:
or
ii=imread('1.jpg'); % load original
figure()
imshow(ii) % show orignal
newii(:,:,1)=ii(:,:,2);
newii(:,:,2)=ii(:,:,1);
newii(:,:,3)=ii(:,:,3);
figure()
imshow(newii) % show new
1 commentaire
Scott Staniewicz
le 16 Jan 2018
Doesn't this swap the Red with the Green (if it's RGB)? To swap red/blue, they would want
newii(:,:,1)=ii(:,:,3);
newii(:,:,2)=ii(:,:,2);
newii(:,:,3)=ii(:,:,1);
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!