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

Explain global positioning systems, Q. Explain Global Positioning Systems? ...

Q. Explain Global Positioning Systems? Modern communication systems abound in practice: cellular phones, computer networks, television satellites, and optical links for telepho

Grade of service in loss systems, Q. Grade of Service In loss systems? ...

Q. Grade of Service In loss systems? Grade of Service : In loss systems, traffic carried by the network is normally lower than actual traffic offered to the network by subscri

Pneumatics, Design and draw a circuit using the cascade system to operate t...

Design and draw a circuit using the cascade system to operate two cylinders (A and B) which, on the operation of a start valve, produces the sequence A – B + B – A+. The cylinders

Calculate the voltage, Qestions: a)  Draw the approximate equivalent ci...

Qestions: a)  Draw the approximate equivalent circuit for a single phase power transformer. Identify all circuit elements and briefly explain their physical relevance. b)  S

Mode 1 - boost converter, Mode 1 In this mode  transistor Q gets turne...

Mode 1 In this mode  transistor Q gets turned on by the positive output  of the PWM. After  that current  flows  through  inductor L  transistor Q then back  to supply  in thi

Triac, what is the daily life work of triac

what is the daily life work of triac

Event triggering, what is event triggering related to digital storage oscil...

what is event triggering related to digital storage oscilloscope?

.#title.Simulation on Half wave rectifier using PSpice, How to plot output ...

How to plot output power Vs load resistor graph using PSpice softwaer for half wave rectifier circuit

Use delta-wye transformation for network reduction, Use delta-wye transform...

Use delta-wye transformation for network reduction and determine the current through the 12- resistor in the circuit of Figure(a).

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