A library to make 3d visualizations easier.
Project description
Visualize3D
A small library to help with 3d visualizing (pointclouds).
Getting Started
Please make sure you have pytorch installed properly as a first step.
pip install visualize3d
Usage
In your code you can create visualizations:
import numpy as np
import visualize3d as v3d
# First create a list of geometries to show.
N=42
geometries = [
# Pointcloud (N, 3)
v3d.create_pointcloud_from_numpy(
pointcloud=np.random.rand(N, 3),
),
# Add random lines (e.g. for a box or trajectory)
v3d.create_lines_from_numpy(
points=np.random.rand(N, 3),
lines=np.array([i, i + 1] for i in range(N - 1)),
),
# Add the origin arrows (X=red, Y=green, Z=blue).
v3d.create_origin()
]
# Save visualization to disk (usefull in remote work or when batch processing)
v3d.save("output.v3d.npy", geometries)
# or show directly (if you work locally or interactive)
v3d.show(geometries)
To show a visualization that was saved to disk, you can write your own code or simply use the visualize3d
commandline tool.
# Show visualization from above
visualize3d /path/to/output.v3d.npy
# Show a pcd file directly
visualize3d /path/to/filename.pcd
# Show all supported files in a folder after another
visualize3d /path/to/folder
Contributing
Currently there are no guidelines on how to contribute, so the best thing you can do is open up an issue and get in contact that way. In the issue we can discuss how you can implement your new feature or how to fix that nasty bug.
To contribute, please fork the repositroy on github, then clone your fork. Make your changes and submit a merge request.
License
This repository is under MIT License. Please see the full license here.
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 visualize3d-1.0.1.tar.gz
.
File metadata
- Download URL: visualize3d-1.0.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69b1717f0ebdeac30c171835e005f2f4707e6f04df91954dee0e1915f0623e66 |
|
MD5 | 26d794599dcae8302785d1cb991562b6 |
|
BLAKE2b-256 | 089139ef98ddd47b670c291904eaea61d3e38748d5fd0f03568185b24aa79520 |
File details
Details for the file visualize3d-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: visualize3d-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f825a86e0ca0f0345f022df1ce77c62f052d7aec5becc71ebe78c52e1c2996dc |
|
MD5 | 84129cd91d2493c62b24efd1c2587420 |
|
BLAKE2b-256 | 4bb49c690faaed929f8a76459bbe62e2131a4f38225a679f603761c523bc99e7 |