File: DifferenceOfNormalsEstimation_180.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 (20 lines) | stat: -rw-r--r-- 507 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
# -*- coding: utf-8 -*-
from libcpp.vector cimport vector
from libcpp cimport bool

cimport pcl_defs as cpp
cimport pcl_features_180 as pcl_ftr

from boost_shared_ptr cimport sp_assign

cdef class DifferenceOfNormalsEstimation:
    """
    DifferenceOfNormalsEstimation class for 
    """
    cdef pcl_ftr.DifferenceOfNormalsEstimation_t *me

    def __cinit__(self, PointCloud pc not None):
        self.me = new pcl_ftr.DifferenceOfNormalsEstimation_t()
        self.me.setInputCloud(pc.thisptr_shared)