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

Explain resistivity, Explain Resistivity. Resistivity : Resistance R o...

Explain Resistivity. Resistivity : Resistance R of a wire containing cross-sectional area A and length L maintain the relationship, - R α L and R α 1/A; that is resulting R α

Determine the total active power, Determine the total active power: Ci...

Determine the total active power: Circuit is introduced in the Face 1. It is about a single-wires face for a three-phase system. The voltage of the AC source is of 69kV. The s

Determine the resulting waveform, Two pure sine waves have similar amplitud...

Two pure sine waves have similar amplitude "A" and frequency "f." They are out of phase through 180 degrees. If these two signals are added, the resulting waveform will be:

Voltage divider, I want to know how can i make transformerlass power supply...

I want to know how can i make transformerlass power supply 220v to 48v (8A) and 220v to 24v (8A)

Explain overhead lines and transformers, Explain Overhead Lines and Transfo...

Explain Overhead Lines and Transformers? Overhead lines absorb reactive power when fully loaded. A line with a current I A, a line reactance of X L ?/phase absorbs I 2 X L V

Measure and set frequency by using an oscilloscope, 1. Introduction : ...

1. Introduction : Theory: Frequency is the number of occurrences of a repeating event per unit time. It can also be defined as the number of repetitions (cycles) of a w

Magnetic Bond Method:, how does the magnetic bond method work? Application ...

how does the magnetic bond method work? Application of the magnetic bong method & advantages and disadvantages of the magnetic bond method.

Gis applications, Gis Applications So far, you have learnt how GIS can...

Gis Applications So far, you have learnt how GIS can help utilities to obtain snapshots of the locations of substations, lines and cables in relation to their geographical bea

Show the overall output limitations of speed control, Q. Show the Overall o...

Q. Show the Overall output limitations of Speed Control? The overall output limitations are as shown in Figure. With base speed defined as the full-field speed of themotor at t

Name some application of serial communication, Name some application where ...

Name some application where you see use of serial communication. Within the world of serial communications, there are two different equipments are: DTE stand for Data Termin

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