Contrast Stretching of an image Add Comment Edit x=input( 'Enter factor value=' ); a=imread( 'cameraman.tif' ); [m,n]=size(a); for i=1:m for j=1:n... Read More
Log transform of an image Add Comment Edit A=input( 'Enter the value of constant A=' ); a=imread( 'cameraman.tif' ); [m,n]=size(a); b=im2double(a); ... Read More
[Image Processing] Create A Negative Image From A Grayscale Image Add Comment Edit imc=imread( 'cameraman.tif' ); [m,n]=size(imc); for i=1:m for j=1:n s(i,j)=256... Read More