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

Four quadrant chopper or class e chopper , Four  Quadrant Chopper or Class...

Four  Quadrant Chopper or Class E chopper                                                                    Figure class E chopper circuit  Mode I When

Application of plc - stepper motor , Application of PLC a. A PLC  is us...

Application of PLC a. A PLC  is used to start  and stop  the motors  of a segmented conveyor beli. This  allows  only belt section carrying  a copper plate to move. b.In aut

Seal management - meter field testing, Seal Management - Meter Field Testin...

Seal Management - Meter Field Testing For an effective seal management system it is necessary that: i) The  seals  used  are  tamper  proof,  that is they  cannot  be  remo

Describe schmitt trigger, a) Describe Schmitt trigger with the help of tran...

a) Describe Schmitt trigger with the help of transfer characteristics. b) Also get the expression of hysteresis voltage VH and output waveform for sinusoidal input signal

Demultiplexer, How can i build 1-16 DEMUX using 1-8 DEMUX with logic gates ...

How can i build 1-16 DEMUX using 1-8 DEMUX with logic gates only ?

Explain the asynchronous decade counter, Explain the Asynchronous Decade Co...

Explain the Asynchronous Decade Counter? The binary counters earlier introduced have two to the power n states. But the counters with states less than this number are as well

Describe CCIT hierarchical structure, Q. Describe CCITT  hierarchical  stru...

Q. Describe CCITT  hierarchical  structure  of  switching  and  routing  using  block schematic.  Ans: Hierarchical network are capable of handling heavy traffic where req

Compute the capacitance, Figure shows the cross-section of an electrostatic...

Figure shows the cross-section of an electrostatic problem with translational symmetry: a rectangular coaxial cable. The inner conductor is held at 10 volts and the outer conductor

Permanent magnets, Materials with 'hard' magnetic B/H characteristics often...

Materials with 'hard' magnetic B/H characteristics often show a strong residual magnetism. This makes them suitable for making permanent magnets. If the ring material were magnetis

Write a short note on heat sink, Q. Write a short note on heat sink For...

Q. Write a short note on heat sink For transistors handling small signals ,the power dissipated at the collector is small.Such transistors have little chances of thermal runawa

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