getting_started.md 8.03 KB
Newer Older
twang's avatar
twang committed
1
# Prerequisites
zhangwenwei's avatar
zhangwenwei committed
2

twang's avatar
twang committed
3
4
5
6
7
8
- Linux or macOS (Windows is not currently officially supported)
- Python 3.6+
- PyTorch 1.3+
- CUDA 9.2+ (If you build PyTorch from source, CUDA 9.0 is also compatible)
- GCC 5+
- [mmcv](https://github.com/open-mmlab/mmcv)
zhangwenwei's avatar
Doc  
zhangwenwei committed
9

twang's avatar
twang committed
10
# Installation
zhangwenwei's avatar
Doc  
zhangwenwei committed
11

twang's avatar
twang committed
12
## Install mmdetection
zhangwenwei's avatar
Doc  
zhangwenwei committed
13

twang's avatar
twang committed
14
a. Create a conda virtual environment and activate it.
zhangwenwei's avatar
zhangwenwei committed
15

twang's avatar
twang committed
16
17
18
```shell
conda create -n open-mmlab python=3.7 -y
conda activate open-mmlab
zhangwenwei's avatar
Doc  
zhangwenwei committed
19
20
```

twang's avatar
twang committed
21
b. Install PyTorch and torchvision following the [official instructions](https://pytorch.org/), e.g.,
Wenwei Zhang's avatar
Wenwei Zhang committed
22

twang's avatar
twang committed
23
24
```shell
conda install pytorch torchvision -c pytorch
Wenwei Zhang's avatar
Wenwei Zhang committed
25
26
```

twang's avatar
twang committed
27
28
Note: Make sure that your compilation CUDA version and runtime CUDA version match.
You can check the supported CUDA version for precompiled packages on the [PyTorch website](https://pytorch.org/).
Wenwei Zhang's avatar
Wenwei Zhang committed
29

twang's avatar
twang committed
30
31
`E.g.1` If you have CUDA 10.1 installed under `/usr/local/cuda` and would like to install
PyTorch 1.5, you need to install the prebuilt PyTorch with CUDA 10.1.
Wenwei Zhang's avatar
Wenwei Zhang committed
32

twang's avatar
twang committed
33
34
```python
conda install pytorch cudatoolkit=10.1 torchvision -c pytorch
Wenwei Zhang's avatar
Wenwei Zhang committed
35
36
```

twang's avatar
twang committed
37
38
`E.g. 2` If you have CUDA 9.2 installed under `/usr/local/cuda` and would like to install
PyTorch 1.3.1., you need to install the prebuilt PyTorch with CUDA 9.2.
zhangwenwei's avatar
zhangwenwei committed
39

twang's avatar
twang committed
40
41
```python
conda install pytorch=1.3.1 cudatoolkit=9.2 torchvision=0.4.2 -c pytorch
wangtai's avatar
wangtai committed
42
43
```

twang's avatar
twang committed
44
45
If you build PyTorch from source instead of installing the prebuilt pacakge,
you can use more CUDA versions such as 9.0.
46

twang's avatar
twang committed
47
48
c. Install [MMCV](https://mmcv.readthedocs.io/en/latest/).
*mmcv-full* is necessary since MMDetection3D relies on MMDetection, CUDA ops in *mmcv-full* are required.
zhangwenwei's avatar
Doc  
zhangwenwei committed
49

twang's avatar
twang committed
50
The pre-build *mmcv-full* could be installed by running: (available versions could be found [here](https://mmcv.readthedocs.io/en/latest/#install-with-pip))
zhangwenwei's avatar
zhangwenwei committed
51

twang's avatar
twang committed
52
53
54
```shell
pip install mmcv-full==latest+torch1.5.0+cu101 -f https://download.openmmlab.com/mmcv/dist/index.html
```
zhangwenwei's avatar
zhangwenwei committed
55

twang's avatar
twang committed
56
Optionally, you could also build the full version from source:
zhangwenwei's avatar
zhangwenwei committed
57

twang's avatar
twang committed
58
59
60
```shell
pip install mmcv-full
```
zhangwenwei's avatar
zhangwenwei committed
61

twang's avatar
twang committed
62
d. Install [MMDetection](https://github.com/open-mmlab/mmdetection).
zhangwenwei's avatar
zhangwenwei committed
63

twang's avatar
twang committed
64
65
66
```shell
pip install git+https://github.com/open-mmlab/mmdetection.git
```
zhangwenwei's avatar
zhangwenwei committed
67

twang's avatar
twang committed
68
Optionally, you could also build MMDetection from source in case you want to modify the code:
zhangwenwei's avatar
zhangwenwei committed
69
70

```shell
twang's avatar
twang committed
71
72
73
74
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
pip install -r requirements/build.txt
pip install -v -e .  # or "python setup.py develop"
zhangwenwei's avatar
zhangwenwei committed
75
76
```

twang's avatar
twang committed
77
**Important**:
zhangwenwei's avatar
zhangwenwei committed
78

twang's avatar
twang committed
79
1. The required versions of MMCV and MMDetection for different versions of MMDetection3D are as below. Please install the correct version of MMCV and MMDetection to avoid installation issues.
zhangwenwei's avatar
zhangwenwei committed
80

twang's avatar
twang committed
81
82
83
84
85
86
87
| MMDetection3D version | MMDetection version |    MMCV version     |
|:-------------------:|:-------------------:|:-------------------:|
| master              | mmdet>=2.5.0        | mmcv-full>=1.1.5, <=1.3|
| 0.8.0               | mmdet>=2.5.0        | mmcv-full>=1.1.5, <=1.3|
| 0.7.0               | mmdet>=2.5.0        | mmcv-full>=1.1.5, <=1.3|
| 0.6.0               | mmdet>=2.4.0        | mmcv-full>=1.1.3, <=1.2|
| 0.5.0               | 2.3.0               | mmcv-full==1.0.5|
zhangwenwei's avatar
zhangwenwei committed
88
89


twang's avatar
twang committed
90
e. Clone the MMDetection3D repository.
zhangwenwei's avatar
Doc  
zhangwenwei committed
91

twang's avatar
twang committed
92
93
94
95
```shell
git clone https://github.com/open-mmlab/mmdetection3d.git
cd mmdetection3d
```
zhangwenwei's avatar
zhangwenwei committed
96

twang's avatar
twang committed
97
f.Install build requirements and then install MMDetection3D.
zhangwenwei's avatar
zhangwenwei committed
98

twang's avatar
twang committed
99
100
101
```shell
pip install -v -e .  # or "python setup.py develop"
```
zhangwenwei's avatar
zhangwenwei committed
102

twang's avatar
twang committed
103
Note:
zhangwenwei's avatar
Doc  
zhangwenwei committed
104

twang's avatar
twang committed
105
106
1. The git commit id will be written to the version number with step d, e.g. 0.6.0+2e7045c. The version will also be saved in trained models.
It is recommended that you run step d each time you pull some updates from github. If C++/CUDA codes are modified, then this step is compulsory.
zhangwenwei's avatar
Doc  
zhangwenwei committed
107

twang's avatar
twang committed
108
    > Important: Be sure to remove the `./build` folder if you reinstall mmdet with a different CUDA/PyTorch version.
zhangwenwei's avatar
zhangwenwei committed
109

twang's avatar
twang committed
110
111
112
113
114
    ```shell
    pip uninstall mmdet3d
    rm -rf ./build
    find . -name "*.so" | xargs rm
    ```
zhangwenwei's avatar
zhangwenwei committed
115

twang's avatar
twang committed
116
2. Following the above instructions, mmdetection is installed on `dev` mode, any local modifications made to the code will take effect without the need to reinstall it (unless you submit some commits and want to update the version number).
zhangwenwei's avatar
zhangwenwei committed
117

twang's avatar
twang committed
118
119
3. If you would like to use `opencv-python-headless` instead of `opencv-python`,
you can install it before installing MMCV.
zhangwenwei's avatar
zhangwenwei committed
120

twang's avatar
twang committed
121
4. Some dependencies are optional. Simply running `pip install -v -e .` will only install the minimum runtime requirements. To use optional dependencies like `albumentations` and `imagecorruptions` either install them manually with `pip install -r requirements/optional.txt` or specify desired extras when calling `pip` (e.g. `pip install -v -e .[optional]`). Valid keys for the extras field are: `all`, `tests`, `build`, and `optional`.
zhangwenwei's avatar
zhangwenwei committed
122

twang's avatar
twang committed
123
5. The code can not be built for CPU only environment (where CUDA isn't available) for now.
zhangwenwei's avatar
zhangwenwei committed
124

twang's avatar
twang committed
125
## Another option: Docker Image
Wenwei Zhang's avatar
Wenwei Zhang committed
126

twang's avatar
twang committed
127
We provide a [Dockerfile](https://github.com/open-mmlab/mmdetection3d/blob/master/docker/Dockerfile) to build an image.
Wenwei Zhang's avatar
Wenwei Zhang committed
128

twang's avatar
twang committed
129
130
131
132
```shell
# build an image with PyTorch 1.6, CUDA 10.1
docker build -t mmdetection3d docker/
```
Wenwei Zhang's avatar
Wenwei Zhang committed
133

twang's avatar
twang committed
134
Run it with
Wenwei Zhang's avatar
Wenwei Zhang committed
135

twang's avatar
twang committed
136
137
138
```shell
docker run --gpus all --shm-size=8g -it -v {DATA_DIR}:/mmdetection3d/data mmdetection3d
```
Wenwei Zhang's avatar
Wenwei Zhang committed
139

twang's avatar
twang committed
140
## A from-scratch setup script
Wenwei Zhang's avatar
Wenwei Zhang committed
141

twang's avatar
twang committed
142
Here is a full script for setting up mmdetection with conda.
Wenwei Zhang's avatar
Wenwei Zhang committed
143

twang's avatar
twang committed
144
145
146
```shell
conda create -n open-mmlab python=3.7 -y
conda activate open-mmlab
Wenwei Zhang's avatar
Wenwei Zhang committed
147

twang's avatar
twang committed
148
149
# install latest pytorch prebuilt with the default prebuilt CUDA version (usually the latest)
conda install -c pytorch pytorch torchvision -y
Wenwei Zhang's avatar
Wenwei Zhang committed
150

twang's avatar
twang committed
151
152
# install mmcv
pip install mmcv-full
liyinhao's avatar
liyinhao committed
153

twang's avatar
twang committed
154
155
# install mmdetection
pip install git+https://github.com/open-mmlab/mmdetection.git
liyinhao's avatar
liyinhao committed
156

twang's avatar
twang committed
157
158
159
160
# install mmdetection3d
git clone https://github.com/open-mmlab/mmdetection3d.git
cd mmdetection3d
pip install -v -e .
zhangwenwei's avatar
zhangwenwei committed
161
```
liyinhao's avatar
liyinhao committed
162

twang's avatar
twang committed
163
164
165
## Using multiple MMDetection3D versions

The train and test scripts already modify the `PYTHONPATH` to ensure the script use the MMDetection3D in the current directory.
liyinhao's avatar
liyinhao committed
166

twang's avatar
twang committed
167
168
169
170
To use the default MMDetection3D installed in the environment rather than that you are working with, you can remove the following line in those scripts

```shell
PYTHONPATH="$(dirname $0)/..":$PYTHONPATH
liyinhao's avatar
liyinhao committed
171
172
```

twang's avatar
twang committed
173
# Verification
liyinhao's avatar
liyinhao committed
174

twang's avatar
twang committed
175
## Demo
zhangwenwei's avatar
zhangwenwei committed
176

wuyuefeng's avatar
Demo  
wuyuefeng committed
177
### Point cloud demo
zhangwenwei's avatar
Doc  
zhangwenwei committed
178

wuyuefeng's avatar
Demo  
wuyuefeng committed
179
We provide a demo script to test a single sample.
zhangwenwei's avatar
Doc  
zhangwenwei committed
180
181

```shell
wuyuefeng's avatar
Demo  
wuyuefeng committed
182
python demo/pcd_demo.py ${PCD_FILE} ${CONFIG_FILE} ${CHECKPOINT_FILE} [--device ${GPU_ID}] [--score-thr ${SCORE_THR}] [--out-dir ${OUT_DIR}]
zhangwenwei's avatar
Doc  
zhangwenwei committed
183
184
185
186
187
```

Examples:

```shell
188
python demo/pcd_demo.py demo/kitti_000008.bin configs/second/hv_second_secfpn_6x8_80e_kitti-3d-car.py checkpoints/hv_second_secfpn_6x8_80e_kitti-3d-car_20200620_230238-393f000c.pth
zhangwenwei's avatar
zhangwenwei committed
189
```
yinchimaoliang's avatar
yinchimaoliang committed
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
If you want to input a `ply` file, you can use the following function and convert it to `bin` format. Then you can use the converted `bin` file to generate demo.
Note that you need to install pandas and plyfile before using this script. This function can also be used for data preprocessing for training ```ply data```.
```python
import numpy as np
import pandas as pd
from plyfile import PlyData

def conver_ply(input_path, output_path):
    plydata = PlyData.read(input_path)  # read file
    data = plydata.elements[0].data  # read data
    data_pd = pd.DataFrame(data)  # convert to DataFrame
    data_np = np.zeros(data_pd.shape, dtype=np.float)  # initialize array to store data
    property_names = data[0].dtype.names  # read names of properties
    for i, name in enumerate(
            property_names):  # read data by property
        data_np[:, i] = data_pd[name]
    data_np.astype(np.float32).tofile(output_path)
```
Examples:
zhangwenwei's avatar
zhangwenwei committed
209

yinchimaoliang's avatar
yinchimaoliang committed
210
211
212
```python
convert_ply('./test.ply', './test.bin')
```
zhangwenwei's avatar
zhangwenwei committed
213

twang's avatar
twang committed
214
## High-level APIs for testing point clouds
zhangwenwei's avatar
zhangwenwei committed
215

twang's avatar
twang committed
216
### Synchronous interface
liyinhao's avatar
liyinhao committed
217
Here is an example of building the model and test given point clouds.
zhangwenwei's avatar
zhangwenwei committed
218
219

```python
liyinhao's avatar
liyinhao committed
220
from mmdet3d.apis import init_detector, inference_detector
zhangwenwei's avatar
zhangwenwei committed
221

liyinhao's avatar
liyinhao committed
222
223
config_file = 'configs/votenet/votenet_8x8_scannet-3d-18class.py'
checkpoint_file = 'checkpoints/votenet_8x8_scannet-3d-18class_20200620_230238-2cea9c3a.pth'
zhangwenwei's avatar
zhangwenwei committed
224
225
226
227
228

# build the model from a config file and a checkpoint file
model = init_detector(config_file, checkpoint_file, device='cuda:0')

# test a single image and show the results
liyinhao's avatar
liyinhao committed
229
230
231
232
point_cloud = 'test.bin'
result, data = inference_detector(model, point_cloud)
# visualize the results and save the results in 'results' folder
model.show_results(data, result, out_dir='results')
zhangwenwei's avatar
zhangwenwei committed
233
```