Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gepetto-viewer-corba
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
gepetto-viewer-corba
Commits
95012cc5
Commit
95012cc5
authored
9 years ago
by
Steve Tonneau
Browse files
Options
Downloads
Patches
Plain Diff
added readme to gepettoimport.py
parent
86e6b7a5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
blender/gepettoimport.py
+89
-0
89 additions, 0 deletions
blender/gepettoimport.py
with
89 additions
and
0 deletions
blender/gepettoimport.py
+
89
−
0
View file @
95012cc5
...
...
@@ -24,6 +24,95 @@
#
###################################################
# A. Exporting the empty scene ("without the robot")
# This is already possible from the current python API, by simply calling
# the method "writeNodeFile" defined in hpp.gepetto.viewer
#
# Once the scene is loaded, simply type
#
# gui.writeNodeFile(0, 'scene.obj')
# I recommend the obj format. The collada sometimes fails for some reason.
#
#
# B.1 For non hpp users: recording frames
#
# - first, make sure that all the objects related to your robot belong to
# the same group, say "hrp2".
#
# For any frame for which you want to record the configuration of the
# robot, you need to call the method
#~ exportState(viewer, group, outData)
#
# defined in gepetto.corbaserver.exporttoblender
#
# where viewer is the instance of the gepetto viewer, group is the string
# designing the group of your robot, and outData is a dictionnary that
# will be filled with relevant data.
#
#
# for instance to record 100 frames:
#
# import gepetto.corbaserver.exporttoblender as etb
#
# group = "hrp2"
# data = {}
#
# for i in range(0,100):
# #update robot configuration
# ...
# etb.exportState(viewer, group, data)
#
# #then you can export the motion
# etb.writeDataToFile(group, data, "filename.txt")
#
#
# B.2 For hpp users: recording frames / a list of configurations
#
# In the module hpp.gepetto.blender.exportmotion
# you can directly export a motion by calling either
#
# exportPath(viewer, robot, problem, pathId, stepsize, filename)
# where robot is the name of your robot, problem is the python problem
# instance, pathId is the id of the computed path you want to export,
# and stepsize is the discretization step used to generate discrete
# postures along the path
#
# or
#
# exportStates(viewer, robot, configurations, filename)
# where robot is the name of your robot, and configurations is a list of
# configurations
#
#
# C. Loading the motion into blender
#
# This step assumes that you have loaded, in blender, a scene containing
# all the objects, the names of which correspond to the links of the
# robot, as defined in their urdf file.
# I already computed such files for Hyq and HRP-2, and can give them to
# you if you signed the non disclosure agreement. Olivier,
# it might be nice to add them to the hrp2_description later?
#
# C.1 load the motion.
# Switch to the script view in blender (menu on the top the screen)
# open the python script that you can find in the gepetto-viewer
# repository, under blender/gepettoimport.py
#
# Experimented users can install the script as an add-on to blender.
#
# Run the script, by calling the loadmotion method with the path to the
# previously generated file in parameter.
#
# Voilà! A set of frames should automatically be generated, resulting
# in an animation.
#
# If some errors occur, the messages will appear in the console, or the
# terminal used to launch blender, depending on how the script was launched.
#
# C.2 You can now import the previsouly generated scene using the import
# function from the file menu.
import
bpy
import
re
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment