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
|
# -*- coding: utf-8 -*-
cimport pcl_defs as cpp
cimport pcl_keypoints_180 as pclkp
cdef class UniformSampling:
"""
"""
cdef pclkp.UniformSampling_t *me
def __cinit__(self, PointCloud pc not None):
self.me = new pclkp.UniformSampling_t()
self.me.setInputCloud(pc.thisptr_shared)
def __dealloc__(self):
del self.me
# cdef class UniformSampling_PointXYZI:
# """
# """
# cdef pclkp.UniformSampling_PointXYZI_t *me
#
# def __cinit__(self, PointCloud_PointXYZI pc not None):
# self.me = new pclkp.UniformSampling_PointXYZI_t()
# # self.me.setInputCloud(<shared_ptr[cpp.PointCloud[cpp.PointXYZ]]> pc.thisptr_shared)
# self.me.setInputCloud(pc.thisptr_shared)
#
# def __dealloc__(self):
# del self.me
###
# cdef class UniformSampling_PointXYZRGB:
# """
# """
# cdef pclkp.UniformSampling_PointXYZRGB_t *me
#
# def __cinit__(self, PointCloud_PointXYZRGB pc not None):
# self.me = new pclkp.UniformSampling_PointXYZRGB_t()
# # self.me.setInputCloud(<shared_ptr[cpp.PointCloud[cpp.PointXYZ]]> pc.thisptr_shared)
# self.me.setInputCloud(pc.thisptr_shared)
#
# def __dealloc__(self):
# del self.me
###
# cdef class UniformSampling_PointXYZRGBA:
# """
# """
# cdef pclkp.UniformSampling_PointXYZRGBA_t *me
#
# def __cinit__(self, PointCloud_PointXYZRGBA pc not None):
# self.me = new pclkp.UniformSampling_PointXYZRGBA_t()
# # self.me.setInputCloud(<shared_ptr[cpp.PointCloud[cpp.PointXYZ]]> pc.thisptr_shared)
# self.me.setInputCloud(pc.thisptr_shared)
#
# def __dealloc__(self):
# del self.me
###
|