:mod:`imagecapture` =================== .. py:module:: imagecapture .. autoapi-nested-parse:: Support for "Parallel capture" interfaces .. raw:: html

Available on these boards

.. py:class:: ParallelImageCapture(*, data_pins: List[microcontroller.Pin], clock: microcontroller.Pin, vsync: Optional[microcontroller.Pin], href: Optional[microcontroller.Pin]) Capture image frames from a camera with parallel data interface Create a parallel image capture object :param List[microcontroller.Pin] data_pins: The data pins. :param microcontroller.Pin clock: The pixel clock input. :param microcontroller.Pin vsync: The vertical sync input, which has a negative-going pulse at the beginning of each frame. :param microcontroller.Pin href: The horizontal reference input, which is high whenever the camera is transmitting valid pixel information. .. py:method:: capture(buffer: _typing.WriteableBuffer) -> _typing.WriteableBuffer Capture a single frame into the given buffer. This will stop a continuous-mode capture, if one is in progress. .. py:method:: continuous_capture_start(buffer1: _typing.WriteableBuffer, buffer2: _typing.WriteableBuffer, /) -> None Begin capturing into the given buffers in the background. Call `continuous_capture_get_frame` to get the next available frame, and `continuous_capture_stop` to stop capturing. Until `continuous_capture_stop` (or `deinit`) is called, the `ParallelImageCapture` object keeps references to ``buffer1`` and ``buffer2``, so the objects will not be garbage collected. .. py:method:: continuous_capture_get_frame() -> _typing.WriteableBuffer Return the next available frame, one of the two buffers passed to `continuous_capture_start` .. py:method:: continuous_capture_stop() -> None Stop continuous capture. Calling this method also causes the object to release its references to the buffers passed to `continuous_capture_start`, potentially allowing the objects to be garbage collected. .. py:method:: deinit() -> None Deinitialize this instance .. py:method:: __enter__() -> ParallelImageCapture No-op used in Context Managers. .. py:method:: __exit__() -> None Automatically deinitializes the hardware on context exit. See :ref:`lifetime-and-contextmanagers` for more info.