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

Calculate the current flow using thevenin''s theorem, Calculate the curren...

Calculate the current flow in 30Ω resistor for the circuit in figure using Thevenin's Theorem.

Calculate the resistivity of an alloy of copper, The resistivity of pure co...

The resistivity of pure copper is 1.56 micro-ohm -cm.  An alloy of copper contains 1 atomic percent nickel has a resistivity of 2.81 micro-ohm-cm. An alloy of copper containing 3-

Form factor, why voltages are in multiple in 11

why voltages are in multiple in 11

Dc generator, A 20kw 220v shunt generator has armature resistance of 0.07 a...

A 20kw 220v shunt generator has armature resistance of 0.07 and a shunt field resisitance 900 ohm find field loss?

Bad effects of armature reactions, Q.  What is meant by armature reaction....

Q.  What is meant by armature reaction. Explain briefly the bad effects of armature reactions.   Sol. By armature reaction is meant the effect of magnetic field set up

Explain the procedure for design of sequential circuits, Explain the Proced...

Explain the Procedure for design of Sequential Circuits? The design of the synchronous sequential circuit starts from a set of specifications and culminates in a logic diagram

For configurations of the coupled coils obtain the voltage, Q. For the conf...

Q. For the configurations of the coupled coils shown in Figure, obtain the voltage equations for v 1 and v 2 .

Phantom or fictitious loading method, Phantom or Fictitious Loading Method ...

Phantom or Fictitious Loading Method While the capacity of meters under test is extremely high, testing with actual load method would includes a considerable loss of power and

Show proper cash management, Q. Show Proper cash management? Proper cas...

Q. Show Proper cash management? Proper cash management: cash management is a important task of finance management he has to access to various cash needs at the difference time

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