Skip to content

Commit bf8fde6

Browse files
committed
Removed all occurrences of Nabo
1 parent 6ea5f5f commit bf8fde6

25 files changed

+12
-86
lines changed

CMakeLists.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,6 @@ if(BUILD_VIEWER)
339339
endif()
340340
endif(BUILD_VIEWER)
341341

342-
#------------------------------------------------------------------------------
343-
# Searching for NABO
344-
#------------------------------------------------------------------------------
345-
find_package(Nabo)
346-
if(Nabo_FOUND)
347-
include_directories(${Nabo_INCLUDE_DIRS})
348-
list(APPEND LVR2_DEFINITIONS -DLVR2_USE_NABO)
349-
endif(Nabo_FOUND)
350-
351342
#------------------------------------------------------------------------------
352343
## Searching for PCL
353344
#------------------------------------------------------------------------------
@@ -828,7 +819,6 @@ install(FILES package.xml DESTINATION share/lvr2)
828819
install(FILES
829820
CMakeModules/FindFLANN.cmake
830821
CMakeModules/FindLZ4.cmake
831-
CMakeModules/FindNabo.cmake
832822
CMakeModules/FindOpenNI.cmake
833823
CMakeModules/FindOpenNI2.cmake
834824
CMakeModules/FindQVTK.cmake

CMakeModules/FindNabo.cmake

Lines changed: 0 additions & 12 deletions
This file was deleted.

LVR2Config.cmake.in

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,6 @@ if(@VTK_FOUND@)
141141
list(APPEND LVR2_DEFINITIONS ${VTK_DEFINITIONS})
142142
endif()
143143

144-
# nabo
145-
if(@NABO_FOUND@)
146-
find_package(Nabo REQUIRED)
147-
list(APPEND LVR2_INCLUDE_DIRS ${NABO_INCLUDE_DIRS})
148-
endif()
149-
150144
# pcl
151145
if(@PCL_FOUND@)
152146
find_package(PCL REQUIRED)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Supported options:
177177
automatically.
178178
-p [ --pcm ] arg (=LVR2) Point cloud manager used for point
179179
handling and normal estimation. Choose
180-
from {FLANN, PCL, NABO, LVR2, LBVH_CUDA}.
180+
from {FLANN, PCL, LVR2, LBVH_CUDA}.
181181
--nem arg (=0) Method for estimating point normals /
182182
planes. 0: PCA (default), 1: RANSAC, 2:
183183
IPCA ilikebigbits, 3: IPCA exact. Make

include/lvr2/reconstruction/AdaptiveKSearchSurface.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,6 @@
6464
// #include "SearchTreeFlannPCL.hpp"
6565
// #endif
6666

67-
// // SearchTreeNabo
68-
// #ifdef LVR2_USE_NABO
69-
// #include "SearchTreeNabo.hpp"
70-
// #endif
71-
7267
using std::numeric_limits;
7368
using std::string;
7469
using std::unique_ptr;

src/tools/lvr2_dmc_reconstruction/Main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ PointsetSurfacePtr<BaseVecT> loadPointCloud(const dmc_reconstruction::Options& o
5454
std::cout << timestamp << "Using PCL as point cloud manager is not implemented yet!" << std::endl;
5555
panic_unimplemented("PCL as point cloud manager");
5656
}
57-
else if(pcm_name == "FLANN" || pcm_name == "NABO" || pcm_name == "NANOFLANN")
57+
else if(pcm_name == "FLANN" || pcm_name == "NANOFLANN")
5858
{
59-
6059
int plane_fit_method = 0;
6160

6261
if(options.useRansac())

src/tools/lvr2_dmc_reconstruction/Options.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace dmc_reconstruction{
2020
("kd", value<int>(&m_kd)->default_value(5), "Number of normals used for distance function evaluation")
2121
("ki", value<int>(&m_ki)->default_value(10), "Number of normals used in the normal interpolation process")
2222
("kn", value<int>(&m_kn)->default_value(10), "Size of k-neighborhood used for normal estimation")
23-
("pcm,p", value<string>(&m_pcm)->default_value("FLANN"), "Point cloud manager used for point handling and normal estimation. Choose from {PCL, NABO}.")
23+
("pcm,p", value<string>(&m_pcm)->default_value("FLANN"), "Point cloud manager used for point handling and normal estimation. Choose from {PCL}.")
2424
("ransac", "Set this flag for RANSAC based normal estimation.")
2525
("scanPoseFile", value<string>()->default_value(""), "ASCII file containing scan positions that can be used to flip normals")
2626
("threads", value<int>(&m_numThreads)->default_value( lvr2::OpenMPConfig::getNumThreads() ), "Number of threads")

src/tools/lvr2_ground_level_extractor/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ set(LVR2_GROUND_LEVEL_EXTRACTOR_DEPENDENCIES
1818
${LVR2_LIB_DEPENDENCIES}
1919
)
2020

21-
if( ${NABO_FOUND} )
22-
set(LVR2_GROUND_LEVEL_EXTRACTOR_DEPENDENCIES ${LVR2_GROUND_LEVEL_EXTRACTOR_DEPENDENCIES} ${NABO_LIBRARY})
23-
endif( ${NABO_FOUND} )
24-
2521
#####################################################################################
2622
# Add PCD io if PCL is installed
2723
#####################################################################################

src/tools/lvr2_gs_reconstruction/Main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ PointsetSurfacePtr<BaseVecT> loadPointCloud(const gs_reconstruction::Options& op
3838
std::cout << timestamp << "Using PCL as point cloud manager is not implemented yet!" << std::endl;
3939
panic_unimplemented("PCL as point cloud manager");
4040
}
41-
else if (pcm_name == "FLANN" || pcm_name == "NABO" ||
42-
pcm_name == "NANOFLANN")
41+
else if (pcm_name == "FLANN" || pcm_name == "NANOFLANN")
4342
{
4443
surface = std::make_shared<AdaptiveKSearchSurface<BaseVecT>>(
4544
buffer, pcm_name, options.getKn(), options.getKi(), options.getKd(), 1, "");

src/tools/lvr2_gs_reconstruction/OptionsGS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace gs_reconstruction{
3131
("kd", value<int>(&m_kd)->default_value(5), "Number of normals used for distance function evaluation")
3232
("ki", value<int>(&m_ki)->default_value(10), "Number of normals used in the normal interpolation process")
3333
("kn", value<int>(&m_kn)->default_value(10), "Size of k-neighborhood used for normal estimation")
34-
("pcm,p", value<string>(&m_pcm)->default_value("FLANN"), "Point cloud manager used for point handling and normal estimation. Choose from {PCL, NABO}.")
34+
("pcm,p", value<string>(&m_pcm)->default_value("FLANN"), "Point cloud manager used for point handling and normal estimation. Choose from {PCL}.")
3535
;
3636
setup();
3737
}

0 commit comments

Comments
 (0)