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

Simulation in Proteus, Hi, I need help simulating my project in Proteus, ...

Hi, I need help simulating my project in Proteus, problem is, I have never used it before. This is what I have so far. However, feel free to suggest ideas that will make the circ

Flag registers , Flag Registers Flag  register  is also an  8 bit  reg...

Flag Registers Flag  register  is also an  8 bit  register. Out of 8 bit  five are  defined as flags to indicate status  of the accumulator  hence it is also called status reg

Distribution transformers, Distribution Transformers 1. Augmentation/...

Distribution Transformers 1. Augmentation/Addition of Distribution Transformers Distribution transformers have to be augmented by installing additional transformers or in

Determine the required tapping on the transformer, An induction motor has a...

An induction motor has a starting current that is 6 times the full-load current and a per-unit full- load slip of 0.04. The machine is to be provided with an autotransformer starte

Analog computers, Q. Analog Computers? Although not used as much as the...

Q. Analog Computers? Although not used as much as the digital computer (which nowadays forms the basic tool for numerical analysis and the solution of algebraic as well as diff

There are many advantages of plc - stepper motor , There are many advantage...

There are many advantages of PLC a.The PLC  was specifically designed for harsh  conditions with  electrical  noise magnetic fields vibration  extreme temperatures or humidit

Show the procedure of binary addition, Q. Show the procedure of Binary Addi...

Q. Show the procedure of Binary Addition? Rules of Binary Addition 0 + 0 = 0 0 + 1 = 1 1 + 0 = 1 1 + 1 = 0 , and carry 1 to the next more importan

MATLAB support for fault analysis in transmission lines, The devices in pow...

The devices in power system shown in Figure 2 have the following ratings: G1 : 100 MVA, 13.8 kV grounded Y, X” = 0.15 pu, X2 = 0.015 pu Xo = 0.05 pu G2 : 50 MVA, 20.0 kV grounded

A 450 ns eprom won''t work directly with a 5mhz 8088, A 450 ns EPROM won't ...

A 450 ns EPROM won't work directly with a 5MHz 8088.Why? Explain. While the 8088 is operated along with a 5 MHz clock, it permits 460 ns for the memory to access data. Due to t

RC coupled transistor amplifier., why we plot graph to find bandwidth is dr...

why we plot graph to find bandwidth is drawn b/w av/avmax v/s frequency not av v/s frequency?

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