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

Compute the primary current and the braking torque, A three-phase, wye-conn...

A three-phase, wye-connected, 400-V, four-pole, 60-Hz induction motor has primary leakage mpedance of 1 + j2  and secondary leakage mpedance referred to the primary at standstill

CRO probe, #question. passive probe .

#question. passive probe .

Explain the configuration of a step-by-step switching system, With neat dia...

With neat diagrams explain the configuration of a step-by-step switching system. Schematic diagram for such an exchange is given in Figure.  Every subscriber is connected to a

Describe abrasive grit size, Describe the effect of following parameters. ...

Describe the effect of following parameters. Abrasive grit size. Amplitude and frequency of vibration.

Define shunt capacitors and reactors, Define Shunt Capacitors and Reactors ...

Define Shunt Capacitors and Reactors Shunt capacitors absorb leading VArs (i.e. they are used to supply lagging VArs) whereas reactors are used to absorbs lagging VArs. Capacit

Express the storedmagnetic energy, A relay is essentially an electromechani...

A relay is essentially an electromechanical switch that opens and closes electrical contacts. A simplified relay is represented in Figure. It is required to keep the fenomagnetic p

Induction motor, A 100hp,460v,8pole,60hz,star connected 3phase IM runs at 8...

A 100hp,460v,8pole,60hz,star connected 3phase IM runs at 891rpm under full load what is the speed of the rotor field relative to i)rotor structure ii)stator rotating field

Dc motor - motor control , DC Motor The motor  which  require dc  supp...

DC Motor The motor  which  require dc  supply to drive them are called DC motors DC motor  consist  two types  of windings. a. Fields Winding b. Armature Winding

Engineering drawing, connect two given points A and B by a parabolic curve ...

connect two given points A and B by a parabolic curve when OA=60mm,OB=80mm and angle AOB=110 degree

Find the first-null bandwidth, An audiomessage is band-limited to 15 kHz, s...

An audiomessage is band-limited to 15 kHz, sampled at twice the Nyquist rate, and encoded by a 12-bit natural binary code that corresponds to Lb = 212 = 4096 levels, all of which s

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