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

Advantages of software defined radio, Advantages of SDR 1. Easy to upgr...

Advantages of SDR 1. Easy to upgrade 2. Great flexibility. It can be dynamically updated with new software without any changes in hardware 3. Due to reduced number of har

What is the output modes used in 8279, What is the output modes used in 827...

What is the output modes used in 8279? 8279 gives two output modes for selecting the display options. 1.Display Scan In this mode, 8279 gives 8 or 16 character-multiple

Show the use of hexadecimal, Hexadecimal is of use in IT because (1) It...

Hexadecimal is of use in IT because (1) It is a compact system (e.g. only 3 digits represent the number 986) (2) As 16 are a power of 2 it turns out to be quite easy to conv

How to make lpg safer in the laboratory, How to Make LPG Safer in the Labor...

How to Make LPG Safer in the Laboratory The following must be observed in the laboratory: 1. The LPG cylinders should be kept outside the laboratory in a ventilated room.

Merits and demerits of fixed bias with emitter resistor, Merits: The ci...

Merits: The circuit has the trend to stabilize operating point against changes in temperature and β-value. Demerits: In this type of circuit, to keep I C  independent o

Feedback amplifier, Draw and explain the circuit of feedback amplifier

Draw and explain the circuit of feedback amplifier

Explain the time division space switching, a. Explain the time division spa...

a. Explain the time division space switching b. Verify the execution complexity of 2048 channel TST switch with 16 TDM links and 128 channels. Let the time slot of space switch

Distinguish between paramagnetic and diamagnetic materials, Distinguish bet...

Distinguish between paramagnetic and diamagnetic materials, mentioning at least one example of each. Paramagnetic Materials: The atoms of these materials have permanent magne

Op, Find the current through capacitor by superposition therom

Find the current through capacitor by superposition therom

State the features of washing machines, State the features of Washing machi...

State the features of Washing machines Microprocessor would be used to control the below features, for instance: - Water temperature -  Time for every cycle -  Wash cy

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