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

Carry flag - registers, Carry Fla Registers  The  size  of the accumul...

Carry Fla Registers  The  size  of the accumulator is of 8 bit  if after  any arithmetical  or logical  operation 9 th   bit is generated i e  there is  carry beyond  D 7   bi

#emf., what is the effect of back emf ?

what is the effect of back emf ?

Electric machinery fundamentals, Ask qu1. If the resistor Radj is adjusted ...

Ask qu1. If the resistor Radj is adjusted to 175O what is the rotational speed of the motor at no-load conditions? 2. Assuming no armature reaction, what is the speed of the motor

Explain the ideal drain characteristics of the jfet, Q. Explain the ideal d...

Q. Explain the ideal drain characteristics of the JFET? The JFET consists of a thin layer of n-type material with two ohmic contacts, the source S and the drain D ,along with t

Crm framework, CRM Framework There exist several ways to view CRM fram...

CRM Framework There exist several ways to view CRM framework. Therefore, an operational strategic framework is more relevant to apply CRM in power/electricity business systems

Types of sweeps, There are four basic types of sweeps: (a)             ...

There are four basic types of sweeps: (a)                                Free Running or Recurrent Sweep: in the free running or recurrent sweep, the sawtooth waveform is re

Logically and the contents of memory, Logically AND the contents of memory ...

Logically AND the contents of memory Contents of memory  location,  whose address is specified by HL register pair are logically AND with the  contents  of the accumulator. The

Kirchoff''s current law, Kirchoff's Current Law The total current ent...

Kirchoff's Current Law The total current entering a node in a circuit is equal to the total current leaving that node. A Node is a junction between two or more components.

Explain common collector configuration, Q. Explain common collector configu...

Q. Explain common collector configuration? It is called the common-collector configuration because (ignoring the power supply battery) both the signal source and the load share

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