Sie sind auf Seite 1von 1

%mencoba program citra digital

clear all;
close all;
clc;
im=imread('pinguin.jpg');
subplot(221);imshow(im);
subplot(222);imshow(im(:,end:-1:1,:));
subplot(223);imshow(im(end:-1:1,:,:));
subplot(224);imshow(im(end:-1:1,end:-1:1,:));

Das könnte Ihnen auch gefallen