diff --git a/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/Kinetic_surface_reconstruction.txt b/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/Kinetic_surface_reconstruction.txt index 259f609f0d1..41a2a08ebb2 100644 --- a/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/Kinetic_surface_reconstruction.txt +++ b/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/Kinetic_surface_reconstruction.txt @@ -85,18 +85,18 @@ Impact of parameters on the reconstruction of the rotated lans model.\n From lef \subsection ksrBasicExample Basic Example This minimal example shows the import of a simple synthetic point cloud and an reconstruction using mostly default parameters. -\cgalExample{Kinetic_surface_reconstruction/basic.cpp} +\cgalExample{Kinetic_surface_reconstruction/ksr_basic.cpp} \subsection ksrBuildingExample Building Example This example shows the import of an acquired point cloud of a building and a reconstruction using a common choice of parameters for building reconstruction. The input point cloud is reoriented to be axis-aligned and regularization is used to simplify the detected shapes before reconstruction. The actual reconstruction method is actually fast. To avoid running the full shape detection and kinetic partition just to try different values for beta, several reconstructions are performed and exported into ply format. -\cgalExample{Kinetic_surface_reconstruction/building.cpp} +\cgalExample{Kinetic_surface_reconstruction/ksr_building.cpp} \subsection ksrParametersExample Parameters Example This example provides a command line version of the kinetic surface reconstruction allowing to configure the input point cloud filename and most parameters. -\cgalExample{Kinetic_surface_reconstruction/parameters.cpp} +\cgalExample{Kinetic_surface_reconstruction/ksr_parameters.cpp} \section ksrPerformance Performance diff --git a/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/examples.txt b/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/examples.txt index 732eedf7ce0..479978fe0ad 100644 --- a/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/examples.txt +++ b/Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/examples.txt @@ -1,5 +1,5 @@ /*! -\example Kinetic_surface_reconstruction/basic.cpp -\example Kinetic_surface_reconstruction/building.cpp -\example Kinetic_surface_reconstruction/parameters.cpp +\example Kinetic_surface_reconstruction/ksr_basic.cpp +\example Kinetic_surface_reconstruction/ksr_building.cpp +\example Kinetic_surface_reconstruction/ksr_parameters.cpp */ \ No newline at end of file diff --git a/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/CMakeLists.txt b/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/CMakeLists.txt index 38b436b6150..26f4ef01c26 100644 --- a/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/CMakeLists.txt +++ b/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/CMakeLists.txt @@ -13,7 +13,7 @@ if(Eigen3_FOUND) message(STATUS "Found Eigen") include(CGAL_Eigen_support) - set(targets basic building parameters) + set(targets ksr_basic ksr_building ksr_parameters) foreach(target ${targets}) create_single_source_cgal_program("${target}.cpp") diff --git a/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/basic.cpp b/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/ksr_basic.cpp similarity index 100% rename from Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/basic.cpp rename to Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/ksr_basic.cpp diff --git a/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/building.cpp b/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/ksr_building.cpp similarity index 100% rename from Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/building.cpp rename to Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/ksr_building.cpp diff --git a/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/parameters.cpp b/Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/ksr_parameters.cpp similarity index 100% rename from Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/parameters.cpp rename to Kinetic_surface_reconstruction/examples/Kinetic_surface_reconstruction/ksr_parameters.cpp