Code for our CVPR 2020 (ORAL) paper - TailorNet: Predicting Clothing in 3D as a Function of Human Pose, Shape and Garment Style.
408
stars
67
forks
source link
How is the data (character model, cloth animation, pose/character animation, etc.) passed to Blender? And how is the character draped? #23
Closed
aapatre closed 3 years ago
Go through this function which calls for visualization: https://github.com/chaitanya100100/TailorNet/blob/ff23afefd70aee394ac107a153989db714efb082/visualization/blender_renderer.py#L126
Main blender render function is here: https://github.com/chaitanya100100/TailorNet/blob/ff23afefd70aee394ac107a153989db714efb082/visualization/blender_renderer.py#L8 We have .blend file with camera and material already set up.
Go through tutorials and documentation of Blender Python API to know how python works in blender.
To answer your specific questions,
~ Chaitanya