Skip to content

Commit 4f55c58

Browse files
author
Robert (Bob) Turner
committed
flow
1 parent b9c72ac commit 4f55c58

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

episodes/02-image-basics.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,10 @@ real world images will typically be made up of a vast number of pixels,
7272
and each of these pixels will be one of potentially millions of colours.
7373
While we will deal with pictures of such complexity shortly,
7474
let's start our exploration with 15 pixels in a 5 X 3 matrix with 2 colours and
75-
work our way up to that complexity,
76-
but first the necessary imports.
75+
work our way up to that complexitywork our way up to that complexity.
7776

7877
> ## Matrices, arrays, images and pixels
79-
> The **matrix** is a mathematical concept - numbers evenly arranged in a rectangle. This can be a two dimensional rectangle,
78+
> The **matrix** is mathematical concept - numbers evenly arranged in a rectangle. This can be a two dimensional rectangle,
8079
> like the shape of the screen you're looking at now. Or it could be a three dimensional equivalent, a cuboid, or have
8180
> even more dimensions, but always keeping the evenly spaced arrangement of numbers. In computing, **array** refers
8281
> to a structure in the computer's memory where data is stored in evenly-spaced **elements**. This is strongly analogous
@@ -85,6 +84,9 @@ but first the necessary imports.
8584
> in its memory. The important thing is that the computer stores values describing the pixels in images, as arrays. And
8685
> the terms matrix and array can be used intechangably.
8786
{: .callout}
87+
88+
First, the necessary imports:
89+
8890
~~~
8991
"""
9092
* Python libraries for learning and performing image processing.*

0 commit comments

Comments
 (0)