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

24 - outlet uni-selector, In this case, 24 simultaneous calls can be put th...

In this case, 24 simultaneous calls can be put through switch. Generally a 24-outlet Uni-selector is used as a selector hunter. Every one of the 24 outlets is connected to one two-

Explain the steps of the evolution of the microcontroller, Question: a)...

Question: a) Give one reason why a "subroutine" could be written into the body of the main program. b) With the help of the diagram below, write down the sequence of the ni

Discuss crp, Question 1 Explain the construction of telephone network ...

Question 1 Explain the construction of telephone network Question 2 What is out-of-band signaling? Explain Question 3 Describe STP (Signaling Transfer Point) Questio

D.c mootor, which principle is used in d.c motor

which principle is used in d.c motor

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

How oscillations start up in an oscillator, Q. How oscillations start up in...

Q. How oscillations start up in an oscillator?  The noise voltage produced due to the random motion of electrons in resistors or in active devices provides the starting voltage

Find a state-variable formulation, Consider a system described by the coupl...

Consider a system described by the coupled difference equation y(k + 2) - ν(k) = 0 ν(k + 1) + y(k + 1) = u(k) where u(k) is the system input. (a) Find a state-variable

Determine the percentage ripple voltage, Problem (a) Figure gives the ...

Problem (a) Figure gives the basic circuit of the diode limiter. Assuming that the diodes are ideal sketch and annotate the waveforms of the input voltage vi(t) and the load

Find the charge flowing and number of electron, Q. A current i(t) = 20 cos(...

Q. A current i(t) = 20 cos(2π × 60)t A flows through a wire. Find the charge flowing, and the number of electrons per second that are passing some point in the wire.

What is own-exchange routing, Q. What is Own-exchange routing? Distribu...

Q. What is Own-exchange routing? Distributed routing or own-exchange routing enables alternative routes to be chosen at intermediate nodes. Hence the strategy is capable of res

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