Giter Club home page Giter Club logo

OpenCV Playground

The OpenCV Playground is a Qt6 application that brings together improved documentation alongside OpenCV functions with the ability to explore the effects of function parameters on an image in real time.

It also comes with a custom Pipeline Launcher that allows you to build and interact with your own sequence of image transformations along with custom build functions.

Full documentation can be found on Read the Docs.

Demo

Installation

Currently tested with python 3.8.10/3.10.0 and opencv-contrib-python-headless 4.8.0.76 on an M1 Mac.

From PyPi:

pip install opencv-pg

From Github Repo:

pip install git+https://github.com/opencv-pg/opencv-pg

Note for Linux Users

NOTE: I no longer have access to anything but a Mac (as of 1.0.2), so I can't confirm if the below still stands. It did in 1.0.1.

On Ubuntu 16.04 (others currently untested), there may be missing links to xcb related shared objects.

tldr;

sudo apt-get install --reinstall libxcb-xinerama0

Digging Deeper

If you see errors about xcb, you can perform the following to help troubleshoot. In your terminal, make the following export:

export QT_DEBUG_PLUGINS=1

Run opencvpg again and validate the output. The final lines will likely mention details about files not found. Likely libxcb-xinerama.so.0.

Run the following:

cd your_venv/lib/pythonX.X/site-packages/PySide2/Qt/plugins/platforms/
ldd libqxcb.so | grep "not found"

This will print any missing links. In our case, libxcb-xinerama.so.0 showed up a couple times. Reinstalling the package as follows resolved the issue:

sudo apt-get install --reinstall libxcb-xinerama0

Once it’s working, you may want to disable that QT_DEBUG_PLUGINS env variable so it doesn’t throw extra garbage in your output.

Usage

Playground

To launch the OpenCV Playground with:

  • The built-in image:
opencvpg
  • An image of your choice:
opencvpg --image <path-to-image.png>
  • Without the documentation window:
opencvpg --no-docs

Custom Pipeline

The following is an example of building a custom Pipeline.

from opencv_pg import Pipeline, Window, launch_pipeline
from opencv_pg import support_transforms as supt
from opencv_pg import transforms as tf

if __name__ == '__main__':
    my_image = '/path/to/image.png'

    # Creates two windows
    pipeline = Pipeline([
        Window([
            supt.LoadImage(my_image),
            supt.CvtColor(),
            tf.InRange(),
            supt.BitwiseAnd(),
        ]),
        Window([
            tf.Canny(),
        ]),
    ])

    launch_pipeline(pipeline)

Then run the file.

Development

Installation

To install in development mode:

git clone https://github.com/opencv-pg/opencv-pg
pip install -e opencv-pg/[dev]

Running Tests

cd tests
pytest

Generating Docs

  • Go into the top level docs directory
  • run sphinx-apidoc -f -o source/ ../src/opencv_pg
  • run make html

Output will be in the docs/build/html/ directory.

opencv-pg's Projects

opencv-pg icon opencv-pg

Interactive Qt5 Application to explore opencv functions in realtime with an interactive image processing pipeline

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.