Python library for working with 3D point clouds.
Project description
pyntcloud is a Python 3 library for working with 3D point clouds leveraging the power of the Python scientific stack.
Installation
conda install pyntcloud -c conda-forge
Or:
pip install pyntcloud
Quick Overview
You can access most of pyntcloud’s functionality from its core class: PyntCloud.
With PyntCloud you can perform complex 3D processing operations with minimum lines of code. For example you can:
Load a PLY point cloud from disk.
Add 3 new scalar fields by converting RGB to HSV.
Build a grid of voxels from the point cloud.
Build a new point cloud keeping only the nearest point to each occupied voxel center.
Save the new point cloud in numpy’s NPZ format.
With the following concise code:
from pyntcloud import PyntCloud
cloud = PyntCloud.from_file("some_file.ply")
cloud.add_scalar_field("hsv")
voxelgrid_id = cloud.add_structure("voxelgrid", n_x=32, n_y=32, n_z=32)
new_cloud = cloud.get_sample("voxelgrid_nearest", voxelgrid_id=voxelgrid_id, as_PyntCloud=True)
new_cloud.to_file("out_file.npz")
Integration with other libraries
pyntcloud offers seamless integration with other 3D processing libraries.
You can create / convert PyntCloud instances from / to many 3D processing libraries using the from_instance / to_instance methods:
import open3d as o3d
from pyntcloud import PyntCloud
# FROM Open3D
original_triangle_mesh = o3d.io.read_triangle_mesh("diamond.ply")
cloud = PyntCloud.from_instance("open3d", original_triangle_mesh)
# TO Open3D
cloud = PyntCloud.from_file("diamond.ply")
converted_triangle_mesh = cloud.to_instance("open3d", mesh=True) # mesh=True by default
import pyvista as pv
from pyntcloud import PyntCloud
# FROM PyVista
original_point_cloud = pv.read("diamond.ply")
cloud = PyntCloud.from_instance("pyvista", original_point_cloud)
# TO PyVista
cloud = PyntCloud.from_file("diamond.ply")
converted_triangle_mesh = cloud.to_instance("pyvista", mesh=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyntcloud-0.1.5.tar.gz
.
File metadata
- Download URL: pyntcloud-0.1.5.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d33630c258302896425f73f5c16588400c19d5a0e0ecfc1a81bde3dd1cc331bd |
|
MD5 | d15357c45013200d937440cada9aa8b8 |
|
BLAKE2b-256 | f0bbee2e14bb4d5570e13880e181d8aed35c9f7fa650e2931acd635a8f945ef6 |
File details
Details for the file pyntcloud-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: pyntcloud-0.1.5-py3-none-any.whl
- Upload date:
- Size: 346.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a2482c8f5ce864b9d491bc07ae21d52966f1a4dc1ded2bc83364da09fea621e |
|
MD5 | a12ac42c4f6c711d57440d4e3db63bee |
|
BLAKE2b-256 | e27775d6328109283e7e0785fd6aae775fbaf7cbe5ad6fb5569fe5f5a62e4a34 |