Metadata-Version: 2.1
Name: EasyVision
Version: 0.0.3
Summary: Easy Computer Vision Library using OpenCV.
Home-page: https://github.com/FoxIS/
Author: Andrius Mikonis
Author-email: andrius.mikonis@gmail.com
Maintainer: Andrius Mikonis
Maintainer-email: andrius.mikonis@gmail.com
License: BSD 3-Clause
Download-URL: https://pypi.python.org/pypi/EasyVision/0.0.3#downloads
Platform: Windows
Platform: MacOS
Platform: Unix
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: numpy (==1.15.4)
Requires-Dist: opencv-contrib-python (==3.4.2.16)
Requires-Dist: pyro4 (>=4.75)
Provides-Extra: docs
Requires-Dist: sphinx (==1.8.1) ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Requires-Dist: sphinx-jinja ; extra == 'docs'
Requires-Dist: sphinx-copybutton ; extra == 'docs'
Requires-Dist: docfly (>=0.0.16) ; extra == 'docs'
Requires-Dist: rstobj ; extra == 'docs'
Requires-Dist: pygments ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: pytest (>=3.2.3) ; extra == 'tests'
Requires-Dist: pytest-mock (>=1.10.0) ; extra == 'tests'
Requires-Dist: pytest-cov (<2.6.0) ; extra == 'tests'
Requires-Dist: numpy (==1.15.4) ; extra == 'tests'
Requires-Dist: opencv-contrib-python (==3.4.2.16) ; extra == 'tests'
Requires-Dist: pyro4 (>=4.75) ; extra == 'tests'

.. image:: https://readthedocs.org/projects/easyvision/badge/?version=latest
    :target: https://easyvision.readthedocs.io/?badge=latest
    :alt: Documentation Status

.. image:: https://travis-ci.org/foxis/EasyVision.svg?branch=master
    :target: https://travis-ci.org/foxis/EasyVision?branch=master

.. image:: https://codecov.io/gh/FoxIS/EasyVision/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/foxis/EasyVision

.. image:: https://img.shields.io/pypi/v/EasyVision.svg
    :target: https://pypi.python.org/pypi/EasyVision

.. image:: https://img.shields.io/pypi/l/EasyVision.svg
    :target: https://pypi.python.org/pypi/EasyVision

.. image:: https://img.shields.io/pypi/pyversions/EasyVision.svg
    :target: https://pypi.python.org/pypi/EasyVision

.. image:: https://img.shields.io/badge/STAR_Me_on_GitHub!--None.svg?style=social
    :target: https://github.com/foxis/EasyVision

------


.. image:: https://img.shields.io/badge/Link-Document-blue.svg
      :target: https://easyvision.readthedocs.io/index.html

.. image:: https://img.shields.io/badge/Link-API-blue.svg
      :target: https://easyvision.readthedocs.io/py-modindex.html

.. image:: https://img.shields.io/badge/Link-Source_Code-blue.svg
      :target: https://easyvision.readthedocs.io/py-modindex.html

.. image:: https://img.shields.io/badge/Link-Install-blue.svg
      :target: `install`_

.. image:: https://img.shields.io/badge/Link-GitHub-blue.svg
      :target: https://github.com/foxis/EasyVision

.. image:: https://img.shields.io/badge/Link-Submit_Issue-blue.svg
      :target: https://github.com/foxis/EasyVision/issues

.. image:: https://img.shields.io/badge/Link-Request_Feature-blue.svg
      :target: https://github.com/foxis/EasyVision/issues

.. image:: https://img.shields.io/badge/Link-Download-blue.svg
      :target: https://pypi.org/pypi/EasyVision#files


Welcome to ``EasyVision`` Documentation
==============================================================================

Documentation for ``EasyVision`` - a simple framework of computer vision algorithms build on top of OpenCV.
Contains such features as:

    - Calibrated Mono and Stereo camera
    - Feature extraction
    - Color blob extraction
    - Histogram backprojection
    - Background separation
    - Multiprocessing
    - Remote processing using Pyro4
    - Visual Odometry and Mappings
    - Object recognition
    - Bag Of Words (``pip install pyDBoW3``)


.. note::

    Bag Of Words depend on `pyDBoW3 <https://github.com/foxis/pyDBoW3>`_

.. _install:

Install
------------------------------------------------------------------------------

``EasyVision`` is released on PyPI, so all you need is:

.. code-block:: console

    $ pip install EasyVision

To upgrade to latest version:

.. code-block:: console

    $ pip install --upgrade EasyVision


