File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,16 @@ let's start our exploration with 15 pixels in a 5 X 3 matrix with 2 colours and
75
75
work our way up to that complexity,
76
76
but first the necessary imports.
77
77
78
+ > ## Matrices, arrays, images and pixels
79
+ > The ** matrix** is mathematical concept - numbers evenly arranged in a rectangle. This can be a two dimensional rectangle,
80
+ > like the shape of the screen you're looking at now. Or it could be a three dimensional equivalent, a cuboid, or have
81
+ > even more dimensions, but always keeping the evenly spaced arrangement of numbers. In computing, ** array** refers
82
+ > to a structure in the computer's memory where data is stored in evenly-spaced ** elements** . This is strongly analogous
83
+ > to a matrix. A ` numpy ` array is a ** type** of variable (a simpler example of a type is an integer). For our purposes,
84
+ > the distinction between matrices and arrays is not important, we don't really care how the computer arranges our data
85
+ > in its memory. The important thing is that the computer stores values describing the pixels in images, as arrays. And
86
+ > the terms matrix and array can be used intechangably.
87
+ {: .callout}
78
88
~~~
79
89
"""
80
90
* Python libraries for learning and performing image processing.*
You can’t perform that action at this time.
0 commit comments