Skip to main content

A package to import URDF files into Blender

Project description

Blend My Bot

Import your robot in Blender and create a nice render of it!

https://github.com/ami-iit/blend-my-bot/assets/29798643/c224cd56-1d90-42dd-aec5-960a13690ce7

🐍 Requirements

[!NOTE] You should use a Python version that matches the one supported by the Blender version. For example, Blender 4 supports Python 3.10

[!NOTE] This library does not define the rig of the robot. For this, you can use a library such as blender-robotics-utils.

💾 Installation

Create a conda environment and install the dependencies:

conda create -n blender_env python=3.10
conda activate blender_env

Create a backup of the python folder in the blender folder:

mv blender_folder/version/python blender_folder/version/python_backup

Run the command below in the blender python folder to create a symbolic link to the conda environment in the blender python folder:

sudo ln -s ~/mambaforge/envs/blender_env blender_folder/version/python

From the root of the repository install the package:

pip install blend-my-bot

If you want to run the scripts from Visual Studio Code, you need to install the vscode python extension and set the python interpreter to the already created conda environment.

You need an additional vscode extension: Blender Development which can be found here.

Once installed, you can run Blender by typing Ctrl+Shift+P and then Blender: Start. It will ask you to select the blender executable: select the one in the folder where you extracted the blender archive (or the installed version if you installed it). Once Blender is running, you can run the script by typing Ctrl+Shift+P and then Blender: Run Script.

You can add objects, lights, and cameras as well as play with render parameters directly in Blender. If you prefer, you can save the Blender project. Everything will be there, including the robot and its motion, so that it does not need to run your script again.

Note that you could also write a script directly in the Scripting tab of Blender and run it from there.

For possible issues when running the script see the Troubleshooting section.

🚀 Usage

# import the library
from blend_my_bot import ModelImporter
# import the blender python API
import bpy

# ModelImporter needs 3 arguments:
# - the name you want to give to your robot
# - the path to the urdf file
# - the list of the joints you want to move in the animation

urdf_path = "path/to/urdf"
robot_name = "my_robot"
joints_list = ["joint1", "joint2", "joint3", "etc"]

# build the blender robot model
model = ModelImporter.build_model(robot_name, urdf_path, joints_list)

# you need to set the frame rate and the number of frames of the animation
# length of the animation in seconds
bpy.context.scene.render.fps_base = time_length
# number of frames
bpy.context.scene.render.fps = number_of_frames
# when the animation starts
bpy.context.scene.frame_start = 0
# when the animation ends
bpy.context.scene.frame_end = number_of_frames

# in Blender the effective frame rate is fps / fps_base

# you can now move the base and the joints of the robot
for k in range(number_of_frames):
    # jet the joint trajectory at time k
    s = joint_trajectory[k]
    # get the base pose described by a 4x4 homogeneous matrix at time k
    w_H_b = base_trajectory[k]
    # update the robot model
    model.update(w_H_b, s)
    # set the frame
    bpy.context.scene.frame_set(k)

Have a look at the examples folder for more examples.

In the examples/jumping folder you can find a script that generates a jumping animation of the iCub robot. Here the meshes are in a gray, stl format.

Having the meshes in an obj format, instead, will give a nicer and more colorful render! See the Readme of the following repository, for example!

Whole-Body Trajectory Optimization for Robot Multimodal Locomotion

🦿 Troubleshooting

FileNotFoundError when running the script

If you install a new package in the conda environment but it is not working as you expect when you run the script, try to activate it in a terminal before and then open Visual Studio Code from the terminal:

conda activate blender_env
code .

For example, when using resolve_robotics_uri_py an error like the following one appears:

FileNotFoundError: resolve-robotics-uri-py: No file corresponding to uri "package://iCub/robots/iCubGazeboV2_7/model.urdf" found

This is due to the fact that environmental variables are not sourced. Activating the conda environment before opening vscode solves this issue!

Crush when running the script

If Blender crashes when running the script from Visual Studio Code, try to run the script from the Scripting tab of Blender.

🦸‍♂️ Contributing

blend-my-bot is an open-source project. Contributions are very welcome!

Open an issue with your feature request or if you spot a bug. Then, you can also proceed with a Pull-requests! 🚀

📝 Tips

Some tips to speed up your Cycle render: https://www.youtube.com/watch?v=FNiobzflmpA

Feel free to add your own tips here!

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

blend_my_bot-1.1.0.tar.gz (71.7 kB view details)

Uploaded Source

Built Distribution

blend_my_bot-1.1.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file blend_my_bot-1.1.0.tar.gz.

File metadata

  • Download URL: blend_my_bot-1.1.0.tar.gz
  • Upload date:
  • Size: 71.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for blend_my_bot-1.1.0.tar.gz
Algorithm Hash digest
SHA256 fe967a2318540f871db3cac7877bbab841450bcd19e8d47cf5c63328ab23e754
MD5 968e70a81352e87c6d6ae47c63bb30b2
BLAKE2b-256 ef997a877b4d1e36d2cf272c43b1ff05ae41ebed076e24454fa547fca618b32a

See more details on using hashes here.

File details

Details for the file blend_my_bot-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for blend_my_bot-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4f31867199ec4bf12c59c9391658753d51e46fde69d77adb108667377062dafb
MD5 8d4872227529ca1094c645bf54672c48
BLAKE2b-256 7b42125c5dd2c72d6d7726b7829d0c35a81e5af4da61c201a3ed145adf01bbd0

See more details on using hashes here.

Supported by

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