Skip to main content

Openpose 3D editor component for Gradio

Project description

gradio-openpose-3d

Static Badge 💻 Component GitHub Code

A powerful, custom interactive 3D character posing component for Gradio apps using gr.HTML and Three.js (r160). It allows users to manipulate a 3D model's bones in real-time, adjust camera angles, apply aspect ratio cropping, and export the resulting pose map directly to the Python backend.

Perfect for AI image generation pipelines (like ControlNet or T2I-Adapter), reference posing, or any Gradio app requiring precise visual spatial conditioning.

Inspired by the Openart OpenPose Editor

Features and Key Characteristics

  • Interactive 3D Viewport: Full OrbitControls implementation (zoom, pan, rotate) and TransformControls for bone manipulation.
  • Client-Side Rendering via ESM: Loads modern Three.js directly via CDN (esm.sh) dynamically. No heavy local Node.js builds required.
  • Built-in Undo/Redo System: Autonomous history tracking for bone transformations (Rotation and Translation) with keyboard shortcuts (Ctrl+Z, Ctrl+Shift+Z).
  • Aspect Ratio Cropping: Visual crop overlay with predefined aspect ratios (1:1, 16:9, 9:16, etc.) to frame the exact pose you need.
  • Direct Python Export: clicking the export icon renders the cropped canvas and sends it directly to Gradio server as a PNG file path.
  • Theme Aware UI: The floating toolbar completely integrates with Gradio's native light/dark mode CSS variables.

Installation

pip install gradio-openpose3d-editor

Usage

import gradio as gr
from gradio_openpose3d_editor import OpenPose3DEditor

def process_pose(image_path: str):
    """
    Receives the PNG file path exported by the 3D editor.
    You can open it with PIL, pass it to ControlNet, etc.
    """
    if not image_path:
        return None
    return image_path

with gr.Blocks() as demo:
    gr.Markdown("# 🧍 3D OpenPose Editor")
    
    with gr.Row():
        # Initialize the 3D Editor
        editor = OpenPose3DEditor(
            #fbx_url="https://huggingface.co/buckets/elismasilva/assets/resolve/base.fbx?download=true",  here optional if you want a custom fbx model.
            height=560
        )
        
        # Output component to display the exported PNG
        preview = gr.Image(label="Exported Pose Map", type="filepath")
    
    # Listen to the 'export' event triggered by the floppy disk icon inside the component
    editor.export(
        fn=process_pose,
        inputs=editor,
        outputs=preview
    )
    
demo.launch()

Component API

Initialization Properties

Property Type Default Description
fbx_url str Default URL Optional URL or relative path to the .fbx character model.
height int 540 Height of the 3D viewport container in pixels.
label str | None None Optional label for the component.
visible bool True Whether the component is visible on the screen.
elem_id str | None None Custom HTML ID for targeting with CSS or JavaScript.
elem_classes list[str] | str | None None Additional CSS classes applied to the component wrapper.

Events

Event Description
.export(fn, inputs, outputs, ...) Triggered when the user clicks the "Floppy Disk" export button in the UI. The component's value is automatically updated to the server-side file path (str) of the rendered PNG image, which is then passed to your Python function.

Acknowledgements / Credits

The default 3D model used in this component is provided under the CC BY 4.0 license:

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

gradio_openpose3d_editor-0.0.2.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

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

gradio_openpose3d_editor-0.0.2-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file gradio_openpose3d_editor-0.0.2.tar.gz.

File metadata

  • Download URL: gradio_openpose3d_editor-0.0.2.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for gradio_openpose3d_editor-0.0.2.tar.gz
Algorithm Hash digest
SHA256 96bd86daf95e5483ad86e5b6dc8cf14603273ee21cef0122d5c481adb583e9f6
MD5 d094b81570c73630c44082f3f4ad9baa
BLAKE2b-256 950f81b8f68af802ccc21b604c9855fecb9b52cd1d3dc43b0a4864d7f7c139b9

See more details on using hashes here.

File details

Details for the file gradio_openpose3d_editor-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for gradio_openpose3d_editor-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b887750afcce1f36743ee815d099d6c0e8ffe40b4cd88a5652cafaaea0bbb625
MD5 a9c2950d4e5dee68d149516c008d6190
BLAKE2b-256 1f468218628ff92f1838c133f3fe9559fc0c801287c68ed4b79186b85233338a

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