From d19eed032f005649718709213ac5dd8faa7441b1 Mon Sep 17 00:00:00 2001 From: Gangwei Xu <34023118+gangweiX@users.noreply.github.com> Date: Sat, 6 Aug 2022 15:50:37 +0800 Subject: [PATCH] Update README.md --- README.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e9742c5..955b938 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ # IterStereo -Iterative Stereo Matching + +The source code is coming soon. + +# How to use + +## Environment +* Python 3.8 +* Pytorch 1.12 + +## Install + +### Create a virtual environment and activate it. + +``` +conda create -n IterStereo python=3.8 +conda activate IterStereo +``` +### 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 +```