circuitpython/ports/atmel-samd/common-hal
Jeff Epler a8614a61dc ParallelImageCapture: Add continuous capture on espressif
By having a pair of buffers, the capture hardware can fill one buffer while
Python code (including displayio, etc) operates on the other buffer.  This
increases the responsiveness of camera-using code.

On the Kaluga it makes the following improvements:
 * 320x240 viewfinder at 30fps instead of 15fps using directio
 * 240x240 animated gif capture at 10fps instead of 7.5fps

As discussed at length on Discord, the "usual end user" code will look like
this:

    camera = ...

    with camera.continuous_capture(buffer1, buffer2) as capture:
        for frame in capture:
            # Do something with frame

However, rather than presenting a context manager, the core code consists of
three new functions to start & stop continuous capture, and to get the next
frame.  The reason is twofold.  First, it's simply easier to implement the
context manager object in pure Python.  Second, for more advanced usage, the
context manager may be too limiting, and it's easier to iterate on the right
design in Python code.  In particular, I noticed that adapting the
JPEG-capturing programs to use continuous capture mode needed a change in
program structure.

The camera app was structured as
```python
while True:
    if shutter button was just pressed:
        capture a jpeg frame
    else:
        update the viewfinder
```

However, "capture a jpeg frame" needs to (A) switch the camera settings and (B)
capture into a different, larger buffer then (C) return to the earlier
settings. This can't be done during continuous capture mode. So just
restructuring it as follows isn't going to work:

```python
with camera.continuous_capture(buffer1, buffer2) as capture:
    for frame in capture:
        if shutter button was just pressed:
            capture a jpeg frame, without disturbing continuous capture mode
        else:
            update the viewfinder
```

The continuous mode is only implemented in the espressif port; others
will throw an exception if the associated methods are invoked.  It's not
impossible to implement there, just not a priority, since these micros don't
have enough RAM for two framebuffer copies at any resonable sizes.

The capture code, including single-shot capture, now take mp_obj_t in the
common-hal layer, instead of a buffer & length.  This was done for the
continuous capture mode because it has to identify & return to the user the
proper Python object representing the original buffer.  In the Espressif port,
it was convenient to implement single capture in terms of a multi-capture,
which is why I changed the singleshot routine's signature too.
2021-11-03 11:02:46 -05:00
..
_pew run code formatting script 2021-03-15 19:27:36 +05:30
alarm staying caught up with runtime changes 2021-10-24 15:49:14 -07:00
analogio [#4701] Correct DAC clock speed comments for SAMD21 and SAMD51 2021-10-04 22:18:26 -06:00
audiobusio fix SAMD21 PDMIn DMA event use 2021-10-19 13:18:14 -04:00
audioio improve SAMD audio DMA 2021-08-21 14:34:37 -04:00
board Add license to some obvious files. 2020-07-06 19:16:25 +01:00
busio Merge pull request #5484 from dhalbert/samd21-pdmin-fix 2021-10-20 09:47:13 -07:00
canio Merge tag 'v1.17' into merge-1.17 2021-10-15 08:20:54 -05:00
countio codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
digitalio codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
frequencyio FrequencyIn: do not raise in interrupt handler 2020-12-22 18:54:42 -05:00
i2cperipheral Merge tag 'v1.17' into merge-1.17 2021-10-15 08:20:54 -05:00
imagecapture ParallelImageCapture: Add continuous capture on espressif 2021-11-03 11:02:46 -05:00
microcontroller samd51: Add watchdog timer 2021-10-19 10:52:14 -05:00
neopixel_write Fix SAMD 2021-05-14 16:14:24 -07:00
nvm codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
os codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
paralleldisplay Fix incorrect macros 2021-08-30 14:40:14 -07:00
ps2io codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
pulseio Allow sleep while paused 2021-08-11 10:48:39 -07:00
pwmio Fix build with filter to do OR 2021-08-11 12:10:51 -07:00
rgbmatrix Fix build with filter to do OR 2021-08-11 12:10:51 -07:00
rotaryio rotaryio: Add the ability to set the divisor 2021-10-16 09:43:45 -05:00
rtc Merge tag 'v1.17' into merge-1.17 2021-10-15 08:20:54 -05:00
sdioio codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
supervisor codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
touchio codeformat: Fix filename matching 2021-04-30 10:48:08 -05:00
watchdog Apply suggestions from code review 2021-10-19 13:25:28 -05:00