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

Nor gate - introduction to microprocessors , NOR Gate NOR means NOT OR ...

NOR Gate NOR means NOT OR . it complements the  output  of an OR  gate.  The symbol  of Nor  gate in fig. (a) shows that a Nor  gate  comprises  of an OR  gate followed  by a N

Plagiarised Content, Your site is full of plagiarised content even though y...

Your site is full of plagiarised content even though you claim to be and I quote "Plagiarism Free". You should not be charging for this content, the site and service is a fraud.

Evaluate reference voltage, Q. Consider the 4-bit R-2R ladder D/A converter...

Q. Consider the 4-bit R-2R ladder D/A converter with V ref =-10 V. Determine the analog output voltage when the binary input code is 1100. Also, find what reference voltage is to

555 timer ic, i wanted the exact names of the components of the internal ci...

i wanted the exact names of the components of the internal circuit of a 555 timer ic

Classify feedback control systems according to purpose, Q. Classify Feedbac...

Q. Classify Feedback control systems according to purpose of the system? • Position control systems. Here the output position, such as the shaft position on a motor, exactly fo

Describe the automated flow lines, Describe the Automated flow lines with s...

Describe the Automated flow lines with suitable diagrams? Also provide the Reason for Automating? Discuss the Work part Transfer Mechanisms in detail? Discuss the requirement fo

What is segmentation, What is segmentation? Segment memory addressing d...

What is segmentation? Segment memory addressing divides the memory in several segments. All of these segments can be seen as a linear memory space. All of these segments are ad

Circuits, How Galvanometer can be converted int voltmeter?

How Galvanometer can be converted int voltmeter?

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