Skip to main content

Provide opencv sources to streamz

Project description

streamz-opencv

Provide an opencv capture source for streamz.

Quickstart

Install streamz and streamz-opencv:

python -m pip install streamz streamz-opencv

Build your pipeline:

import cv2
from streamz import Stream
import streamz_opencv

def scale(img, scale=1.0):
    scale_percent = 60 # percent of original size
    width = int(img.shape[1] * scale)
    height = int(img.shape[0] * scale)
    dim = (width, height)
    resized = cv2.resize(img, dim, interpolation = cv2.INTER_AREA)
    return resized


def save(img, path):
    cv2.imwrite(path, img)

stream = Stream.from_opencv(0, asynchronous=True)
stream.map(scale, scale=0.5).sink(save, path='small.jpg')
stream.map(scale, scale=1.5).sink(save, path='big.jpg')
stream.start()

good to know

  • testing via pytest
  • dep management via venv+setup.py+pip-tools
  • see example usage in test

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

streamz-opencv-0.1.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Supported by

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