@@ -19,7 +19,7 @@ Prebuilt executables (for **macOS**, **Linux**, and **Windows**) can be download
19
19
[ here] ( https://github.com/tudelft3d/adtree/releases ) .
20
20
21
21
AdTree depends on some third-party libraries and most dependencies are included in the distribution except
22
- [ Boost] ( https://www.boost.org/ ) . So you will need to have Boost install first.
22
+ [ Boost] ( https://www.boost.org/ ) . So you will need to have Boost installed first.
23
23
24
24
Note: AdTree uses a stripped earlier version of [ Easy3D] ( https://github.com/LiangliangNan/Easy3D ) , which is not
25
25
compatible with the latest version.
@@ -30,7 +30,7 @@ You need [CMake](https://cmake.org/download/) and of course a compiler to build
30
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
- nowadays typically provide higher [ supports ] ( https://en.cppreference.com/w/cpp/compiler_support ) , so you should be
33
+ nowadays typically provide higher [ support ] ( https://en.cppreference.com/w/cpp/compiler_support ) , so you should be
34
34
able to build AdTree on almost all platforms.
35
35
36
36
There are many options to build AdTree. Choose one of the following (or whatever you are familiar with):
@@ -50,7 +50,7 @@ of AdTree. Then you should have obtained a usable project and just build. I reco
50
50
$ cmake -DCMAKE_BUILD_TYPE=Release ..
51
51
$ make
52
52
```
53
- - on Windows with Microsoft Visual Studio, use `x64 Native Tools Command Prompt for VS XXXX` (don't use the x86 one), then
53
+ - on Windows with Microsoft Visual Studio, use the `x64 Native Tools Command Prompt for VS XXXX` (don't use the x86 one), then
54
54
```
55
55
$ cd path-to-root-dir-of-AdTree
56
56
$ mkdir Release
@@ -63,15 +63,15 @@ Don't have any experience with C/C++ programming? Have a look at [How to build A
63
63
64
64
After obtaining the executable, AdTree can be run in three modes, which can be selected based
65
65
on arguments.
66
- - GUI mode that provides a user interface with menus. You can double click to run the app or from the command
66
+ - GUI mode that provides a user interface with menus. You can double- click to run the app or from the command
67
67
using `./AdTree`.
68
68
69
69
- Single processing mode (i.e., processing a single point cloud file) from the command line using
70
70
```
71
71
./AdTree <xyz_file_path> <output_directory>
72
72
```
73
73
- Batch processing mode (i.e., all *.xyz files in the input directory will be treated as input and the reconstructed
74
- models will be save in the output directory) from the command line using
74
+ models will be saved in the output directory) from the command line using
75
75
```
76
76
./AdTree <xyz_files_directory> <output_directory>
77
77
```
@@ -92,7 +92,7 @@ Some test tree point clouds are provided in the '[data](./data)' folder.
92
92
93
93
---
94
94
### Citation
95
- If you use the code/program (or part) of AdTree in a scientific work, please cite our paper:
95
+ If you use the code/program (or part) of AdTree in scientific work, please cite our paper:
96
96
97
97
```bibtex
98
98
@article{du2019adtree,
0 commit comments