Synchronized side-by-side 3D comparison viewer for Gradio — supports PLY and GLB files with shared camera control.
Project description
gradio_sync3dcompare
Synchronized side-by-side 3D comparison viewer for Gradio — supports PLY and GLB files with shared camera control.
Installation
pip install gradio_sync3dcompare
Usage
import gradio as gr
from gradio_sync3dcompare import Sync3DCompare
with gr.Blocks(title="Sync3DCompare Demo") as demo:
gr.Markdown("# Sync3DCompare — Synchronized 3D Comparison Viewer")
gr.Markdown(
"Compare two 3D assets side-by-side with synchronized orbit, pan, and zoom. "
"Rotate one view and all others follow."
)
gr.Markdown(
"### Two synchronized viewports. Upload `.ply` or `.glb` files manually into each pane."
)
Sync3DCompare(
label="Two-Viewport 3D Comparison",
value=[],
render_mode="points",
sync_camera=True,
point_size_mode="auto",
point_size=1.0,
height=540,
max_views=2,
)
if __name__ == "__main__":
demo.launch(ssr_mode=False)
Sync3DCompare
Initialization
| name | type | default | description |
|---|---|---|---|
value |
list[dict]| None
|
value = None |
None |
label |
str| None
|
value = "3D Comparison" |
None |
render_mode |
"points"| "native"
|
value = "points" |
None |
sync_camera |
bool
|
value = True |
None |
point_size_mode |
"auto"| "manual"
|
value = "auto" |
None |
point_size |
float
|
value = 1.0 |
None |
max_point_size |
float
|
value = 10.0 |
None |
default_zoom |
float
|
value = 1.0 |
None |
min_zoom |
float
|
value = 0.5 |
None |
max_zoom |
float
|
value = 16.0 |
None |
height |
int
|
value = 500 |
None |
max_views |
int
|
value = 4 |
None |
num_views |
int| None
|
value = None |
None |
interactive |
bool
|
value = True |
None |
visible |
bool
|
value = True |
None |
elem_id |
str| None
|
value = None |
None |
elem_classes |
list[str]| str| None
|
value = None |
None |
render |
bool
|
value = True |
None |
Events
| name | description |
|---|---|
change |
User function
The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).
- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.
The code snippet below is accurate in cases where the component is used as both an input and an output.
- As input: Should return, the output data received by the component from the user's function in the backend.
def predict(
value: Unknown
) -> list[dict]| None:
return value
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gradio_sync3dcompare-0.0.22.tar.gz.
File metadata
- Download URL: gradio_sync3dcompare-0.0.22.tar.gz
- Upload date:
- Size: 32.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3007cfbe55a6fac98d05dc570dd7eb399fe31a6aab89b80d228e3c1f6489a7c
|
|
| MD5 |
1a05e988125871eb3bc6d0b29699c636
|
|
| BLAKE2b-256 |
71542495e4460ea926e0f1b9a1bbaa24201e2532a54781f0d38f69943b764130
|
File details
Details for the file gradio_sync3dcompare-0.0.22-py3-none-any.whl.
File metadata
- Download URL: gradio_sync3dcompare-0.0.22-py3-none-any.whl
- Upload date:
- Size: 310.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92dee336d511483f618c075e323f302396373df9d587c99147232f004bab53af
|
|
| MD5 |
092cbfb4f4be4b969c9be675905cbcd0
|
|
| BLAKE2b-256 |
0e9536c769cc4aed4d1a0fb8a7f9c44ae5a0f696cef4f874677668665bb43d8e
|