Class PointCloudPtr


  • public class PointCloudPtr
    extends java.lang.Object
    Ptr stores a pointer and optionally takes ownership of the value.
    • Constructor Detail

      • PointCloudPtr

        public PointCloudPtr​(long cPtr,
                             boolean cMemoryOwn)
      • PointCloudPtr

        public PointCloudPtr()
        Default constructor yielding a NULL-pointer.
      • PointCloudPtr

        public PointCloudPtr​(PointCloud ptr)
        Do not take ownership of ptr.

        ptr can be null.

        The constructor is implicit on purpose.
    • Method Detail

      • delete

        public void delete()
      • deref

        public PointCloud deref()
        The pointer stored in the object.
      • __ref__

        public PointCloud __ref__()
        Dereferencing operator.
      • getDeref

        public PointCloud getDeref()
        Member access operator.
      • equals

        public boolean equals​(PointCloud p)
      • isShared

        public boolean isShared()
        check if this Ptr has shared ownership or none
        ownership
        Returns:
        true if Ptr has shared ownership, false if it has no ownership.
      • isNull

        public boolean isNull()
        checks if the pointer is null
        Returns:
        Returns true if the pointer is null
      • size

        public long size()
        gets the number of points in the point cloud.

        Returns:
        the number of points.
      • isOrdered

        public boolean isOrdered()
      • getWidth

        public int getWidth()
        width of the point cloud data. If the data is unordered then this
        will be equal to the number of points.

        Returns:
        width of data points
      • getHeight

        public int getHeight()
      • resize

        public void resize​(int w,
                           int h)
        set width of point cloud. Data elements are accessed as [x+y*width].

        If the current data array cannot contain the elements then it will be resized to
        be able to it.

        Parameters:
        w - [in] new width
        h - [in] new height
      • getTriMesh

        public TriMeshPtr getTriMesh​(boolean forceCopy)
      • loadPCD

        public PointCloudPtr loadPCD​(java.lang.String filename)
        load point cloud from PCD file

        Parameters:
        filename - [in] name of PCD file
        Returns:
        a point cloud
      • savePCD

        public void savePCD​(PointCloud cloud,
                            java.lang.String filename,
                            Transform3Df t3d)
        save point cloud in PCD file format (PCL library format)

        Parameters:
        cloud - [in] the point cloud to save
        filename - [in] the name of the file to save to
        t3d - [in] the transformation of the point cloud
      • savePCD

        public void savePCD​(PointCloud cloud,
                            java.lang.String filename)
        save point cloud in PCD file format (PCL library format)

        Parameters:
        cloud - [in] the point cloud to save
        filename - [in] the name of the file to save to
      • isConvex

        public boolean isConvex()
        test if this geometry data is convex
        Returns:
      • toString

        public java.lang.String toString​(GeometryData.GeometryType type)
        format GeometryType to string
        Parameters:
        type - [in] the type of geometry to convert to string.
        Returns:
        a string.