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

Emitter bias, Emitter bias: Figure: Emitter bias While a ...

Emitter bias: Figure: Emitter bias While a split supply (dual power supply) is accessible, this biasing circuit is the very much effective, and gives zero bias vo

Determine the maximum value of the voltage induced in coil, Q. A 10-turn sq...

Q. A 10-turn square coil of side 200 mm is mounted on a cylinder 200 mm in diameter. If the cylinder rotates at 1800 r/min in a uniform 1.2-T field, determine the maximum value of

power sector economics & planning, 1.  The rejection criteria of an invest...

1.  The rejection criteria of an investment project, as evaluated from the NPV method is that NPV should be equal to zero. 2.  Technical feasibility is the only criteria to dete

Power distribution, Power Distribution You will study about the legisl...

Power Distribution You will study about the legislative measures that have been taken by our government to address these challenges. In particular, we discuss the Energy Conse

Poly phase induction motor, Using the approximate equivalent circuit in whi...

Using the approximate equivalent circuit in which the shunt branch is moved to the stator in put terminals, show that the rotor current, torque, and electro magnetic power of a pol

Energy gap, Energy Gap Differentiating feature between the metals, ...

Energy Gap Differentiating feature between the metals, insulators, and semiconductors. Ascertains the absorption or emission spectra, the leakage current, and the intrin

Name all the switching schemes used in a digital exchange, Q. Name all the ...

Q. Name all the switching schemes used in a digital exchange. How call processing occur? Ans: The basic types of switching systems used are: 1.  Stronger Switching System

Calculate the unknown thermal conductivity, Derive the mathematical 3-D hea...

Derive the mathematical 3-D heat conduction equation in Spherical Coordinates? A furnace is made up of three layers of thicknesses 250 mm, 150 mm nad 100 mm with thermal conduct

Reflection and retraction in cables and their calculations, How do I calcul...

How do I calculate the line-cable and cable-line values of reflection and refraction coordinates?

Diode schematic symbol, Diode Schematic Symbol The diode in figure is ...

Diode Schematic Symbol The diode in figure is a unidirectional device. Electron current just only flows in one direction, against the arrow, corresponding to forward bias. 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