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

process of damping, Describe the process of DAMPING. You explanation shoul...

Describe the process of DAMPING. You explanation should include an example of each of the following:- Over-damping, Under-damping, Zero-damping, Critically da

Single phase full wave mid point type rectifier , Single Phase Full Wave M...

Single Phase Full Wave Mid Point Type  Rectifier A single  phase full wave  mid point  type controlled  rectifier consists  two  thyristors  one centre tapped  transformer  an

Actual loading method, Actual Loading Method This method is employed c...

Actual Loading Method This method is employed commonly for testing of single phase meters within laboratory. On a meter testing bench that is equipped along with several taps

Bureau of energy efficiency, Bureau of Energy Efficiency Setting up o...

Bureau of Energy Efficiency Setting up of the Bureau of Energy Efficiency The Bureau of Energy Efficiency has been established with effect from 1st March, 2002 under the

Matlab program for niquit, how to write a matlab program for TITO system to...

how to write a matlab program for TITO system to draw nyquit plots.

Literature review on co2 positive displacement pump, Ask question introduc...

Ask question introduction of co2 single stroke positive displacement pump using cam and follow system to transfer co2 into small cylinders

Hot line maintenance, how do you define the expertise for this hot line mai...

how do you define the expertise for this hot line maintenance?

Apparatus for BCD to excess 3, Apparatus for BCD to excess 3 convertor usin...

Apparatus for BCD to excess 3 convertor using nand and nor gates

Write a short note on rs-232-c, Q. Write a short note on RS-232-C. Ans...

Q. Write a short note on RS-232-C. Ans: RS-232 standard is a collection of connection standards between different pieces of equipment. EIA RS-232 serial communication standard

Find the transmitters unmodulated carrier power, At the transmitter in a st...

At the transmitter in a standard AM system, P f = 50 W. In the receiver (S 0 /N 0 ) AM = 250 when (S i /N i ) AM = 3000. Find the transmitter's unmodulated carrier power and t

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