1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
# -*- coding: utf-8 -*-
### include ###
# common?
include "Vertices.pxi"
include "PointXYZtoPointXYZ.pxi"
# Segmentation
include "Segmentation/Segmentation_172.pxi"
include "Segmentation/SegmentationNormal_172.pxi"
include "Segmentation/EuclideanClusterExtraction_172.pxi"
# Filters
include "Filters/StatisticalOutlierRemovalFilter_172.pxi"
include "Filters/VoxelGridFilter_172.pxi"
include "Filters/PassThroughFilter_172.pxi"
include "Filters/ApproximateVoxelGrid_172.pxi"
# Kdtree
# same 1.6 ~ 1.8
# include "KdTree/KdTree.pxi"
include "KdTree/KdTree_FLANN.pxi"
# Octree
include "Octree/OctreePointCloud_172.pxi"
include "Octree/OctreePointCloud2Buf_172.pxi"
include "Octree/OctreePointCloudSearch_172.pxi"
include "Octree/OctreePointCloudChangeDetector_172.pxi"
# Filters
include "Filters/CropHull_172.pxi"
include "Filters/CropBox_172.pxi"
include "Filters/ProjectInliers_172.pxi"
include "Filters/RadiusOutlierRemoval_172.pxi"
include "Filters/ConditionAnd_172.pxi"
include "Filters/ConditionalRemoval_172.pxi"
# Surface
include "Surface/ConcaveHull_172.pxi"
include "Surface/MovingLeastSquares_172.pxi"
# RangeImage
include "Common/RangeImage/RangeImages_172.pxi"
# Registration
include "registration/GeneralizedIterativeClosestPoint_172.pxi"
include "registration/IterativeClosestPoint_172.pxi"
include "registration/IterativeClosestPointNonLinear_172.pxi"
# SampleConsensus
# same 1.6 ~ 1.8
include "SampleConsensus/RandomSampleConsensus.pxi"
include "SampleConsensus/SampleConsensusModelPlane.pxi"
include "SampleConsensus/SampleConsensusModelSphere.pxi"
include "SampleConsensus/SampleConsensusModelCylinder.pxi"
include "SampleConsensus/SampleConsensusModelLine.pxi"
include "SampleConsensus/SampleConsensusModelRegistration.pxi"
include "SampleConsensus/SampleConsensusModelStick.pxi"
# Features
include "Features/NormalEstimation_172.pxi"
include "Features/VFHEstimation_172.pxi"
include "Features/IntegralImageNormalEstimation_172.pxi"
# package ng?(use 1.8.0?)
include "Features/MomentOfInertiaEstimation_172.pxi"
# keyPoint
include "KeyPoint/HarrisKeypoint3D_172.pxi"
# execute NG?
# include "KeyPoint/UniformSampling_172.pxi"
# Registration
include "registration/NormalDistributionsTransform_172.pxi"
# pcl 1.7.2?
# include "registration/NormalDistributionsTransform.pxi"
# visual
# include "Visualization/PointCloudColorHandlerCustoms.pxi"
###
|