2022-09-27 14:49:54 +08:00
|
|
|
# IGEV-Stereo
|
2022-08-06 15:50:37 +08:00
|
|
|
|
|
|
|
The source code is coming soon.
|
|
|
|
|
|
|
|
# How to use
|
|
|
|
|
|
|
|
## Environment
|
|
|
|
* Python 3.8
|
|
|
|
* Pytorch 1.12
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
### Create a virtual environment and activate it.
|
|
|
|
|
|
|
|
```
|
2022-09-27 14:45:53 +08:00
|
|
|
conda create -n IGEV_Stereo python=3.8
|
|
|
|
conda activate IGEV_Stereo
|
2022-08-06 15:50:37 +08:00
|
|
|
```
|
|
|
|
### Dependencies
|
|
|
|
|
|
|
|
```
|
|
|
|
conda install pytorch torchvision torchaudio cudatoolkit=11.3 -c pytorch -c nvidia
|
|
|
|
pip install opencv-python
|
|
|
|
pip install scikit-image
|
|
|
|
pip install tensorboard
|
|
|
|
pip install matplotlib
|
|
|
|
pip install tqdm
|
|
|
|
pip install timm==0.5.4
|
|
|
|
```
|