Expert Image Processing Interview Preparation Guide
Download PDF

Expert Image Processing Frequently Asked Questions in various Image Processing Expert job Interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting

57 Image Processing Expert Questions and Answers:

Table of Contents

Image Processing Expert Interview Questions and Answers
Image Processing Expert Interview Questions and Answers

1 :: What do you meant by Zooming of digital images?

Zooming may be viewed as over sampling. It involves the creation of new pixel
locations and the assignment of gray levels to those new locations.

2 :: Explain the types of connectivity?

1. 4 connectivity
2. 8 connectivity
3. M connectivity (mixed connectivity)

3 :: What is the need for transform?

The need for transform is most of the signals or images are time domain signal (ie) signals can be measured with a function of time. This representation is not always best. For most image processing applications anyone of the mathematical transformation are applied to the signal or images to obtain further information from that signal.

4 :: List the hardware oriented color models?

1. RGB model
2. CMY model
3. YIQ model
4. HSI model

5 :: A continuous image is digitised at _______ points.
a) random
b) vertex
c) contour
d) sampling

d) sampling
Explanation: The sampling points are ordered in the plane and their relation is called a Grid.

6 :: Images quantised with insufficient brightness levels will lead to the occurrence of ____________
a) Pixillation
b) Blurring
c) False Contours
d) None of the Mentioned

c) False Contours
This effect arises when the number brightness levels is lower that which the human eye can distinguish.

7 :: Define subjective brightness and brightness adaptation?

Subjective brightness means intensity as preserved by the human visual system.
Brightness adaptation means the human visual system can operate only from scotopic to glare limit. It cannot operate over the range simultaneously. It accomplishes this large variation by changes in its overall intensity.

8 :: Write the expression to find the number of bits to store a digital image?

The number of bits required to store a digital image is
b=M X N X k
When M=N, this equation becomes
b=N^2k

9 :: List the applications of color models?

1. RGB model- used for color monitors & color video camera
2. CMY model-used for color printing
3. HIS model--used for color image processing
4. YIQ model-used for color picture transmission

10 :: Write a procedure to implement highlight as a blinking operation?

The function textattr in conio.h can be use for this purpose a small program has presented here...

#include<conio.h>
int main()
{
textattr(129);
cprintf("My name is John Smith...");
return 0;
}


here in the textattr till 128 only colors would be set and more than it colors with blink.

11 :: Explain what are the differences between the books Digital Image Processing and Digital Image Processing?

Difference between the books is that Digital Image Processing (DIP) deals primarily with the theoretical foundation of digital image processing, while Digital Image Processing Using MATLAB (DIPUM) is a book whose main focus is the use of MATLAB for image processing. The DIPUM book covers essentially the same topics as DIP, but the theoretical treatment is not as detailed. Some instructors prefer to fill in the theoretical details in class in favor of having available a book with a strong emphasis on implementation.

13 :: What is weber ratio?

The ratio of increment of illumination to background of illumination is called as weber ratio.(ie) ?i/i
If the ratio (?i/i) is small, then small percentage of change in intensity is needed (ie) good brightness adaptation.
If the ratio (?i/i) is large , then large percentage of change in intensity is needed (ie) poor brightness adaptation.

15 :: What is Image Transform?

An image can be expanded in terms of a discrete set of basis arrays called basis images. These basis images can be generated by unitary matrices. Alternatively, a given NxN image can be viewed as an N^2×1 vectors. An image transform provides a set of coordinates or basis vectors for vector space.

16 :: How to increase the quality of an image?

Image enhancement process is purely dependent on the application where we need to use the enhanced image and the type of degradation in the image. Few solutions from my basic knowledge
1. If image contain so much noises, apply filtering operations such as mean/median etc.
2. If the image is looking too dark or or too bright apply histogram equilization process to improve the contrast.
3. If the image is blurred apply sharpening operations in the image.

19 :: What is recognition and Interpretation?

Recognition means is a process that assigns a label to an object based on the information provided by its descriptors.Interpretation means assigning meaning to a recognized object.

20 :: What is simultaneous contrast?

The region reserved brightness not depend on its intensity but also on its background. All centre square have same intensity. However they appear to the eye to become darker as the background becomes lighter.

21 :: What is Luminance?

Luminance measured in lumens (lm), gives a measure of the amount of energy an observer perceiver from a light source.

22 :: What is Hue and saturation?

Hue is a color attribute that describes a pure color where saturation gives a measure of the degree to which a pure color is diluted by white light.

23 :: The transition between continuous values of the image function and its digital equivalent is called ______________
a) Quantisation
b) Sampling
c) Rasterisation
d) None of the Mentioned

a) Quantisation
The transition between continuous values of the image function and its digital equivalent is called Quantisation.

25 :: Specify the elements of DIP system?

1. Image Acquisition
2. Storage
3. Processing
4. Display