diff --git a/Installation.md b/Installation.md new file mode 100644 index 0000000..ab0290c --- /dev/null +++ b/Installation.md @@ -0,0 +1,29 @@ +# About FreeU +FreeU is an open-source Python library for unified and efficient processing of various 3D human data. + +-Unified data structure for different 3D human data formats +- Efficient data processing and conversion +- Support for popular 3D human datasets and models + +## Installation: + + +``` +bash +pip install FreeU +``` + + +## Usage: + + +``` +import FreeU as fu + +# Load 3D human mesh +mesh = fu.load_mesh('mesh.obj') + +# Convert mesh to SMPL format +smpl_mesh = fu.convert_mesh_to_smpl(mesh) +``` +Feel free to contribute!