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

What is dual tone multi frequency, Q What is Dual Tone Multi Frequency? ...

Q What is Dual Tone Multi Frequency? Dual Tone Multi Frequency (DTMF) was first introduced in 1963 with 10 buttons in Western Electric 1500 -type telephones. DTMF was originall

Electric machinery fundamentals, Ask qu1. If the resistor Radj is adjusted ...

Ask qu1. If the resistor Radj is adjusted to 175O what is the rotational speed of the motor at no-load conditions? 2. Assuming no armature reaction, what is the speed of the motor

Find the current in resistance, Q. Obtain the Thévenin and Norton equivalen...

Q. Obtain the Thévenin and Norton equivalent circuits for the portion of the circuit to the left of terminals a-b in Figure, and find the current in the 200- resistance.

Which are the three basic configurations of fet amplifier, Q. Which are the...

Q. Which are the three basic configurations of FET amplifiers? The three basic configurations of FET amplifiers are · Common source(CS)- It is most frequently used as it pro

Explain antiferromagnetism magnetic materials, Explain Antiferromagnetism m...

Explain Antiferromagnetism magnetic materials. Antiferromagnetism : Magnetic dipoles are aligned anti-parallel to each other. Antiferromagnetic type materials are not as famil

Tvm, Why is the signal first attenuated and then amplified?

Why is the signal first attenuated and then amplified?

Explain telephone hand set and it’s working, Q. Explain Telephone hand set ...

Q. Explain Telephone hand set and it’s working ? A standard telephone set is comprised of a transmitter, a receiver and electrical network for equalization, associated circ

Determine the resonant frequency and bandwidth, Q. A gyrator is sometimes u...

Q. A gyrator is sometimes used in integrated circuits to simulate inductances. Consider the circuit of Figure consisting of a gyrator. (a) Show that the impedance as seen to the

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