Skip to content

Commit 2566df6

Browse files
authored
FIX: readme but with link to source
1 parent b467a9e commit 2566df6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,13 @@ gantt
4747
## 3rd party libraries
4848

4949
The project uses the following 3rd party libraries:
50-
- `Open3d 0.18.0` for 3D point cloud processing it needs to be installed from source [from here](https://github.com/isl-org/Open3D/releases/download/v0.18.0/open3d-devel-windows-amd64-0.18.0.zip), unzip the file to `Program Files/Open3D`. Change `<Your user name>` with your user name:
50+
- `Open3d 0.18.0` for 3D point cloud processing it needs to be installed from source [from here](https://github.com/isl-org/Open3D/archive/refs/tags/v0.18.0.zip), unzip the file and by following the instructions below:
5151
```terminal
52-
Expand-Archive -DestinationPath 'C:\Users\<Your user name>\Downloads' -LiteralPath "C:\Users\<Your user name>\Downloads\open3d-devel-windows-amd64-0.18.0.zip"
53-
Move-Item -LiteralPath 'C:\Users\<Your user name>\Downloads\open3d-devel-windows-amd64-0.18.0\*' -Destination 'C:\Program Files\Open3D\'
54-
rmdir 'C:\Users\<Your user name>\Downloads\open3d-devel-windows-amd64-0.18.0\'
52+
cd open3d
53+
mkdir build
54+
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX="C:\Program Files\Open3D" -S . -B build
55+
cmake --build build --config Release --target ALL_BUILD
56+
cmake --build build --config Release --target INSTALL
5557
```
5658
- `Eigen` for linear algebra (needed by `Open3d`)
5759
- `CGAL` for general geometric processing and IO

0 commit comments

Comments
 (0)