PointCloud.__getattr__#
- PointCloud.__getattr__(name)[source]#
Access Open3D PointCloud methods and attributes
- Parameters:
name (str) – method or attribute name
If
Pis aPointCloudthenP.nameinvokes methodnameof the underlyingopen3d.geometry.PointCloudobject. For example:>>> pcfiltered, ind = pc.remove_radius_outlier(radius=0.2, nb_points=100) >>> pc.is_empty() # invoke is_empty predicate method >>> pc.colors # get colors attribute
Note
This is a convenience method to avoid having to explicitly all the properties and methods of the Open3D point cloud object.
If the method returns a new point cloud object, it is converted to a Toolbox
PointCloudinstance.