Skip to main content

U3D Capability and Intelligence for the real world.

Reason this release was yanked:

buggy 3d reconstruction bundle

Project description

vizion3D

vizion3d is an open-source Python library for 3D computer vision — a single unified interface for depth estimation, point cloud generation, 3D object annotation, and more.

Point-cloud inputs and outputs use OpenGL/viewer camera space: X+ right, Y+ up, and Z- forward into the scene.

📖 Full documentation →


input image

depth map


Installation

Requires Python 3.12 (Open3D constraint).

pip install "vizion3d[cpu]"

For NVIDIA CUDA, AMD ROCm, or Apple Silicon MPS, see the Hardware Acceleration page.


Quick start — depth estimation

import open3d as o3d
from vizion3d.lifting import DepthEstimation, DepthEstimationCommand

result = DepthEstimation().run(
    DepthEstimationCommand(
        image_input="roomhd.jpg",
        return_depth_image=True,
        return_point_cloud=True,
    )
)

print(f"Depth range : {result.min_depth:.4f}{result.max_depth:.4f}")
print(f"Points      : {len(result.point_cloud.points)}")
print(f"Scale       : {result.point_cloud_scale} metre per unit")

o3d.io.write_point_cloud("roomhd_result.ply", result.point_cloud)

The saved PLY uses OpenGL/viewer camera space: X+ right, Y+ up, Z- forward.


Quick start — 3D object annotation

import open3d as o3d
from vizion3d.annotation import ObjectMaskAnnotation3D, ObjectMaskAnnotation3DCommand

pcd = o3d.io.read_point_cloud("roomhd_result.ply")

result = ObjectMaskAnnotation3D().run(
    ObjectMaskAnnotation3DCommand(
        point_cloud=pcd,
        image_input="roomhd.jpg",
        return_annotated_cloud=True,
    )
)

for ann in result.annotations:
    print(f"{ann.label:20s}  conf={ann.confidence:.2f}  3D points={len(ann.point_indices)}")

o3d.io.write_point_cloud("annotated.ply", result.annotated_cloud)

Documentation

Full reference, REST/gRPC guides, hardware setup, and task catalogue:

https://docs.vizion3d.org/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vizion3d-1.5.2.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vizion3d-1.5.2-py3-none-any.whl (116.0 kB view details)

Uploaded Python 3

File details

Details for the file vizion3d-1.5.2.tar.gz.

File metadata

  • Download URL: vizion3d-1.5.2.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vizion3d-1.5.2.tar.gz
Algorithm Hash digest
SHA256 bf9ed5cf65e45b1aac4198ec66d67653155e459d6c249cfe6d396edd88a1623f
MD5 3c1f9a2f9b74fbc23f98b6daaa1317de
BLAKE2b-256 31ef1aba42c33cd66f42612453dacc0f25a8c0d9964ec99b9a66bf7b98e8ab60

See more details on using hashes here.

File details

Details for the file vizion3d-1.5.2-py3-none-any.whl.

File metadata

  • Download URL: vizion3d-1.5.2-py3-none-any.whl
  • Upload date:
  • Size: 116.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for vizion3d-1.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2d0d76311b97fe6ece5f5c722e250dc8491e3f97f22a59ac8f9a1063bf239691
MD5 cea60dcda1f958e40dc1fa887adb28ac
BLAKE2b-256 ad9fc96c1df074e96db7c3669d9c805d76a143b356b5299d0ea0e8c5da5d61ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page