Ch-5 Computer Vision
Ch-5 Computer Vision
3. What is a Pixel ?Give any two important features of a Pixel ina digital image.
Pixel stands for “Picture Element”. It is the smallest unit of information in a digital image. These pixels
are arranged in a 2-dimensional grid to form a complete image, video, text, or any visible thing on a
digital platform. A pixel can have only one color at a time.
4. What do you mean by the term-Image Features?
Ans:- In computer vision an image feature is simply a piece of information about the content of an
image. It can be an edge, corners, start point or end point that can be taken.
5. Define the following
Grey scale image:- It is the image which has a range of shades of grey .These images have only
two colors ie Black and white.Black is at weakest intensity to white at the strongest intensity. It
means, the shade range start with 0 (pure black) and ends with 255 (pure white).
RGB Images:- These images are made up of three primary colors Red,Green and Blue.All the
colours are made by combining different intensity of red,green and blue.
6. Explain the task used in Computer vision application for single object.
Ans:- Classification:- It is the process of finding out the class/category of the input image.The input
image is processed using machine learning algorithm and classified into predefined categories.
Classification+Localisation:- Localisation means where the object is in the image.
The combined task of classification and localisation means processing the input image to identify its
category and location.
7. Explain the task used in Computer vision application for multiple objects.
Ans:- Multiple Objects means giving multiple images as input to the Computer Vision application. It can
be further divided into two categories:
• Object Detection: It is the process of identifying or detecting the instances of real-world
objects like cars, bicycles, buses, animals, humans, or anything on which the detection model
has been trained. This kind of system uses Object detection algorithms to extract the features of
the object and after that machine learning algorithms will recognize the instances of an object
category by matching it with the sample images already fed into the system. It is commonly
used in applications such as image retrieval and automated vehicle parking systems.
• Instance Segmentation: It is the process of division of an image into smaller objects so that the
machine can identify an object from the background or by using information about other objects
present along with it in the input image. After it has identified it, then each pixel is given a label on
the basis of that. A segmentation algorithm takes an image as input and outputs a collection of
regions (or segments).