#real-time #middleware #copper

cu-v4l

This is a source task that captures video from a V4L2 device

2 unstable releases

new 0.7.0 Mar 13, 2025
0.6.0 Jan 21, 2025

#30 in #copper

Download history 82/week @ 2025-01-19 7/week @ 2025-01-26 12/week @ 2025-02-02 2/week @ 2025-02-09 84/week @ 2025-03-09

84 downloads per month

Apache-2.0

83KB
868 lines

Video4Linux capture driver for Copper (V4L2)

Compatibility

It should work with any v4l device (USB, MIPI etc.).

Usage

Add the driver like any other source in Copper:

    tasks: [
        (
            id: "src",
            type: "cu_v4l::V4l",
            params: {
                device: 0, // /dev/video0
                width: 3280,
                height: 2160,
                fps: 30,  // frames per second, fractions are not supported yet.
                fourcc: "NV12", // format of the image
                buffers: 4, // How many images copper is able to keep in memory
                timeout_ms: 500, // How long should we wait for a new image
            },
        ),
    ]

When you connect this driver to the rest of the system you need to use the cu_sensor_payloads::CuImage message type.

    cnx: [
        (src: "src",  dst: "dst",   msg: "cu_sensor_payloads::CuImage"),
    ],

Dependencies

~19–32MB
~463K SLoC