File size: 617 Bytes
e7b9fb6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
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'
]