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
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
7
7
AdTree implements the tree reconstruction method described in the following [paper](https://3d.bk.tudelft.nl/liangliang/publications/2019/adtree/AdTree_RS-2019.pdf):
8
-
```c++
8
+
```
9
9
Shenglan Du, Roderik Lindenbergh, Hugo Ledoux, Jantien Stoter, and Liangliang Nan.
10
10
AdTree: Accurate, Detailed, and Automatic Modelling of Laser-Scanned Trees.
11
11
Remote Sensing. 2019, 11(18), 2074.
@@ -27,7 +27,7 @@ compatible with the latest version.
27
27
You need [CMake](https://cmake.org/download/) and of course a compiler to build AdTree:
28
28
29
29
- CMake `>= 3.1`
30
-
- a compiler that supports `>= C++17`
30
+
- a compiler that supports `>= C++11`
31
31
32
32
AdTree has been tested on macOS (Xcode >= 8), Windows (MSVC >=2015), and Linux (GCC >= 4.8, Clang >= 3.3). Machines
33
33
nowadays typically provide higher [supports](https://en.cppreference.com/w/cpp/compiler_support), so you should be
@@ -42,19 +42,19 @@ of AdTree. Then you should have obtained a usable project and just build. I reco
42
42
- Option 3: Use CMake to generate Makefiles and then build.
43
43
- on Linux or macOS:
44
44
```
45
-
$ cd adtree
45
+
$ cd path-to-root-dir-of-AdTree
46
46
$ mkdir Release
47
47
$ cd Release
48
48
$ cmake -DCMAKE_BUILD_TYPE=Release ..
49
49
$ make
50
50
```
51
-
- on Windows with Microsoft Visual Studio:
51
+
- on Windows with Microsoft Visual Studio, use `x64 Native Tools Command Prompt for VS XXXX` (don't use the x86 one), then
0 commit comments