Grade 10 Unit 5 - Computer Vision
Grade 10 Unit 5 - Computer Vision
We can translate text in images instantly in any required languages simply by pointing our camera.
▪ All we need to do to read signs in a foreign language is to point our phone’s camera at the words
and let the Google Translate app tell us what it means in our preferred language almost instantly.
▪ By using optical character recognition to see the image and augmented reality to overlay an
accurate translation, this is a convenient tool that uses Computer Vision
▪ The translation accuracy depends on the clarity of the text. Translation of small, unclear, or
stylized text may not be accurate.
Computer vision is a rapidly growing field that has many real-world applications. From
facial recognition to autonomous vehicles, computer vision is making a big impact in a
wide range of industries. As technology continues to develop, we can expect to see even
more exciting applications of computer vision in the future.
Basics of Images
We all see a lot of images around us and use them daily either through our mobile phones or
computer system. But do we ask some basic questions to ourselves while we use them on such a
regular basis.
Basics of Pixels
▪ The word “pixel” means a picture element.
▪ Pixels are the basic element of a photograph.
▪ They are the smallest unit of information that make up a picture.
▪ pixel are usually round or square and are typically arranged in a
2-dimensional grid.
▪ In general term, The more pixels you have, the more closely the
image resembles the original.
▪ Pixel value represent the brightness of the pixel.
▪ The range of a pixel value in 0-255,where 0 is taken as Black or no colour and 255 is taken
as white
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 256
possibilities of values which starts from 0 and ends at 255.
How does the computer see an image?
A computer sees an image as 0s and 1s. Pixel is the smallest
unit in an image. When we take a digital image, it is stored
as a combination of pixels. Each pixel contains a different
number of channels.
Resolution
▪Resolution indicates the number of pixels that are displayed per inch for an image (or pixels per centimeter).
▪Term for area covered by the pixels in conventionally known as resolution.
▪ Most computer monitors display at resolutions of 72 pixels per inch or 96 pixels per inch.
▪1 megapixel is a million pixels. [width pixel multiplied by height pixel will be equal to 1,00,000 pixels]
▪Example :Resolution of 1280 x 720 means that the screen will have a width of 1280 pixels while the height
of the screen will be 720 pixels. Width represent number of columns and height represents no of rows.