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

Calculate the power dissipated in r and in the diode, Q. Consider the circu...

Q. Consider the circuit of Figure with V S = 94 V, V Z = 12 V, R = 820 , R L = 220 , R S = 0, and R Z = 25 . Assume the reverse saturation current of the zener diode to be

What is the working of sensor in robotics, (a) What is the working of senso...

(a) What is the working of sensor in Robotics ? (b) Define the following : (i) Proximity Sensor (ii) Tactile Sensors (iii) Optical Sensor. (c) What is an End Effecto

How can a jfet be used as a voltage controlled resistor, Q. How can a JFET ...

Q. How can a JFET be used as a voltage controlled resistor. Explain from drain characteristics? The region to the left of the pinch off locus is referred to as the ohmic region

Industrial Automation, 1. Write the Boolean expression and draw the gate lo...

1. Write the Boolean expression and draw the gate logic diagram and typical PLC ladder logic diagram for a control system wherein a fan is to run only when all of the following con

TRANSISTOR BIASING CIRCUITS, HOW TO FIND THE OPERATING POINT OF THE TRANSIS...

HOW TO FIND THE OPERATING POINT OF THE TRANSISTO IN A COLLECTOR TO BASE BIAS CIRCUIT

Calculate the power required from power plant, You will develop a simulatio...

You will develop a simulation that will consist of the following five components: Controller: This script component controls the simulation. It shall permit the user to: 1. C

What is the physical length of this cable, Q. It is desired to cut a λ/4 le...

Q. It is desired to cut a λ/4 length of RG58A/U cable (ε r = 2.3) at 150MHz.What is the physical length of this cable?

Static v- i characteristics - power semiconductor devices, V- I Characteris...

V- I Characteristics The operation of the  diac can be explained by imagining it as two diodes connected  in series. When  applied voltage in either polarity is small ( less t

Prepaid meters, Prepaid Meters Prepaid metering is a system whereby co...

Prepaid Meters Prepaid metering is a system whereby consumers purchase electricity by a smart card. The amount paid together along with other information is encoded in the sma

Obtain expressions for the in-phase and quadrature component, Q. For DSB an...

Q. For DSB and conventional AM, obtain expressions for the in-phase and quadrature components x d (t) and x q (t), and envelope and phase v(t) and φ(t).

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