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

What are the features used mode 2 in 8255, What are the features used mode ...

What are the features used mode 2 in 8255? The single 8-bit port in-group A is available. 1. The 8-bit port is bi-directional and additionally a 5-bit control port is availa

How to convert decimal to binary number, Q. How to convert Decimal to Binar...

Q. How to convert Decimal to Binary number? To convert the decimal to binary is slightly more difficult. There are two procedures (Methods) that may be used to convert from dec

Explain the term full duplex transmission, Explain the term full duplex tra...

Explain the term full duplex transmission. Data can travel in both directions concurrently. There is no require to switch from transmit to receive mode as in half duplex. It's

Analog & Digital Filtering, 1) Assume that we are given the continuous-time...

1) Assume that we are given the continuous-time signal xa (t) = xa1 (t) + xa2 (t) + xa3 (t), where, xa1 (t) = 2 + cos3 (2pf1 t + p 3 ) + 2 cos(2pf2 t), xa2 (t) = 2 cos(2pf3 t)

Describe the two core-excited states, Using the optimized 6-311G(d,p) geome...

Using the optimized 6-311G(d,p) geometry determined in question 1, perform the following equivalent core calculations for any two inequivalent carbons of butadiene: (a) Equivale

Centrifugal compressor, hi I need information of Compressor Shaft Impelle...

hi I need information of Compressor Shaft Impellers Coupling Hub Thrust Collars Balance Drum for centrifugal compressor with pecture

Why do we cascade amplifiers, Q. Why do we cascade amplifiers? Why is RC co...

Q. Why do we cascade amplifiers? Why is RC coupling the most widely used coupling between 2 stages of a cascading amplifier? The voltage or power gain or frequency response obt

Different types of probes used in cathode ray oscilloscope, Q.   Explain th...

Q.   Explain the different types of probes used in cathode Ray Oscilloscope (CRO). Sol. probes: The probe performs the very important function of connecting the test circuit

Design a matching network of balanced stubs, A certain cellular telephone a...

A certain cellular telephone antenna has an input impedance at f=1.0 GHz modeled by a shunt R-C combination, with R=200Ω and C=2.0pF. Because of manufacturing restrictions, you can

Explain the fixed bias circuit, Q. Explain the fixed bias circuit?     ...

Q. Explain the fixed bias circuit?           The Fig refers to the common emitter collector characteristics and the ac and dc load lines.The Fig shows the points Q 1 and Q 2

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