WEBVTT

00:00.780 --> 00:05.520
Hi and welcome to Section 2 of this course where we're going to take a look at the basics of computer

00:05.520 --> 00:07.850
vision and open C.v.

00:08.100 --> 00:12.300
So I will just briefly go over the topics we're covering in this section.

00:12.360 --> 00:18.690
So firstly we're going to take a look at what exactly are images and how were they formed after that

00:18.720 --> 00:22.460
we're going to look at how images are stored on computers.

00:22.470 --> 00:27.480
And then after we complete what we're actually going to get started into open C-v and do some basic

00:27.480 --> 00:34.500
operations such as reading writing and displaying images then performing Grayskull operations then taking

00:34.500 --> 00:40.410
a look at the different colors spaces that we have available and also representing images in a histogram

00:40.410 --> 00:42.540
form and how you interpret that.

00:42.540 --> 00:48.980
And lastly we're going to use open C-v to draw some basic shapes and put text on images.

00:49.020 --> 00:51.740
So what exactly are images.

00:51.840 --> 00:57.990
Now I have the one line definition here for images which tells us that images are two dimensional representation

00:58.410 --> 01:00.760
of the visible light spectrum.

01:00.840 --> 01:02.830
So what exactly does that mean.

01:02.880 --> 01:03.990
What is two dimensional.

01:03.990 --> 01:05.990
I mean in this context.

01:06.300 --> 01:11.880
You may have a theory or idea that an image can be a photograph can be something you see on your laptop

01:11.880 --> 01:14.880
screen or a TV screen and that's exactly right.

01:14.880 --> 01:22.890
Those are all two dimensional planes where it is only an x y dimension and that x y dimension here corresponds

01:22.890 --> 01:26.640
to different pixel points on computer screens or in the photographs.

01:26.640 --> 01:36.060
Basically dots inch deep you may have hit that in somewhat a form printer printers perhaps and so know

01:36.630 --> 01:44.580
each pixel or GPI point reflects different wavelengths of light and that is where we refer to the visible

01:44.580 --> 01:45.740
light spectrum.

01:45.990 --> 01:51.450
No the visible light spectrum is part of the electromagnetic spectrum which consists of radio waves

01:51.480 --> 01:57.450
all the way to gamma rays and different waves here have different wavelengths and the visible part.

01:57.450 --> 02:03.630
What we see visible because it's visible to eyes consists of different wavelengths and each wavelength

02:03.750 --> 02:09.430
corresponds to different colors all the way from red green to blue and slightly purple.

02:09.750 --> 02:14.010
So no in an image like this this is Van Gogh's Starry Night painting.

02:14.070 --> 02:19.470
Each point corresponds to a different color which means that reflects different wavelengths of light

02:20.040 --> 02:23.100
which is what we see in these images.

02:23.100 --> 02:27.210
So no I hope you have a faint idea or at least an idea of what images are.

