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

Determine the capacitor and inductor voltages, Experiment • Wire the circu...

Experiment • Wire the circuit shown in Figure. Connect the three oscilloscope channels as shown in Figure. • Select the sinusoidal waveform. Adjust the frequency of the input volt

Standby mode, Standby mode:In this mode, one processor is active and other ...

Standby mode:In this mode, one processor is active and other is on standby, both software and hardware wise. Standby processor brought online when active processor fails. A vital r

Determine active power-reactive power, Three equal impedances of D ohms res...

Three equal impedances of D ohms resistance and C inductive reactance are connected in a DELTA configuration. The line voltage is A00 volts. Determine the line current, phase cur

Laplace transform, 1. Find the general solution y(t) of the ordinary di ere...

1. Find the general solution y(t) of the ordinary di erential equation where ω is a non-negative constant. (Consider the ω = 0 and ω > 0 cases separately). 2. Use Laplac

Literature review - software defined radio, Literature Review - Software De...

Literature Review - Software Defined Radio In this section, first two methods to estimate signal to noise ratio (SNR) are reviewed and a few methods for modulation classificati

Draw the logic diagram of an sr latch, Q. Draw the logic diagram of an SR l...

Q. Draw the logic diagram of an SR latch using only NAND gates, and obtain the truth table for that implementation.

Determine IS in the given circuit, Q. Given that V 0 = 10 V, determine IS ...

Q. Given that V 0 = 10 V, determine IS in the circuit drawn in Figure.

Oscillator circuit with the help of block diagram, Q. Explain the condition...

Q. Explain the conditions to be satisfied for sustained oscillations in an oscillator circuit with the help of block diagram. The essential condition for sustained oscillations

Controls and system, transfer function of Lube Oil Cooler Temperature

transfer function of Lube Oil Cooler Temperature

Elucidate the nature of signals produced, Q. Elucidate the nature of signal...

Q. Elucidate the nature of signals produced on subscriber's loop by a pulse dialer and a touch tone dialer.  Ans: DTMF is a simple two-of -eight encoding scheme where every

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