Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

clear; clc; close all;

a=imread("fondos-paisajes-naturales-158_large.jpg");
figure(1), subplot(2,3,2)
imshow(a), title('imagen original')

ar=a(:,:,1); %Capa Rojo


ag=a(:,:,2); %Capa Verde
ab=a(:,:,3); %Capa Azul

figure(1), subplot(2,3,4),imshow(ar), title('Plano Rojo')


figure(1), subplot(2,3,5),imshow(ag), title('Plano Verde')
figure(1), subplot(2,3,6),imshow(ab), title('Plano Azul')

You might also like