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

Difference between object oriented and object based language, Object based ...

Object based languages don't support Inheritance where as object oriented supports. C# is a object oriented language due to it supports inheritance and asp.net is not a language it

Npn bjt with forward-biased, NPN BJT with forward-biased: An NPN trans...

NPN BJT with forward-biased: An NPN transistor can be referred as two diodes along with a shared anode. In common operation, the base-emitter junction is forward biased and th

Find the modulated signal in each case, Let the message signal m(t) = α cos...

Let the message signal m(t) = α cos (2πf m t) be used to either frequency-modulate or phase- modulate the carrier Ac cos(2πf c t). Find the modulated signal in each case.

Energy stored in a switched inductor, The increase in the current is buildi...

The increase in the current is building up the magnetic field surrounding the coil. Energy is stored in that field. Consider the energy supplied by the voltage source during the

C programming., #queComputers are frequently used in check-writing systems,...

#queComputers are frequently used in check-writing systems, such as payroll and accounts payable applications. Many stories circulate regarding weekly pay- checks being printed (by

Determine excitation voltage and power angle, A 500KVA, 6 pole, 500v, 3 pha...

A 500KVA, 6 pole, 500v, 3 phase, wye-connected synchronous generator has a synchronous impedance of 0.1 + j1.5 ohms per phase. If the generator is driven at 1000 r.p.m., what is th

Explain priority interrupts of 8085, Explain priority interrupts of 8085. ...

Explain priority interrupts of 8085. The 8085 microprocessor has five interrupt inputs. They are TRAP, RST .5, RST 6.5, RST 5.5, and INTR. These interrupts have a fixed prio

What are the basic operations of a computer, What are the basic operations ...

What are the basic operations of a computer? The basic operations are READ and WRITE.

States kirchoff''s voltage law, States Kirchoff's Voltage Law Kirchoff...

States Kirchoff's Voltage Law Kirchoff's Voltage Law (KVL) describes in any closed loop in a network, the algebraic sum Figure of the voltage drops (i.e. products of current

Calculate the maximum length of an optical fibre, Calculate the maximum len...

Calculate the maximum length of an optical fibre that exhibits 0.8dB/km attenuation if the optical output is 10mW and the power launched at the input is 150mW. [Hint: Loss, L=10 lo

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