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

Determine the cross-sectional conducting area, Q MCM is the abbreviation fo...

Q MCM is the abbreviation for 1 kcmil. problem for a de?nition of cmil.) Data for commercial-base aluminum electrical conductors list a 60-Hz resistance of 0.0880 /km at 75°C for

Applications of operational amplifiers, Q. Applications of operational ampl...

Q. Applications of operational amplifiers? An op amp along with a few external components (resistors and capacitors) is capable of performing many different operations-hence th

What is a modem, Q. What is a Modem? Modems are generally used to inter...

Q. What is a Modem? Modems are generally used to interface digital circuits to transmit information on analogue channels such as telephone systems. Modem (from modulator-demodu

Dc charging and discharging circuit, The circuit shown below is a DC chargi...

The circuit shown below is a DC charging and discharging circuit. a.  At t = 0 sec, switch S1 is thrown to position 1 ("pos1"). Write the mathematical expressions for and .

BE, WHICH PROJECT WILL BE BEST THESE DAY

WHICH PROJECT WILL BE BEST THESE DAYS

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

Asic based new product development project, Assume you are working for an S...

Assume you are working for an SME operating in the microelectronics sector. You are required to plan a new product development project. This is an internal project, so it does not

Show npn common emitter amplifier, Q. Show NPN Common Emitter Amplifier? ...

Q. Show NPN Common Emitter Amplifier? The common emitter configuration lends itself to voltage amplification and is the most common configuration for transistor amplifiers.

Explain working of capacitor motors, Q. Explain working of Capacitor motors...

Q. Explain working of Capacitor motors? Capacitor motors have a capacitor in series with the auxiliary winding and come in three varieties: capacitor start, two-value capacitor

Show schematic arrangement of one- dimensional addressing, Q. Show the sche...

Q. Show the schematic arrangement for: (a) one- dimensional addressing, and (b) two-dimensional addressing, if a 32-kbit ROM is used to provide an 8-bit output word.

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