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

Sparking with electrical equipment, Sparking : In ordinary domestic situat...

Sparking : In ordinary domestic situations, small electrical sparks are usually not hazardous. In certain conditions which are frequently encountered in science labs, even the sma

Principles for implementation of strategy in organization, Principles for I...

Principles for Implementation of Strategy in an Organization Organization required focusing on five principles for the successful implementation of strategy. Organizations wil

Sketch the frequency response, Q. For the circuits shown in Figure, sketch ...

Q. For the circuits shown in Figure, sketch the frequency response (magnitude and phase) of ¯V out / ¯V in .

Define electrical energy, Electrical energy If the power is measured in...

Electrical energy If the power is measured in watts and the time in seconds then the unit of energy is watt- seconds or Joules.

Microprocessor, distingish between maximum and minimum modes of operations ...

distingish between maximum and minimum modes of operations of 8086 with timing diagrames

#title.ec 1., draw the gain frequency response of an RC coupled circuit? di...

draw the gain frequency response of an RC coupled circuit? discuss fall in gain at very low and very high frequencies?

What are flip flop circuits in digital electronics, What are flip flop circ...

What are flip flop circuits in digital electronics? Discuss race around condition in J-K Flip Flop

Explain working of liquid-crystal display, Q. Explain Working of Liquid-cry...

Q. Explain Working of Liquid-crystal display? This display needs only microwatts of power (over a thousand times less than a LED) and is used in such devices as electronic wris

Technical losses in power systems, Technical Losses in Power Systems T...

Technical Losses in Power Systems The technical losses in power systems occur because of energy dissipated in the conductors and equipment used for transmission, transformat

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