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

Show procedure of divide the decimal number by 2, Q. Show procedure of divi...

Q. Show procedure of divide the decimal number by 2? For this procedure (method), divide the decimal number by 2, if the remainder is 0, on the side write down a 0. If the rema

Three-phase induction motor, Q. A 60-Hz, six-pole, wye-connected, three-pha...

Q. A 60-Hz, six-pole, wye-connected, three-phase induction motor, with the parameters R 1 = R 2 = 0.025  and Xl 1 = Xl 2 = 0.125 , is controlled by variable-frequency control

Find the initial current, In the circuit shown below, the capacitor initial...

In the circuit shown below, the capacitor initially has a voltage across it 4 Volts (at t = 0). a.  Write down the expression for V C (t) when the switch is closed. b.  Writ

Fixed bias, Fixed bias (base bias): Diagram: Fixed bias (Base ...

Fixed bias (base bias): Diagram: Fixed bias (Base bias) This type of biasing is also known as  base bias . In the instance above figure, the single power source (

Analogy between electrical and nonelectric physical systems, Systems such a...

Systems such as those encountered in mechanics, thermodynamics, and hydraulics can be represented by analogous electric networks, from the response of which the system characterist

Illustrate the construction and working of thermistor, Illustrate the const...

Illustrate the construction and working of:- (i) Pressure Thermometer (ii) Selective Radiation Pyrometer (iii) Thermistor (iv) Laws of Thermocouple

Stc set carry instruction, STC Set Carry Instruction This instruction ...

STC Set Carry Instruction This instruction  sets   the carry  flag  to 1. The  instruction format is STC Flags except carry no other  flags are affected

Illustrate the basic use of binary in it, Q. Illustrate the basic use of bi...

Q. Illustrate the basic use of binary in IT ? The binary system is thus useful in IT because not only any number, but any information, can be represented in terms of only 0s an

Squeeze castings, Squeeze Castings: Squeeze casting, also known as ...

Squeeze Castings: Squeeze casting, also known as liquid metal forging, is a combination of casting and forging process . The molten metal is poured into the bottom half

Effective negative voltage, Effective negative voltage: Effect negati...

Effective negative voltage: Effect negative voltage of get, when depend upon Pitch of voltage: the level of that results in id =0 ma is defined by eggs =vp with vp

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