Histogram Eşitleme
/***************************/
h=imread('resim_adı');
s=rgb2gray(h);
q=histe(s);
subplot(1,3,1) imhiste(s);//Histogram
subplot(1,3,3) subimage(q);//Histogram Eşitleme
/***************************/
/*Herhangi bir görüntüyü negatif yapma. Bunu imcomplement fonksiyonu ile yapıyoruz*/
I=imread('resim_adi');
a=imcomplement(I);
imshow(I) figüre, imshow(a);
/*****************************/
/* Verilen açı kadar resim dönderme*/
f=imread('resim_adi');
dondur=imrotate(f,185,'bilinear');
imshow(dondur);
/**************************/
h=imread('resim_adı');
s=rgb2gray(h);
q=histe(s);
subplot(1,3,1) imhiste(s);//Histogram
subplot(1,3,3) subimage(q);//Histogram Eşitleme
/***************************/
/*Herhangi bir görüntüyü negatif yapma. Bunu imcomplement fonksiyonu ile yapıyoruz*/
I=imread('resim_adi');
a=imcomplement(I);
imshow(I) figüre, imshow(a);
/*****************************/
/* Verilen açı kadar resim dönderme*/
f=imread('resim_adi');
dondur=imrotate(f,185,'bilinear');
imshow(dondur);
/**************************/
Yorumlar