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

Define not gate - microprocessor, Define NOT Gate - Microprocessor? The...

Define NOT Gate - Microprocessor? The NOT GATE which is as well called an Inverter, is used to invert the logic state of a signal. The output Q is true while the input A is NOT

Illustrate application specific instruction set processor, Illustrate about...

Illustrate about the term application specific instruction set processor. Application Specific Instruction-Set Processor (ASIP): a. Microcontroller: as Intel, Hitachi, Motor

Switching characteristics - power semiconductor devices , Switching Charac...

Switching Characteristics Switching  characteristics are also know  as dynamic or transient characteristics these  characteristics give  the information  about the  time  varia

Classification of measures of performance appraisal, Classification of meas...

Classification of measures: measures or metrics can be classified under the following headings: 1 finance: income shareholder value added value rates of return costs. 2 outp

Explain commutator action in dc machine, Q. Explain Commutator Action in dc...

Q. Explain Commutator Action in dc machine? As a consequence of the arrangement of the commutator and brushes, the currents in all conductors under the north pole are in one di

Fulfilled to sustain the oscillations, Q. What are the conditions required ...

Q. What are the conditions required to be fulfilled to sustain the oscillations? The conditions required to be fulfilled to sustain the oscillations are: 1. The loop gain mu

Dc motor characteristics, Q. DC Motor Characteristics? We gain an under...

Q. DC Motor Characteristics? We gain an understanding of the speed-torque characteristics of a dc motor from Equations. In shunt motors, the field current can be simply control

Explain the transfer characteristics, Q. Explain the transfer characteristi...

Q. Explain the transfer characteristics in a few words ? The transfer characteristics are a plot of an output (or a drain) current versus an input controlling quantity. There i

Explain symmetrical t-attenuator, Question 1 State and Explain Kirchhoff's...

Question 1 State and Explain Kirchhoff's Voltage and Current Law Question 2 State and prove Thevenine's Theorem Question 3 What is a filter? Design a Constant -K band Pa

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