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

Basic operation of p-channel enhancement mosfet, Q. Basic Operation of  P-...

Q. Basic Operation of  P-channel enhancement MOSFET? In the fabrication of a p-channel depletion field-effect transistor, the gate is insulated from the channel. Therefore, the

Certification of energy managers, Certification of Energy Managers Ce...

Certification of Energy Managers Certification of Energy Managers and Accreditation of Energy Auditing Firms One of the important provisions in the Act is to create a cad

Explain ferroelectricity, Explain ferroelectricity. Ferroelectricity: ...

Explain ferroelectricity. Ferroelectricity: - Materials of ferroelectric have a high dielectric constant that is non-linear that is, this depends to a considerable extent on t

Covalent bonding, Covalent Bonding Exhibited through the diamond la...

Covalent Bonding Exhibited through the diamond lattice semiconductors. Each atom enclosed by four nearest neighbors, each comprising four electrons in the outermost orbi

Describe the automated flow lines, Describe the Automated flow lines with s...

Describe the Automated flow lines with suitable diagrams? Also provide the Reason for Automating? Discuss the Work part Transfer Mechanisms in detail? Discuss the requirement fo

Find the induced emf across the coil, Q. A coil is formed by connecting 15 ...

Q. A coil is formed by connecting 15 conducting loops, or turns, in series. Each loop has length l = 2.5 m and width w = 10 cm. The 15-turn coil is rotated at a constant speed of 3

Explain this phenomenon, (a) Design a 2 nd  order Sallen and Key low pass ...

(a) Design a 2 nd  order Sallen and Key low pass active filter with the following characteristics: Nominal Cut-off Frequency: 1.6 kHz Variable Gain: 0 to 7.5 dB You may a

Antenna fundamentals, Antenna Fundamentals We shall discuss here only t...

Antenna Fundamentals We shall discuss here only the fundamental concepts needed to understand the role of an antenna as a power-coupling element of a system. Figure illustrates

Sketch the idealized bode plot, Q. Sketch the idealized (asymptotic) Bode p...

Q. Sketch the idealized (asymptotic) Bode plot for the transfer function Find the angular frequency at which H(ω) is 0dB and the angular frequency at which θ(ω) = -60°.

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