Magic-plus-1 / utils /__init__.py
HF User
🚀 Fresh deploy of Magic Articulate Enhanced MVP
e7b9fb6
raw
history blame contribute delete
617 Bytes
"""
MagicArticulate Utils Package
包含3D模型处理、保存和数据加载的工具函数
"""
# 导出主要功能
from .mesh_to_pc import MeshProcessor
from .save_utils import (
save_mesh, pred_joints_and_bones, save_skeleton_to_txt,
save_args, remove_duplicate_joints, save_skeleton_obj,
render_mesh_with_skeleton
)
from .eval_utils import *
from .skeleton_data_loader import *
__all__ = [
'MeshProcessor',
'save_mesh',
'pred_joints_and_bones',
'save_skeleton_to_txt',
'save_args',
'remove_duplicate_joints',
'save_skeleton_obj',
'render_mesh_with_skeleton'
]