Skip to main content

Image sequence abstraction for OpenCV.

Project description

Image Sequence Abstraction for Python

Video data can appear in different forms: bunch of files, a video file, a network stream etc. We provide an abstraction for ordered image sources that serve as an isolation from a specific source type.

The interface is simple:

import imagesource

images = imagesource.VideoSource('tests/data/MOV02522.MPG')
img100 = images.get_image(100)
img101 = images.get_next_image()
images.rewind()
img000 = images.get_next_image()
images.write_images('out/%03d.png', 100)

images2 = imagesource.FilesSource('tests/data/frames/%03d.jpg')
# same interface as above ...

The basic sources are VideoSource and FilesSource for video files and sequences of image files respectively. The TimedVideoSource extracts frame timestamps from video files. The SynchronizedSource translates frame numbers using a table. This can be used for creating a synchronized set of sources.

For more examples see tests/test.py

Installation

Install OpenCV 3.x with Python bindings and Numpy using a system package manager.

$ pip install imagesource

The TimedVideoSource requires ffprobe command from the ffmpeg suite.

Testing

$ pip install nose
$ nosetests

Writing Extensions

It is simple to write transparent image source wrappers that post-process image data from an underlying image source (e.g. background subtraction, radial distortion removal, ...).

An example background subtracted image source:

class BackgroundSubtractedSource(imagesource.ImageSource):
    def __init__(self, source):
        self.source = source
        self.bgs = cv2.createBackgroundSubtractorMOG2(...)

        def get_image(self, frame):
            img = self.source.get_image(frame)
            return self.bgs.apply(img)

        def get_next_image(self):
            img = self.source.get_next_image()
            return self.bgs.apply(img)

        def rewind(self):
            self.source.rewind()

Project details


Download files

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

Source Distribution

ImageSource-1.1.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

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

ImageSource-1.1-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file ImageSource-1.1.tar.gz.

File metadata

  • Download URL: ImageSource-1.1.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.3 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for ImageSource-1.1.tar.gz
Algorithm Hash digest
SHA256 3db0b6de5c7f6bca52e38916707168d6b62a675fc444c7cb6debf71544a183e6
MD5 0193e5270f0894c4e3c7b096fd069b81
BLAKE2b-256 d4691aad30c414282eb890d5716978451943291f0390ccb7a85279055ae5c749

See more details on using hashes here.

File details

Details for the file ImageSource-1.1-py3-none-any.whl.

File metadata

  • Download URL: ImageSource-1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.3 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for ImageSource-1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7cf97132562e63b60342330d34d292757123b47ab6a21d61fc133ee156154b05
MD5 91c729200e2de25c16d389666817a9e2
BLAKE2b-256 4bcb5bef25818c21c0c796213af8fee44cf3b187dfe06b7d3fce29b6129501a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page