The pcd-tool
is a swiss knife for point cloud data processing. It
supports data summary, data dump and file conversion.
To install from the most recent version,
cargo install -f --git https://github.com/NEWSLabNTU/pcd-tool.git
pcd-tool info input.pcd
cargo run --release -- convert \
-i input.pcap \
-o output/ \
-f pcap.velodyne \
-t pcd.libpcl \
--velodyne-model VLP32C \
--velodyne-return-mode strongest
-f
and -t
are input and output format options. Supported formats
include:
- pcd.libpcl
- pcd.newslab
- pcap.velodyne
- raw.bin
cargo run --release -- show \
--velodyne-model VLP32C \
--velodyne-return-mode strongest \
input.pcap
cargo run --release -- show input.pcd
cargo run --release -- dump \
--velodyne-model VLP32C \
--velodyne-return-mode strongest \
input.pcap
cargo run --release -- dump input.pcd
The software is distributed under MIT license. Please check the LICENSE file.