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

Determine sequence of modulation frequencies, The generator of AM EMFs cons...

The generator of AM EMFs consists of a battery-driven radiofrequency (RF) EMF generator connected to a 1.5 m long 50 ? coaxial cable, to the other end of which a stainless-steel sp

Explain biased and double clipper circuits, Q. Explain biased and double c...

Q. Explain biased and double clipper circuits.   Clipper can be either forward biased or reverse biased. If a battery is connected in series with the diode in a positi

Find the rotor current, A 2200-V, 1000-hp, three-phase, 60-Hz, 16-pole, wye...

A 2200-V, 1000-hp, three-phase, 60-Hz, 16-pole, wye-connected, wound-rotor induction motor is connected to a 2200-V, three-phase, 60-Hz bus that is supplied by synchronous generato

Working of field-effect transistors, Q. Working of Field-effect transistors...

Q. Working of Field-effect transistors? Field-effect transistors (FETs) may be classified as JFETs (junction field-effect transistors), depletion MOSFETs (metal-oxide-semicondu

Conditions in which rc circuit behaves as differentiator, Q. Explain the co...

Q. Explain the conditions under which an RC circuit behaves as Differentiator Differentiator is a circuit in which the output voltage is directly proportional to the derivative

What is the use of modem control unit in 8251, What is the use of modem con...

What is the use of modem control unit in 8251? The modem control unit handles the modem handshake signals to coordinate the communication among the modem and the USART.

Obtain a bode magnitude plot for the transfer function, Q. A bandpass filte...

Q. A bandpass filter circuit is shown in Figure. Develop a PSpice program and use PROBE to obtain a Bode magnitude plot for the transfer function ¯H(f) = ¯Vout/ ¯Vin for frequency

Various steps in designing the counter, Design a mod-15 counter. Explain th...

Design a mod-15 counter. Explain the various steps in designing the counter

Describe abrasive grit size, Describe the effect of following parameters. ...

Describe the effect of following parameters. Abrasive grit size. Amplitude and frequency of vibration.

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