OpenMMLab Computer Vision Foundation
 
 
 
 
Go to file
Korabelnikov Aleks b480ee475f prevent from hangning in cv2.imshow()/cv2.waitkey (#145)
* prevent from hangning in cv2.imshow()/cv2.waitkey

case:
Window has been closed after cv2.imshow; cv2.waitKey;
expected behavior:
- continue program
actual  behavior:
- program hangs

This commit fixes it

* fix linter
2019-11-17 17:16:45 +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
.gitignore Use torch.utils.tensorboard instead of tensorboardX (#108) 2019-08-11 13:30:20 +08:00
.travis.yml Add yapf and isort to travis (#96) 2019-07-30 23:15:56 +08:00
CONTRIBUTING.md Create CONTRIBUTING.md (#102) 2019-07-31 20:40:59 +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 update version to v0.2.11 (#98) 2019-07-31 02:33:58 +08:00
requirements.txt add requirements.txt 2018-10-13 01:50:42 +08:00
setup.cfg fix the compiling on mac os (#97) 2019-07-31 02:22:20 +08:00
setup.py install cython automatically as a dependency (#101) 2019-07-31 20:29:04 +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 .