File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ The driver for the official LCD160CR is included in Pyboard firmware. Source is
34
34
35
35
## 1.1 Interpolation
36
36
37
- In camera applications the 8 * 8 matrix of the AMG8833 gives a "blocky" effect.
37
+ In camera applications the 8x8 matrix of the AMG8833 gives a "blocky" effect.
38
38
This can be reduced by using bicubic interpolation. Files and
39
39
[ doc] ( ./interpolate/README.md ) for this are in the ` interpolate ` directory.
40
40
@@ -69,7 +69,7 @@ Data access methods:
69
69
callback (see commented out code in ` cam.py ` ).
70
70
* ` __getitem__ ` Args ` row ` , ` col ` . Enables access to the data retrieved by
71
71
` refresh ` . Return value is a signed integer representing the temperature of
72
- that pixel in °C (or °C * 4 in high resolution mode).
72
+ that pixel in °C (or °C x 4 in high resolution mode).
73
73
* ` temperature ` No args. Returns the device temperature in °C as a float.
74
74
75
75
Mode setting methods:
Original file line number Diff line number Diff line change 1
1
# AMG8833 Interpolating Camera
2
2
3
- The 8 * 8 resolution of the AMG8833 produces a "blocky" display. The illusion of
3
+ The 8x8 resolution of the AMG8833 produces a "blocky" display. The illusion of
4
4
higher resolution may be achieved using bicubic interpolation. This is
5
- computationally intensive. On a Pyboard 1.1 the frame rate for 32 * 32 pixels
5
+ computationally intensive. On a Pyboard 1.1 the frame rate for 32x32 pixels
6
6
using Python code is ~ 1Hz. This can be increased to ~ 2.5Hz using assembler.
7
7
8
8
##### [ Main README] ( ../README.md )
9
9
10
10
# 1. Files
11
11
12
- * ` cam_interp.py ` 32 * 32 pixel demo using the Adafruit 0.96 inch OLED.
12
+ * ` cam_interp.py ` 32x32 pixel demo using the Adafruit 0.96 inch OLED.
13
13
* ` interpolate.py ` Portable interpolator using optimised Python code.
14
14
* ` interpolate_a.py ` Version using Arm Thumb2 Assembler.
15
15
@@ -30,9 +30,9 @@ Methods:__
30
30
31
31
# Usage
32
32
33
- Converting a working 8 * 8 camera application to use interpolation is simple. The
34
- aim is to replace the 8 * 8 array of pixels with a larger array of smaller
35
- pixels: the ` cam_interp.py ` demo uses 32 * 32 squares of size 2 * 2 .
33
+ Converting a working 8x8 camera application to use interpolation is simple. The
34
+ aim is to replace the 8x8 array of pixels with a larger array of smaller
35
+ pixels: the ` cam_interp.py ` demo uses 32x32 squares of size 2x2 .
36
36
37
37
After instantiating the sensor, create an ` Interpolator ` :
38
38
``` python
You can’t perform that action at this time.
0 commit comments