3. Filters

A filter, for video-pipeline intents and purposes, can be thought of as an independent module that knows how to filter/manipulate/transform an image frame. The transformation logic changes by implementation.

3.1. Built-In Filters

The built-in filters are mostly built off of scikit-image and intentionally don’t do much processing to keep them simple to provide a general idea of how one might go about building their own.

Available implementations:

  • GrayScaleFameFilter - Converts image frame to a gray scale image frame.
  • FindEdgesFrameFilter- Finds the edges in an image frame. Currently Not Implemented in 0.0.1

3.2. Custom Filters

Currently Not Implemented in 0.0.1

To learn how to build your own custom filter see the custom filter example.