You are on page 1of 3

LAB#4:

Histogram Processing On gray scale and Binary Images

Imhist(a,10);
>> histeq(a);

>> imshow(a);

>> j=histeq(a,5);

>> imshow(j);

j=adapthisteq(a);

>> imshow(j);
>> A=adapthisteq(I,'clipLimit',0.02);

>> imshow(A);

>> A=adapthisteq(I,'clipLimit',0.9);

>> imshow(A);

>> A=adapthisteq(I,'clipLimit',0.5,'Distribution','rayleigh');

You might also like