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

Why are waveguides not used at low frequencies, Q. Comment brie?y on the fo...

Q. Comment brie?y on the following: (a) Why are waveguides not used at low frequencies? (b) Why are open-wire lines not generally used as guiding structures at very high freq

High pressure gas hazards, High Pressure Gas Hazards When we consider t...

High Pressure Gas Hazards When we consider the dangers of compressed gas in the lab, there are three main sources of danger as follows: 1) Sudden release of high pressure ga

Define permanent magnet, Define permanent magnet A permanent magnet is ...

Define permanent magnet A permanent magnet is a piece of ferromagnetic material (like as iron, nickel or cobalt) which has properties of attracting several pieces of these mater

State fleming''s right-hand rule, Fleming's Right-hand rule states: Let ...

Fleming's Right-hand rule states: Let the thumb, first finger and second finger of the right hand be extended such that they are all at right angles to every other. If the first

Transformer, how back emf is produced in transformer?

how back emf is produced in transformer?

Crossmagnetisation, what is crossmagnetisation in dc generator

what is crossmagnetisation in dc generator

Two-winding distribution transformer, Q. A single-phase, 10-kVA, 2300:230-V...

Q. A single-phase, 10-kVA, 2300:230-V, 60-Hz, two-winding distribution transformer is connected as an auto transformer to step up the voltage from 2300 V to 2530 V. (a) Draw a s

Electric discharge machining process, Describe the following in Electric di...

Describe the following in Electric discharge Machining Process(EDM). a) Dielectric fluids & their characteristic b) Electrodo feed Control c) Flushing System

Three phase transformer., Dry type 10KVA-3ph-440/230v Dyn11. If we decide t...

Dry type 10KVA-3ph-440/230v Dyn11. If we decide to wound above such specification, what current to be taken i.e. phase current or line current 7.57A or 13.12A

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