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

Control, Ask The goal of this project is to model a system and to design a ...

Ask The goal of this project is to model a system and to design a controller for the system so that the closed-loop system performs satisfactorily. We want to accurately positio

Temperature controller, This assignment concerns the planning of a software...

This assignment concerns the planning of a software development. You are required to plan the software development for a typical microprocessor based, 4-channel temperature control

Explain about transistor amplifiers, Q. Explain about Transistor Amplifiers...

Q. Explain about Transistor Amplifiers? Amplifiers are circuits that produce an output signal which is larger than, but proportional to, an input signal. The input and output s

Develop and execute a program to analyze the circuit, Develop and execute a...

Develop and execute a program to analyze the circuit shown in Figure (a), and use PROBE for plotting v C (t).

Show typical electric power distribution system, Q. Show Typical electric p...

Q. Show Typical electric power distribution system? In central business districts of large urban areas, the primary distribution circuits consist of underground cables which ar

Ac motors, AC Motors DC motors that have their magnetic fields produce...

AC Motors DC motors that have their magnetic fields produced by coils as described earlier can, in principle,  be powered from AC as well, since if the applied voltage reverse

Rms values, 1. Derive the necessary formula/method to determine the effect...

1. Derive the necessary formula/method to determine the effective value or RMS of a triangular wave. Use either a similar method to the class example of the RMS determination

Actual voltage reading in decimal, Prepare the assembly code to make a Digi...

Prepare the assembly code to make a Digital Volt Meter that shows the message and the correct voltage on the LCD. Once you managed to display the hex value for the conversion you w

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