OpenMMLab Computer Vision Foundation
 
 
 
 
Go to file
Rinat Shigapov aea750051f fix dependencies (#146)
* fix requirements

* don't reuse build dependencies between different envs

* minor fix

* change the order of opencv and opencv-headless
2019-11-21 23:34:26 +08:00
docs Track iter progress (#112) 2019-08-20 15:05:17 +08:00
examples Add yapf and isort to travis (#96) 2019-07-30 23:15:56 +08:00
mmcv prevent from hangning in cv2.imshow()/cv2.waitkey (#145) 2019-11-17 17:16:45 +08:00
tests Add rgb2gray and gray2rgb (#139) 2019-10-06 22:46:06 +08:00
.dockerignore fix dependencies (#146) 2019-11-21 23:34:26 +08:00
.gitignore Use torch.utils.tensorboard instead of tensorboardX (#108) 2019-08-11 13:30:20 +08:00
.travis.yml fix dependencies (#146) 2019-11-21 23:34:26 +08:00
CONTRIBUTING.md Create CONTRIBUTING.md (#102) 2019-07-31 20:40:59 +08:00
Dockerfile fix dependencies (#146) 2019-11-21 23:34:26 +08:00
LICENSE Update LICENSE 2018-10-19 22:07:01 +08:00
MANIFEST.in Fix the compiling bug when using `pip install mmcv` (#88) 2019-07-07 21:41:31 +08:00
README.rst fix dependencies (#146) 2019-11-21 23:34:26 +08:00
setup.cfg fix the compiling on mac os (#97) 2019-07-31 02:22:20 +08:00
setup.py fix dependencies (#146) 2019-11-21 23:34:26 +08:00

README.rst

MMCV
====

.. image:: https://travis-ci.com/open-mmlab/mmcv.svg?branch=master
  :target: https://travis-ci.com/open-mmlab/mmcv

.. image:: https://codecov.io/gh/open-mmlab/mmcv/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/open-mmlab/mmcv

.. image:: 	https://img.shields.io/github/license/open-mmlab/mmcv.svg
  :target: https://github.com/open-mmlab/mmcv/blob/master/LICENSE


Introduction
------------

MMCV is a foundational python library for computer vision research and supports many
research projects in MMLAB, such as `MMDetection <https://github.com/open-mmlab/mmdetection>`_
and `MMAction <https://github.com/open-mmlab/mmaction>`_.

It provides the following functionalities.

- Universal IO APIs
- Image processing
- Video processing
- Image and annotation visualization
- Useful utilities (progress bar, timer, ...)
- PyTorch runner with hooking mechanism
- Various CNN architectures

See the `documentation <http://mmcv.readthedocs.io/en/latest>`_ for more features and usage.


Installation
------------

Try and start with

.. code::

    pip install mmcv


or install from source

.. code::

    git clone https://github.com/open-mmlab/mmcv.git
    cd mmcv
    pip install -e .

Note: If you would like to use :code:`opencv-python-headless` instead of :code:`opencv-python`,
e.g., in a minimum container environment or servers without GUI,
you can first install it before installing MMCV to skip the installation of :code:`opencv-python`.