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 72 73 74
|
# -*- coding: utf-8 -*-
cimport pcl_defs as cpp
cimport pcl_kdtree as pclkdt
cdef class KdTree:
"""
Finds k nearest neighbours from points in another pointcloud to points in
a reference pointcloud.
Must be constructed from the reference point cloud, which is copied, so
changed to pc are not reflected in KdTree(pc).
"""
cdef cpp.KdTree_t *me
def __cinit__(self, PointCloud pc not None):
self.me = new pclkdt.KdTree_t()
self.me.setInputCloud(pc.thisptr_shared)
def __dealloc__(self):
del self.me
cdef class KdTree_PointXYZI:
"""
Finds k nearest neighbours from points in another pointcloud to points in
a reference pointcloud.
Must be constructed from the reference point cloud, which is copied, so
changed to pc are not reflected in KdTree(pc).
"""
cdef cpp.KdTree_PointXYZI_t *me
def __cinit__(self, PointCloud_PointXYZI pc not None):
self.me = new cpp.KdTree_PointXYZI_t()
self.me.setInputCloud(pc.thisptr_shared)
def __dealloc__(self):
del self.me
cdef class KdTree_PointXYZRGB:
"""
Finds k nearest neighbours from points in another pointcloud to points in
a reference pointcloud.
Must be constructed from the reference point cloud, which is copied, so
changed to pc are not reflected in KdTree(pc).
"""
cdef cpp.KdTree_PointXYZRGB_t *me
def __cinit__(self, PointCloud_PointXYZRGB pc not None):
self.me = new cpp.KdTree_PointXYZRGB_t()
self.me.setInputCloud(pc.thisptr_shared)
def __dealloc__(self):
del self.me
cdef class KdTree_PointXYZRGBA:
"""
Finds k nearest neighbours from points in another pointcloud to points in
a reference pointcloud.
Must be constructed from the reference point cloud, which is copied, so
changed to pc are not reflected in KdTree(pc).
"""
cdef cpp.KdTree_PointXYZRGBA_t *me
def __cinit__(self, PointCloud_PointXYZRGBA pc not None):
self.me = new cpp.KdTree_PointXYZRGBA_t()
self.me.setInputCloud(pc.thisptr_shared)
def __dealloc__(self):
del self.me
|