PENGOLAHAN CITRA DIGITAL III
Program Melihat Warna RGB
Rosmawi
y=imread('c:\image\rosmawi.png');
x=imread('c:\image\rosmawi.png');
x(:,:,1)=2 * x(:,:,1);
subplot(1,2,1);imshow(y)
subplot(1,2,2);imshow(x)
y=imread('c:\image\bunga.tif');
x=imread('c:\image\bunga.tif');
x(:,:,2)=2 * x(:,:,2);
subplot(1,2,1);imshow(y)
subplot(1,2,2);imshow(x)
y=imread('c:\image\bunga.tif');
x=imread('c:\image\bunga.tif');
x(:,:,3)=2 * x(:,:,3);
subplot(1,2,1);imshow(y)
subplot(1,2,2);imshow(x)
selmat mencoba dengan aplikasi
OCTAVE
SELAMAT MENOBA
BalasHapus