0% found this document useful (0 votes)
9 views13 pages

Aifc CV

Uploaded by

aayannkjain
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views13 pages

Aifc CV

Uploaded by

aayannkjain
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 13

Outlines:

UNLEASH IMAGE
PROCESSING
WITH
JUPYTER
NOTEBOOK
SESSION'S OUTLINE:
• Introduction to Computer Vision
• Basics of Images
• Introduction to Open CV
• Installing the essential libraries
• Open CV with Anaconda Navigator and Jupyter
Notebook (Hands On)
COMPUTER
VISION
•Computer Vision is a domain of
Artificial Intelligence, that deals
with the images.

•It involves the concepts of image


processing and machine learning
models to build a Computer
Vision based application.
Basics of Images
• Pixels​
• Resolution​
• Pixel values​
• Grayscale Images
• RGB Images
The word “pixel” means a
picture element.
They are the smallest unit of
information that make up a
picture.

Usually round or square, they


are typically arranged in a 2-
dimensional grid.
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
PIXEL VALUE
• Each of the pixels that represents an image stored inside a
computer has a pixel value which describes how bright that
pixel is, and/or what colour it should be. The most common
pixel format is the byte image, where this number is stored
as an 8-bit integer giving a range of possible values from 0
to 255.
• Zero is to be taken as no colour or black
• 255 is taken to be full colour or white
GRAYSCALE IMAGES
• Grayscale images are images which have a range of shades
of gray without apparent colour.
• The darkest possible shade is black, which is the total
absence of colour or zero value of pixel.
• The lightest possible shade is white, which is the total
presence of colour or 255 value of a pixel .
• Intermediate shades of gray are represented by equal
brightness levels of the three primary colours.
RGB IMAGES
• All the images that we see around are coloured images.
• These images are made up of three primary colours Red,
Green and Blue.
• All the colours that are present can be made by combining
different intensities of red, green and blue.
• https://www.w3schools.com/colors/colors_rgb.asp
• http://www.piskelapp.com/
INTRODUCTION TO OPENCV
• OpenCV or Open Source Computer Vision Library is that tool
which helps a computer extract these features from the
images.
• To install OpenCV library, open anaconda prompt and then
write the following command: pip install opencv-python
INSTALLING THE ESSENTIALS
• python -> https://www.python.org/downloads/
• pip -> comes with python
• jupyter notebook -> pip install jupyter
• cv2 -> pip install opencv-python
• PIL -> pip install pillow
• numpy -> pip install numpy
• matplotlib -> pip install matplotlib

then use the command ‘python -m notebook’ to start the


notebook
OPEN CV
WITH
ANACONDA NAVIGATOR AND JUPYTER
NOTEBOOK

https://www.anaconda.com/download

You might also like