Image enhancement, Electrical Engineering

Assignment Help:

Explain briefly the operation, draw the functions, formulas and observations.

(i) Write an m-file "imnorm.m" which takes an image finds min and max values and uses them to normalize the image.

What kind of image enhancement operation is performed within that function? Draw an illustration.

Write an m-file for each of the following operations:
(ii) compute negative image (neg.m)

(iii) apply power law transform with a superscript 0.2 (powlaw.m)

(iv) perform histogram equalization of an image (hist_eq.m)
           it should display 5 figures:
                        the input image and its histogram
                        the integral histogram
                        the output image and its histogram
            the following function will give you a histogram of pixel values between 0 and 255
            h=sum(hist(im,[0:255])'); %help hist; help sum;
      stem(h,'.k');

function imh=hist_eq(im);
figure(1);
imshow(?);

h=?
figure(2)
stem(?);

% compute integral image
hint=h;
for i=2:256           
hint(i)=hint(i-1)+h(i);
end

hint=255*hint/hint(end); %normalize the integral histogram to have values between 0 and 255
figure(3)
stem(?);

imh=hint(im);%modify pixel intensities
imh=uint8(imh);%normalize to byte values
figure(4)
imshow(?)

h=?
figure(5)
stem(?);

What histogram equalization does? What should be the shape of the output histogram? Why it isn't?


Related Discussions:- Image enhancement

Half-wave rectifier, Half-wave rectifier: A half-wave rectifier will j...

Half-wave rectifier: A half-wave rectifier will just only give one peak per cycle and for this reason and other reasons is only employed in extremely small power supplies. A f

Find the highest speeds at which linkage would be possible, Q. Two coupled ...

Q. Two coupled synchronous machines are used as a motor-generator set to link a 25-Hz system to a 60-Hz system. Find the three highest speeds at which this linkage would be possibl

Frequency modulation, 1. Frequency Modulation theory and its explanation ...

1. Frequency Modulation theory and its explanation 2. FM transmitter schematic, tests results and measurements 3. Amplifier and Oscillator circuit explanation and calculation

Circuits, Circuits Typical  electronics circuits  are created  out  of...

Circuits Typical  electronics circuits  are created  out  of a basis  set of primitive elements such  as capacitors, voltage sources,  resistors,  transistors and inductors. T

Calculate the value of the wavelength, In an electron microscope, a beam of...

In an electron microscope, a beam of electrons is produced by a device called an electron gun. In the electron gun, electrons are 'boiled off' from a heated filament (which is the

Power supply and clock frequency - pins and signals , Power Supply  and C...

Power Supply  and Clock Frequency there are following  pins  for power  supply  and clock  frequency  signals. V CC + 5 V  power supply. V SS Ground reference X 1

Compute the attenuation, Q. A rectangular air-?lled RG-52/U is made of bras...

Q. A rectangular air-?lled RG-52/U is made of brass (ρ = 3.9 × 10-8 m) and has dimensions a = 22.86 mm and b = 10.16 mm. (a) Determine ¯ Z0(= R0) at the limits of the practica

Vhdl, how to construct universal shift register using D-flipflop and mux??

how to construct universal shift register using D-flipflop and mux??

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd