ereged augmented to triangulation

This commit is contained in:
Kim HunMin 2024-01-13 13:23:09 +09:00
parent 41ff109646
commit c849648c6c
13 changed files with 47 additions and 44 deletions

View File

@ -95,7 +95,7 @@ calibration_type = 'convert' # 'convert' or 'calculate'
[pose]
pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
#With mediapipe: BLAZEPOSE.
#With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
#With deeplabcut: CUSTOM. See example at the end of the file.

View File

@ -27,7 +27,7 @@
# exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
# participant_height = 1.7 # m
# participant_mass = 70 # kg
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.

View File

@ -9,8 +9,8 @@
# If a parameter is not found here, Pose2Sim will look for its value in the
# Config.toml file of the level above. This way, you can set global
# instructions for the Session and alter them for specific Participants or Trials.
#
# If you wish to overwrite a parameter for a specific trial or participant,
#
# If you wish to overwrite a parameter for a specific trial or participant,
# edit its Config.toml file by uncommenting its key (e.g., [project])
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
# [filtering.butterworth] and set cut_off_frequency = 10, etc.
@ -27,7 +27,7 @@
# exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
# participant_height = 1.7 # m
# participant_mass = 70 # kg
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.

View File

@ -9,8 +9,8 @@
# If a parameter is not found here, Pose2Sim will look for its value in the
# Config.toml file of the level above. This way, you can set global
# instructions for the Session and alter them for specific Participants or Trials.
#
# If you wish to overwrite a parameter for a specific trial or participant,
#
# If you wish to overwrite a parameter for a specific trial or participant,
# edit its Config.toml file by uncommenting its key (e.g., [project])
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
# [filtering.butterworth] and set cut_off_frequency = 10, etc.
@ -27,7 +27,7 @@
# exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
# participant_height = 1.7 # m
# participant_mass = 70 # kg
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -140,9 +140,9 @@
# make_c3d = false # save triangulated data in c3d format in addition to trc # Coming soon!
[filtering]
# [filtering]
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
display_figures = true # true or false (lowercase)
# display_figures = true # true or false (lowercase)
# [filtering.butterworth]
# order = 4

View File

@ -27,7 +27,7 @@ frame_range = [] # For example [10,300], or [] for all frames
exclude_from_batch = [] # List of trials to be excluded from batch analysis, ['<participant_dir/trial_dir>', 'etc'].
# e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T01_BalancingTrial']
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
participant_height = 1.7 # m
participant_mass = 70 # kg
@ -95,7 +95,7 @@ calibration_type = 'convert' # 'convert' or 'calculate'
[pose]
pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
#With mediapipe: BLAZEPOSE.
#With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
#With deeplabcut: CUSTOM. See example at the end of the file.

View File

@ -29,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.

View File

@ -9,6 +9,7 @@
# If a parameter is not found here, Pose2Sim will look for its value in the
# Config.toml file of the level above. This way, you can set global
# instructions for the Session and alter them for specific Participants or Trials.
#
# If you wish to overwrite a parameter for a specific trial or participant,
# edit its Config.toml file by uncommenting its key (e.g., [project])
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
@ -28,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -95,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.

View File

@ -9,6 +9,7 @@
# If a parameter is not found here, Pose2Sim will look for its value in the
# Config.toml file of the level above. This way, you can set global
# instructions for the Session and alter them for specific Participants or Trials.
#
# If you wish to overwrite a parameter for a specific trial or participant,
# edit its Config.toml file by uncommenting its key (e.g., [project])
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
@ -28,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -95,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -139,9 +140,9 @@
# make_c3d = false # save triangulated data in c3d format in addition to trc # Coming soon!
[filtering]
# [filtering]
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
display_figures = true # true or false (lowercase)
# display_figures = true # true or false (lowercase)
# [filtering.butterworth]
# order = 4
@ -162,7 +163,7 @@ display_figures = true # true or false (lowercase)
# [opensim]
# static_trial = ['S01_P00_Participant/0S01_P00_T00_StaticTrial']
# static_trial = ['S01_P00_Participant0/S01_P00_T00_StaticTrial']
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']

View File

@ -9,6 +9,7 @@
# If a parameter is not found here, Pose2Sim will look for its value in the
# Config.toml file of the level above. This way, you can set global
# instructions for the Session and alter them for specific Participants or Trials.
#
# If you wish to overwrite a parameter for a specific trial or participant,
# edit its Config.toml file by uncommenting its key (e.g., [project])
# and editing its value (e.g., frame_range = [10,300]). Or else, uncomment
@ -28,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -95,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -139,9 +140,9 @@
# make_c3d = false # save triangulated data in c3d format in addition to trc # Coming soon!
[filtering]
# [filtering]
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
display_figures = true # true or false (lowercase)
# display_figures = true # true or false (lowercase)
# [filtering.butterworth]
# order = 4

View File

@ -29,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -163,7 +163,7 @@
# [opensim]
# static_trial = ['S01_P01_Participant1/S01_P01_T00_StaticTrial']
# static_trial = ['S01_P00_Participant0/S01_P00_T00_StaticTrial']
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']

View File

@ -29,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -163,7 +163,7 @@
# [opensim]
# static_trial = ['S01_P01_Participant1/S01_P01_T00_StaticTrial']
# static_trial = ['S01_P00_Participant0/S01_P00_T00_StaticTrial']
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']

View File

@ -29,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -140,9 +140,9 @@
# make_c3d = false # save triangulated data in c3d format in addition to trc # Coming soon!
[filtering]
# [filtering]
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
display_figures = true # true or false (lowercase)
# display_figures = true # true or false (lowercase)
# [filtering.butterworth]
# order = 4
@ -163,7 +163,7 @@ display_figures = true # true or false (lowercase)
# [opensim]
# static_trial = ['S01_P01_Participant1/S01_P01_T00_StaticTrial']
# static_trial = ['S01_P00_Participant0/S01_P00_T00_StaticTrial']
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']

View File

@ -29,7 +29,7 @@
# participant_height = 1.7 # m
# participant_mass = 70 # kg
## Only taken into account if pose_model is 'BODY_25_AUGMENTED' # Coming soon!
## Only taken into account if pose_model is 'BODY_25_AUGMENTED'
## Take heart, calibration is not that complicated once you get the hang of it!
@ -96,7 +96,7 @@
# [pose]
# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut'
# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII,
# BODY_25_AUGMENTED # Coming soon!
# BODY_25_AUGMENTED, BODY_25B_AUGMENTED
# #With mediapipe: BLAZEPOSE.
# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133.
# #With deeplabcut: CUSTOM. See example at the end of the file.
@ -140,9 +140,9 @@
# make_c3d = false # save triangulated data in c3d format in addition to trc # Coming soon!
[filtering]
# [filtering]
# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed
display_figures = true # true or false (lowercase)
# display_figures = true # true or false (lowercase)
# [filtering.butterworth]
# order = 4
@ -163,7 +163,7 @@ display_figures = true # true or false (lowercase)
# [opensim]
# static_trial = ['S01_P01_Participant1/S01_P01_T00_StaticTrial']
# static_trial = ['S01_P00_Participant0/S01_P00_T00_StaticTrial']
# # If this Config.toml file is at the Trial level, set to true or false (lowercase);
# # At the Participant level, specify the name of the static trial folder name, e.g. ['S00_P00_T00_StaticTrial'];
# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P01_Participant/S00_P00_T00_StaticTrial']