A CLI for processing composite Wavefront OBJ files into a MuJoCo-conducive format
Project description
obj2mjcf
obj2mjcf
is a CLI for processing composite Wavefront OBJ files into a MuJoCo-conducive format. It automatically:
- Splits an OBJ file into sub-meshes that are grouped by the materials referenced in the OBJ's MTL file
- Creates a collision mesh by performing a convex decomposition of the OBJ with V-HACD
- Generates an MJCF XML file that is pre-filled with materials, meshes and geom elements referencing these OBJ files
The generated meshes can then be used as a drop-in replacement for the original OBJ file. The result is vastly enhanced visuals for your model:
Before | After |
---|---|
Motivation
As of June 2022, MuJoCo does not support composite OBJ files consisting of groups or objects (o
or g
OBJ tags) and only 1 material can be assigned per mesh. This means that you have to manually split your OBJ file into sub-meshes, a process that is tedious and error-prone. This tool is meant to automate this process.
Installation
The recommended way to install this package is via PyPI:
pip install --upgrade obj2mjcf
Extra: V-HACD 4.0
We recommend installing V-HACD v4.0. If available, obj2mjcf
will leverage it to create better collision geometry for your OBJ file.
# For macOS and Linux.
bash install_vhacd.sh
Usage
usage: obj2mjcf [-h] --obj-dir STR [--obj-filter STR] [--save-mtl] [--save-mjcf] [--compile-model] [--verbose] [--vhacd-args.enable]
[--vhacd-args.max-output-convex-hulls INT] [--vhacd-args.voxel-resolution INT] [--vhacd-args.volume-error-percent FLOAT]
[--vhacd-args.max-recursion-depth INT] [--vhacd-args.disable-shrink-wrap] [--vhacd-args.fill-mode {FLOOD,SURFACE,RAYCAST}]
[--vhacd-args.max-hull-vert-count INT] [--vhacd-args.disable-async] [--vhacd-args.min-edge-length INT] [--vhacd-args.split-hull]
[--texture-args.resize-percent FLOAT]
A CLI for processing composite Wavefront OBJ files into a MuJoCo-conducive format.
required arguments:
--obj-dir STR path to a directory containing obj files. All obj files in the directory will be
converted
optional arguments:
-h, --help show this help message and exit
--obj-filter STR only convert obj files matching this regex (default: None)
--save-mtl save the mtl files
--save-mjcf save an example XML (MJCF) file
--compile-model compile the MJCF file to check for errors
--verbose print verbose output
--overwrite overwrite previous run output
optional vhacd_args arguments:
arguments to pass to V-HACD
--vhacd-args.enable enable convex decomposition using V-HACD
--vhacd-args.max-output-convex-hulls INT
maximum number of output convex hulls (default: 32)
--vhacd-args.voxel-resolution INT
total number of voxels to use (default: 100000)
--vhacd-args.volume-error-percent FLOAT
volume error allowed as a percentage (default: 1.0)
--vhacd-args.max-recursion-depth INT
maximum recursion depth (default: 14)
--vhacd-args.disable-shrink-wrap
do not shrink wrap output to source mesh
--vhacd-args.fill-mode {FLOOD,SURFACE,RAYCAST}
fill mode (default: FLOOD)
--vhacd-args.max-hull-vert-count INT
maximum number of vertices in the output convex hull (default: 64)
--vhacd-args.disable-async
do not run asynchronously
--vhacd-args.min-edge-length INT
minimum size of a voxel edge (default: 2)
--vhacd-args.split-hull
try to find optimal split plane location
optional texture_args arguments:
--texture-args.resize-percent FLOAT
resize the texture to this percentage of the original size (default: 1.0)
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 obj2mjcf-0.0.20.tar.gz
.
File metadata
- Download URL: obj2mjcf-0.0.20.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ac0e3c064ddabcdd7a8121453f4898ef56442e78506c8ce8da67b4330bea08d |
|
MD5 | 3d3bc5e3a5a02fce9d7bb34904897808 |
|
BLAKE2b-256 | 37dc73133674849d911a2357efb4ace7d6be534f1a1872e5e37f2709c39f650a |
File details
Details for the file obj2mjcf-0.0.20-py3-none-any.whl
.
File metadata
- Download URL: obj2mjcf-0.0.20-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 416da6563a8583489168f40eafbcdb27654b1f343438212a11156975f3e07737 |
|
MD5 | c4a7e53b99b11cbf1433a320492a9e97 |
|
BLAKE2b-256 | 5fddb78fe2195f0e6c6772afbaa524ba26a972448abd3b0cca524740d466c970 |