File: UniformSampling.pxi

package info (click to toggle)
python-pcl 0.3.0~rc1%2Bdfsg-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 31,828 kB
  • sloc: python: 3,094; cpp: 283; makefile: 181; sh: 24; ansic: 12
file content (58 lines) | stat: -rw-r--r-- 1,694 bytes parent folder | download | duplicates (3)
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 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
###