OpenMMLab Computer Vision Foundation
 
 
 
 
Go to file
Kai Chen 2330c4f468
Add pre-commit hooks (#156)
* add pre-commit hooks

* update yapf version
2019-12-12 21:40:42 +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 add an argument to skip os.symlink (#155) 2019-12-12 20:41:43 +08:00
tests fix the code style of yapf 0.29 (#150) 2019-12-02 13:14:33 +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
.pre-commit-config.yaml Add pre-commit hooks (#156) 2019-12-12 21:40:42 +08:00
.travis.yml Added Weight and Biases logger. (#143) 2019-12-02 12:32:50 +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
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 Add pre-commit hooks (#156) 2019-12-12 21:40:42 +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`.