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

Adi add immediate instruction , ADI Add Immediate  Instruction The  b...

ADI Add Immediate  Instruction The  bit  data specified in the instruction  is  directly  added with  contents of accumulator and result  of operation is stored  in the  accum

Design the synchronous sequential circuit for state diagram, Design the Syn...

Design the Synchronous Sequential Circuit for State Diagram Illustration: - We wish to design the synchronous sequential circuit whose state diagram The kind of flip-f

Self-inductance and the induced e.m.f, Self-inductance and the induced e.m....

Self-inductance and the induced e.m.f Inductance is the name given to the property of a circuit whereby there is an e.m.f induced into the circuit by alter of flux linkages pro

Describe the automated flow lines, Describe the Automated flow lines with s...

Describe the Automated flow lines with suitable diagrams? Also provide the Reason for Automating? Discuss the Work part Transfer Mechanisms in detail? Discuss the requirement fo

EDC, why biasing of bjt transistor is essential?

why biasing of bjt transistor is essential?

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 .

A battery consists of five cells in series, A battery having of five cells ...

A battery having of five cells in series. Each cell is 2.5V and internal resistance is 0.05 Ω. A battery is linked to the load resistance of 15Ω. Verify: i.  Total e.m.f

Knowledge of science and engineering fundamentals, Knowledge of science and...

Knowledge of science and engineering fundamentals Knowledge of basic science and engineering fundamentals is necessary for engineers to develop solution to any complex problem

Charge and electric force, Charge and Electric Force The proton has a c...

Charge and Electric Force The proton has a charge of +1.602 10 -19 coulombs (C), while the electron has a charge of -1.602 × 10 -19 C. The neutron has zero charge. Electric c

Determine the transformer winding currents, Q. Three single-phase 100-kVA, ...

Q. Three single-phase 100-kVA, 2400:240-V, 60-Hz transformers (each ofwhich has an equivalent series impedance of 0.045+j0.16 referred to its low-voltage side) are connected to fo

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