Skip to main content

omnicam

A small, unified API for reading frames from USB cameras, IP streams, video files, screen capture, and Raspberry Pi cameras.

Features

  • Unified BaseCamera interface across backends
  • OpenCV-based capture for USB webcams, video files, RTSP/HTTP streams, and GStreamer pipelines
  • Optional Raspberry Pi Camera support (Picamera2)
  • Optional screen capture via mss

Installation

pip install omnicam

Optional extras:

pip install omnicam[opencv]
pip install omnicam[screen]
pip install omnicam[pi]

Quickstart

from omnicam import SimpleCamera

with SimpleCamera(index=0) as cam:
    frame = cam.read()
    if frame is not None:
        print(frame.shape)

Camera types

from omnicam import FileCapture, InternetCapture, ScreenCapture

# Video file
cam = FileCapture("/path/to/video.mp4")

# IP camera or MJPEG stream
cam = InternetCapture("http://192.168.1.10:8080/video")

# Screen capture (requires omnicam[screen])
cam = ScreenCapture(index=1)

Raspberry Pi camera

from omnicam import PiCamera

cam = PiCamera(info="IMX219", resolution="720p")

GStreamer and Gazebo

from omnicam import GStreamerCapture, GazeboCamera

pipeline = (
    GStreamerCapture.GstPipeline()
    .add("v4l2src", device="/dev/video0")
    .add("videoconvert")
    .add("appsink")
)
cam = GStreamerCapture(pipeline)

# Gazebo (requires gz tools available on PATH)
cam = GazeboCamera(topic_name="my_camera")

BaseCamera geometry helper

All cameras implement project_pixel_to_ground for projecting a pixel to ground coordinates.

Usage example:

from omnicam import SimpleCamera

with SimpleCamera(index=0) as cam:
    north_m, east_m = cam.project_pixel_to_ground(
        px=640,
        py=360,
        alt_m=120.0,
        roll=0.0,
        pitch=0.0,
        yaw=0.0,
    )
    print(north_m, east_m)

Notes:

  • roll, pitch, yaw, and alt_m are for the body frame the camera is attached to.
  • The camera's offset and offset rotation are applied when projecting:
    • offset: [x_right, y_down, z_forward] in meters (optical frame)
    • offset_roll, offset_pitch, offset_yaw: radians

Parameters:

  • px, py: Pixel coordinates in the image.
  • alt_m: Camera altitude in meters.
  • roll, pitch, yaw: Camera attitude in radians.

Returns:

  • (north_m, east_m): Ground offset in meters relative to the camera.

CameraInfo (advanced)

CameraInfo describes physical camera parameters and enables focal-length math and focus validation. It is optional but useful when you need real-world camera intrinsics.

Fields:

  • name: Full model name.
  • short_names: Short identifiers (sensor/model code).
  • focal_length_mm: (fx_mm, fy_mm) in millimeters.
  • pixel_size_um: Pixel size in micrometers.
  • max_resolution: (width, height) at sensor maximum.
  • aperture_f: F-number (e.g., 2.0).
  • hfov_deg: Horizontal field of view in degrees.
  • focus_type: "Fixed" | "Autofocus" | "Manual" | "Unknown".
  • has_ir_filter: True if the camera has an IR filter.

Usage example:

from omnicam import SimpleCamera
from omnicam.base_camera import CameraInfo

info = CameraInfo(
    name="My Camera Model",
    short_name="MYCAM",
    focal_length_px=(4.0, 4.0),
    pixel_size_um=1.4,
    max_resolution=(1920, 1080),
    aperture_f=2.0,
    hfov_deg=70.0,
    focus_type="Manual",
    has_ir_filter=True,
)

with SimpleCamera(index=0, info=info) as cam:
    fx, fy = cam.focal_length  # focal length in pixels at current size

If you only know focal length in pixel units, use:

from omnicam.base_camera import CameraInfo

info = CameraInfo(
    name="Synthetic",
    short_name="SYN",
    aperture_f=1.0,
    focal_length_px=(800.0, 800.0),
    max_resolution=(1280, 720),
    update_rate=60.0
)

Default Raspberry Pi cameras (short name → full name):

  • OV5647, 1Camera Module 1
  • OV5647 NoIR, 1NCamera Module 1 NoIR
  • IMX219, 2Camera Module 2
  • IMX219 NoIR, 2NCamera Module 2 NoIR
  • IMX708 Standard, 3Camera Module 3 - Standard
  • IMX708 NoIR, 3NCamera Module 3 - Standard NoIR
  • IMX708 Wide, 3WCamera Module 3 - Wide
  • IMX708 Wide NoIR, 3WNCamera Module 3 - Wide NoIR
  • IMX477 6mm, HQ6High Quality Camera w/ 6mm Lens
  • IMX477 16mm, HQ16High Quality Camera w/ 16mm Lens
  • IMX477 35mm, HQ35High Quality Camera w/ 35mm Lens
  • IMX477 M12-8mm, HQ8High Quality Camera w/ 8mm M12 Lens
  • IMX477 M12-25mm, HQ25High Quality Camera w/ 25mm M12 Lens
  • IMX477 M12-Fish, HQ2.7High Quality Camera w/ 2.7mm M12 Fisheye
  • IMX296 6mm, HQ6Global Shutter Camera w/ 6mm Lens
  • IMX296 16mm, HQ16Global Shutter Camera w/ 16mm Lens
  • IMX500, PiAIRaspberry Pi AI Camera

Notes

  • numpy is required. OpenCV-based backends need omnicam[opencv].
  • GStreamer and Gazebo features rely on system-level tooling.

License

MIT. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

omnicam-0.3.7.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

omnicam-0.3.7-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file omnicam-0.3.7.tar.gz.

File metadata

  • Download URL: omnicam-0.3.7.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.20

File hashes

Hashes for omnicam-0.3.7.tar.gz
Algorithm Hash digest
SHA256 5dffc8258e8894f5dc98273dce6fd734c604a1bb96b4b8c15459b3d0919f2a66
MD5 ea3f2d0630f96db173a59063617b0c13
BLAKE2b-256 e519557488ce16f19ce1a2872413ce07d7169cfa0b0309e599060e88ca21a4e4

See more details on using hashes here.

File details

Details for the file omnicam-0.3.7-py3-none-any.whl.

File metadata

  • Download URL: omnicam-0.3.7-py3-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.20

File hashes

Hashes for omnicam-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 577f1369cf58ff7af5231026bef1ce02c4105cc7fd0f0567b7d37e38e3752ee7
MD5 96cb30169307255308eee111a66b7582
BLAKE2b-256 98c83e5f3991356f818928aa2d1eacfe022c0a3b3ec2787697463ba639dc7dce

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.7 This release

2 files

0.3.6

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.9

2 files

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

2 files

0.2.4

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page