ASSIGNMENT 5 - X - AI Handout Computer Vision1
ASSIGNMENT 5 - X - AI Handout Computer Vision1
Classification Object
Detection
Classification +
Localisation Instance
Segementation
Classification
Image Classification problem is the task of assigning an input image one label from a fixed set of categories.
This is one of the core problems in CV that, despite its simplicity, has a large variety of practical applications.
Classification + Localisation
Object Detection
Object detection is the process of finding instances of real-world objects such as faces, bicycles, and
buildings in images or videos. Object detection algorithms typically use extracted features and learning
algorithms to recognize instances of an object category. It is commonly used in applications such as image
retrieval and automated vehicle parking systems.
Instance Segmentation
Instance Segmentation is the process of detecting instances of the objects, giving them a category andthen
giving each pixel a label on the basis of that. A segmentation algorithm takes an image as input and outputs
a collection of regions (or segments).
BASICS OF IMAGES
Q5 What is Resolution?
The number of pixels in an image is sometimes called the resolution. When the term is used to
describe pixel count, one convention is to express resolution as the width by the height, for example
a monitor resolution of 1280×1024. This means there are 1280 pixels from one side to the other, and
1024 from top to bottom.
Why do we have a value of 255 ? In the computer systems, computer data is in the form of ones and zeros,
which we call the binary system. Each bit in a computer system can have either a zero or a one.
Since each pixel uses 1 byte of an image, which is equivalent to 8 bits of data. Since each bit can have two
possible values which tells us that the 8 bit can have 255 possibilities of values which starts from 0 and ends
at 255.