intro.md 792 Bytes
Newer Older
Kai Chen's avatar
Kai Chen committed
1
## Introduction
Kai Chen's avatar
Kai Chen committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

`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).

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 machanism
- Various CNN architectures

See the [documentation](http://mmcv.readthedocs.io/en/latest) for more features and usage.


Kai Chen's avatar
Kai Chen committed
19
### Installation
Kai Chen's avatar
Kai Chen committed
20
21
22
23
24
25
26
27
28
29
30
31
32
33

Try and start with

```shell
pip install mmcv
```

If you want to install from source

```shell
git clone https://github.com/open-mmlab/mmcv.git
cd mmcv
pip install .  # (add "-e" if you want to develop or modify the codes)
```