forked from neka-nat/cupoch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make cupoch/cupoch.h work with a subset of modules
- Loading branch information
Showing
23 changed files
with
60 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,67 @@ | ||
#pragma once | ||
|
||
#include "cupoch/cupoch_config.h" | ||
#include "cupoch/utility/console.h" | ||
#include "cupoch/utility/eigen.h" | ||
#include "cupoch/utility/filesystem.h" | ||
#include "cupoch/utility/helper.h" | ||
|
||
#ifdef CUPOCH_CAMERA_ENABLED | ||
#include "cupoch/camera/pinhole_camera_intrinsic.h" | ||
#include "cupoch/camera/pinhole_camera_parameters.h" | ||
#include "cupoch/collision/primitives.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_COLLISION_ENABLED | ||
#include "cupoch/collision/collision.h" | ||
#include "cupoch/cupoch_config.h" | ||
#include "cupoch/collision/primitives.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_GEOMETRY_ENABLED | ||
#include "cupoch/geometry/boundingvolume.h" | ||
#include "cupoch/geometry/distancetransform.h" | ||
#include "cupoch/geometry/geometry.h" | ||
#include "cupoch/geometry/graph.h" | ||
#include "cupoch/geometry/image.h" | ||
#include "cupoch/geometry/lineset.h" | ||
#include "cupoch/geometry/graph.h" | ||
#include "cupoch/geometry/pointcloud.h" | ||
#include "cupoch/geometry/rgbdimage.h" | ||
#include "cupoch/geometry/trianglemesh.h" | ||
#include "cupoch/geometry/voxelgrid.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_KNN_ENABLED | ||
#include "cupoch/knn/kdtree_flann.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_IO_ENABLED | ||
#include "cupoch/io/class_io/ijson_convertible_io.h" | ||
#include "cupoch/io/class_io/image_io.h" | ||
#include "cupoch/io/class_io/pointcloud_io.h" | ||
#include "cupoch/io/class_io/trianglemesh_io.h" | ||
#include "cupoch/io/class_io/voxelgrid_io.h" | ||
#include "cupoch/io/ros/pointcloud_msg.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_KINEMATICS_ENABLED | ||
#include "cupoch/kinematics/kinematic_chain.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_KINFU_ENABLED | ||
#include "cupoch/kinfu/kinfu.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_ODOMETRY_ENABLED | ||
#include "cupoch/odometry/odometry.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_REGISTRATION_ENABLED | ||
#include "cupoch/registration/feature.h" | ||
#include "cupoch/registration/registration.h" | ||
#include "cupoch/registration/transformation_estimation.h" | ||
#include "cupoch/utility/console.h" | ||
#include "cupoch/utility/eigen.h" | ||
#include "cupoch/utility/filesystem.h" | ||
#include "cupoch/utility/helper.h" | ||
#endif | ||
|
||
#ifdef CUPOCH_VISUALIZATION_ENABLED | ||
#include "cupoch/visualization/utility/draw_geometry.h" | ||
#include "cupoch/visualization/visualizer/view_control.h" | ||
#include "cupoch/visualization/visualizer/visualizer.h" | ||
#include "cupoch/visualization/visualizer/visualizer.h" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters