STL2GLB / README.md
sanghan's picture
updated readme
e62763c

A newer version of the Gradio SDK is available: 5.23.3

Upgrade
metadata
title: STL2GLB
emoji: πŸ“
colorFrom: gray
colorTo: red
sdk: gradio
sdk_version: 4.17.0
app_file: app.py
pinned: false

STL2GLB

Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference

gradio

Overview

The STL2GLB project is a simple tool that converts 3D models in STL format to GLB format. The conversion is powered by trimesh and features an interactive Gradio interface. This project is containerized using Docker for easy deployment.

Features

  • Convert 3D models from STL to GLB format.
  • Clean up temporary files created during conversion.
  • Interactive model uploader and viewer using Gradio.

Getting Started

Prerequisites

  • Python 3.10 or newer.
  • Git LFS installed to work with large STL files.
  • Docker (optional) for containerized deployment.

Installation

  1. Clone the repository:
git clone https://github.com/Hal51AI/STL2GLB.git
cd STL2GLB
  1. Install dependencies:
pip install -r requirements.txt

Running the Application Locally

Run the application using Python:

python app.py

This will launch the Gradio interface (by default on port 7860) where you can upload an STL file, convert it to GLB, and view the result.

Running with Docker

  1. Build the Docker image:
docker build -t stl2glb .
  1. Run the Docker container:
docker run -p 7860:7860 stl2glb

The application will be available at http://0.0.0.0:7860.