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

Show that operating point does not depend on beta, Q. Prove mathematically ...

Q. Prove mathematically that the operating point does not depend on beta, in a potential divider bias circuit ? To determine the operating point, consider the input section of

Explain the properties and application of glass, Explain the properties and...

Explain the properties and application of glass. Glass: Ordinary glass is a fine insulator but is too brittle to be used for anything although scientific instrument parts, accu

find the thevenin and norton equivalent circuits, The output port of the o...

The output port of the one-port is defined by terminals A and B. Given: R 1 = 10 k_, R 2 = 20 k_, R 3 = 10 k_, and R 4 = 10 k_ V 1 = 20 V and I1 = 0.8 mA a) Find the T

Find the maximum radiation intensity, Q. An antenna has beam widths of 3° a...

Q. An antenna has beam widths of 3° and 10° in orthogonal planes and has a radiation ef?ciency factor of 0.6. Find the maximum radiation inten- sity if 1 kW is applied to the anten

Transmission and swiching systems, using a combination of uniselectors and ...

using a combination of uniselectors and two motion selectors, draw a schematic of thousand line exchange and explain its working

Clc filter, CLC or π Filter The above diagram displays CLC or π ty...

CLC or π Filter The above diagram displays CLC or π type filter, which mainly contains a capacitor filter, followed through LC section. This filter offers a quite smooth o

Lda load accumulator direct instruction, LDA  Load Accumulator Direct Inst...

LDA  Load Accumulator Direct Instruction This instruction is used to copy  data from  memory whose  address is directly specified in the  instruction to th e accumulator. The i

EEI., explain about heat time curve and cool time curve

explain about heat time curve and cool time curve

Alternater, subranging ADC is a modification

subranging ADC is a modification

Emf produced by windings, Q. emf produced by windings? The time variati...

Q. emf produced by windings? The time variation of emf for a single conductor corresponds to the spatial variation of air-gap flux density. By suitable winding design, the harm

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