You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-28Lines changed: 3 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,6 @@ Eye-to-hand calibration from RGB-D images using robot mesh as calibration target
23
23
## Table of Contents
24
24
-[Installation](#installation)
25
25
-[Pip (Requires CUDA Toolkit Installation)](#pip-requires-cuda-toolkit-installation)
26
-
-[Conda (Installs CUDA Toolkit)](#conda-installs-cuda-toolkit)
27
26
-[Docker (Comes with CUDA Toolkit)](#docker-comes-with-cuda-toolkit)
28
27
-[Command Line Interface](#command-line-interface)
29
28
-[Segment](#segment)
@@ -35,44 +34,20 @@ Eye-to-hand calibration from RGB-D images using robot mesh as calibration target
35
34
-[Testing](#testing)
36
35
37
36
## Installation
38
-
Three install options are provided:
37
+
Two install options are provided:
39
38
-[Pip (Requires CUDA Toolkit Installation)](#pip-requires-cuda-toolkit-installation)
40
-
-[Conda (Installs CUDA Toolkit)](#conda-installs-cuda-toolkit)
41
39
-[Docker (Comes with CUDA Toolkit)](#docker-comes-with-cuda-toolkit)
42
40
43
41
### Pip (Requires CUDA Toolkit Installation)
44
42
> [!NOTE]
45
-
> During runtime, CUDA Toolkit is required for the differentiable rendering. If you are planning to do differentiable rendering, see [CUDA Toolkit Install Instructions](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/). Alternatively, install using `conda`, see [Conda (Installs CUDA Toolkit)](#conda-installs-cuda-toolkit).
43
+
> During runtime, CUDA Toolkit is required for the differentiable rendering. If you are planning to do differentiable rendering, see [CUDA Toolkit Install Instructions](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/).
46
44
47
45
To `pip` intall `roboreg`, simply run
48
46
49
47
```shell
50
-
pip3 install roboreg
48
+
pip install roboreg
51
49
```
52
50
53
-
### Conda (Installs CUDA Toolkit)
54
-
To install `roboreg` within an [Anaconda](https://www.anaconda.com/) environment (ideally [Miniconda](https://docs.anaconda.com/miniconda/), or even better, [Mamba](https://mamba.readthedocs.io/en/latest/installation/mamba-installation.html)), do the following:
55
-
56
-
1. Create an environment
57
-
58
-
```shell
59
-
conda create -n rr-0.4.6 python=3.10
60
-
```
61
-
62
-
2. Clone this repository and install dependencies
63
-
64
-
```shell
65
-
git clone git@github.com:lbr-stack/roboreg.git
66
-
mamba env update -f roboreg/env.yaml # if Anaconda or Miniconda was used, do 'conda env update -f env.yaml'
67
-
```
68
-
69
-
3. Install `roboreg`
70
-
71
-
```shell
72
-
mamba activate rr-0.4.6 # can also use 'conda activate rr-0.4.6' in either case
73
-
pip3 install roboreg/
74
-
```
75
-
76
51
### Docker (Comes with CUDA Toolkit)
77
52
A sample Docker container is provided for testing purposes. First:
0 commit comments