Skip to content

Commit

Permalink
adding the files for the alpha branch
Browse files Browse the repository at this point in the history
realtime mocap development
  • Loading branch information
carlosedubarreto authored May 1, 2021
1 parent 3fbfa3c commit a892c5a
Show file tree
Hide file tree
Showing 4 changed files with 3,060 additions and 1,626 deletions.
17 changes: 8 additions & 9 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,16 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# beta 0.61
# - option to choose person to import from vibe mocap
# - apply new skeleton to easymocap
# - impórt SMPL result from easymocap (need file from https://smpl.is.tue.mpg.de/downloads "SMPL for Maya" PS.: need to register to download the file)
# Alpha 0.1
# - Realtime with mediapipe


bl_info = {
"name" : "MOCAP Pose Estimation Data Import",
"name" : "MOCAP Pose Estimation Data Import ALPHA",
"author" : "Carlos Barreto",
"description" : "",
"blender" : (2, 90, 0),
"version" : (0, 0, 61),
"version" : (0, 0, 1),
"location" : "View3D",
"warning" : "",
"category" : "Generic"
Expand All @@ -39,11 +37,12 @@
)

from . load_mocap import Import_Data_easymocap, OT_TestOpenFilebrowser,Import_Data_frankmocap,Import_Data_vibe,Mediapipe_Pose_estimation, \
Install_Mediapipe,Install_Joblib,Convert_axis,Reset_location,Reset_rotation,Foot_high,Compensate_Rotation,Smooth_Bone, Reload_sk_easymocap, Import_SMPL_easymocap,Path_SMPL_FBX_File
from . test_panel import Test_PT_Panel, MySettings, Install_PT_Panel, Modify_PT_Panel,Debug_PT_Panel
Install_Mediapipe,Install_Joblib,Convert_axis,Reset_location,Reset_rotation,Foot_high,Compensate_Rotation,Smooth_Bone,Mediapipe_Pose_estimation_RT, Mediapipe_Pose_Prepare_Skeleton_RT, Reload_sk_Mediapipe
from . test_panel import Test_PT_Panel, MySettings, Install_PT_Panel, Modify_PT_Panel, Debug_PT_Panel

classes = (Import_Data_easymocap, Test_PT_Panel, OT_TestOpenFilebrowser,Import_Data_frankmocap,Import_Data_vibe,Mediapipe_Pose_estimation,
Install_Mediapipe,Install_Joblib,MySettings,Modify_PT_Panel,Install_PT_Panel,Convert_axis,Reset_location,Reset_rotation,Foot_high,Compensate_Rotation,Smooth_Bone,Debug_PT_Panel, Reload_sk_easymocap, Import_SMPL_easymocap, Path_SMPL_FBX_File)
Install_Mediapipe,Install_Joblib,MySettings,Modify_PT_Panel,Install_PT_Panel,Convert_axis,Reset_location,Reset_rotation,Foot_high,Compensate_Rotation,Smooth_Bone,Mediapipe_Pose_estimation_RT,Mediapipe_Pose_Prepare_Skeleton_RT,
Reload_sk_Mediapipe, Debug_PT_Panel)

# register, unregister = bpy.utils.register_classes_factory(classes)
def register():
Expand Down
Loading

0 comments on commit a892c5a

Please sign in to comment.