loadPCDData
loadPCDData(data, pointType)
Load any PCD data into a PointCloud type.
For example:
import * as PCL from "pcl.js"
await PCL.init()
PCL.loadPCDData(ArrayBuffer)
Parameters:
Name | Type | Default | Description |
---|---|---|---|
data | ArrayBuffer | The PCD file data. | |
pointType (optional) | PointType | PointXYZ | The resultant point cloud type. |
Returns:
Name | Type |
---|---|
cloud | PointCloud |