diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/Config.toml b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/Config.toml deleted file mode 100644 index d29f435..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/Config.toml +++ /dev/null @@ -1,236 +0,0 @@ -############################################################################### -## PROJECT PARAMETERS ## -############################################################################### - - -# Configure your project parameters here. -# -# IMPORTANT: -# 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 -# [filtering.butterworth] and set cut_off_frequency = 10, etc. - - - -[project] -frame_rate = 120 # FPS -# frame_range = [] # For example [10,300], or [] for all frames -## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate -## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate, -## frame_range = [0.1, 2.0]*frame_rate = [6, 120] - -# exclude_from_batch = [] # List of trials to be excluded from batch analysis. -# # If this Config.toml file is at the Trial level, nothing will be excluded; -# # At the Participant level, only specify trial folder names, e.g. ['S00_P00_T00_StaticTrial', 'S00_P00_T00_BalancingTrial']; -# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T00_BalancingTrial'] - - -## Take heart, calibration is not that complicated once you get the hang of it! -# [calibration] -# calibration_type = 'convert' # 'convert' or 'calculate' - - # [calibration.convert] - # convert_from = 'qualisys' # 'qualisys', 'optitrack', vicon', 'opencap', 'easymocap', or 'biocv' - # [calibration.convert.qualisys] - # binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2 - # [calibration.convert.optitrack] # See readme for instructions - # [calibration.convert.vicon] # No parameter needed - # [calibration.convert.opencap] # No parameter needed - # [calibration.convert.easymocap] # No parameter needed - # [calibration.convert.biocv] # No parameter needed - # [calibration.convert.anipose] # No parameter needed - # [calibration.convert.freemocap] # No parameter needed - - - # [calibration.calculate] - ## Camera properties, theoretically need to be calculated only once in a camera lifetime - # [calibration.calculate.intrinsics] - # overwrite_intrinsics = false # overwrite (or not) if they have already been calculated? - # show_detection_intrinsics = true # true or false (lowercase) - # intrinsics_extension = 'jpg' # any video or image extension - # extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 ) - # intrinsics_corners_nb = [4,7] - # intrinsics_square_size = 60 # mm - - ## Camera placements, need to be done before every session - # [calibration.calculate.extrinsics] - # extrinsics_method = 'scene' # 'board', 'scene', 'keypoints' - ## 'board' should be large enough to be detected when laid on the floor. Not recommended. - ## 'scene' involves manually clicking any point of know coordinates on scene. Usually more accurate if points are spread out. - ## 'keypoints' uses automatic pose estimation of a person freely walking and waving arms in the scene. Slighlty less accurate, requires synchronized cameras. - - # moving_cameras = false # Not implemented yet - # calculate_extrinsics = true # true or false (lowercase) - - # [calibration.calculate.extrinsics.board] - # show_reprojection_error = true # true or false (lowercase) - # extrinsics_extension = 'png' # any video or image extension - # extrinsics_corners_nb = [4,7] # [H,W] rather than [w,h] - # extrinsics_square_size = 60 # mm # [h,w] if square is actually a rectangle - - # [calibration.calculate.extrinsics.scene] - # show_reprojection_error = true # true or false (lowercase) - # extrinsics_extension = 'png' # any video or image extension - ## list of 3D coordinates to be manually labelled on images. Can also be a 2 dimensional plane. - ## in m -> unlike for intrinsics, NOT in mm! - # object_coords_3d = [[-2.0, 0.3, 0.0], - # [-2.0 , 0.0, 0.0], - # [-2.0, 0.0, 0.05], - # [-2.0, -0.3 , 0.0], - # [0.0, 0.3, 0.0], - # [0.0, 0.0, 0.0], - # [0.0, 0.0, 0.05], - # [0.0, -0.3, 0.0]] - - # [calibration.calculate.extrinsics.keypoints] - ## Coming soon! - - -# [pose] -# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut' -# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII. -# #With mediapipe: BLAZEPOSE. -# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133. -# #With deeplabcut: CUSTOM. See example at the end of the file. -## What follows has not been implemented yet -# overwrite_pose = false -# openpose_path = '' # only checked if OpenPose is used - - -# [synchronization] -## COMING SOON! -# reset_sync = true # Recalculate synchronization even if already done -# frames = [2850,3490] # Frames to use for synchronization, should point to a moment with fast motion. -# cut_off_frequency = 10 # cut-off frequency for a 4th order low-pass Butterworth filter -## Vertical speeds (on X, Y, or Z axis, or 2D speeds) -# speed_kind = 'y' # 'x', 'y', 'z', or '2D' -# vmax = 20 # px/s -# cam1_nb = 4 -# cam2_nb = 3 -# id_kpt = [9,10] # Pour plus tard aller chercher numéro depuis keypoint name dans skeleton.py. 'RWrist' BLAZEPOSE 16, BODY_25B 10, BODY_25 4 ; 'LWrist' BLAZEPOSE 15, BODY_25B 9, BODY_25 7 -# weights_kpt = [1,1] # Pris en compte uniquement si on a plusieurs keypoints - - -# [personAssociation] -# single_person = true # false for multi-person analysis (not supported yet), true for only triangulating the main person in scene. -# tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py -## and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE) -# reproj_error_threshold_association = 20 # px - - -# [triangulation] -# reproj_error_threshold_triangulation = 15 # px -# likelihood_threshold = 0.3 -# min_cameras_for_triangulation = 2 -# interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none -## 'none' if you don't want to interpolate missing points -# interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps -# show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated - - -# [filtering] -# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed -# display_figures = true # true or false (lowercase) - - # [filtering.butterworth] - # order = 4 - # cut_off_frequency = 6 # Hz - # [filtering.kalman] - ## How much more do you trust triangulation results (measurements), than previous data (process assuming constant acceleration)? - # trust_ratio = 100 # = measurement_trust/process_trust ~= process_noise/measurement_noise - # smooth = true # should be true, unless you need real-time filtering - # [filtering.butterworth_on_speed] - # order = 4 - # cut_off_frequency = 10 # Hz - # [filtering.gaussian] - # sigma_kernel = 2 #px - # [filtering.LOESS] - # nb_values_used = 30 # = fraction of data used * nb frames - # [filtering.median] - # kernel_size = 9 - - -# [opensim] -# static_trial = ['S00_P00_Participant/S00_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'] -# opensim_bin_path = 'C:\OpenSim 4.4\bin' - - -## CUSTOM skeleton, if you trained your own DeepLabCut model for example. -## Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero. -## If you want to perform inverse kinematics, you will also need to create an OpenSim model -## and add to its markerset the location where you expect the triangulated keypoints to be detected. -## In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py). -## You can create as many custom skeletons as you want, just add them further down and rename them. -# [pose.CUSTOM] -# name = "CHip" -# id = "None" -# [[pose.CUSTOM.children]] -# id = 12 -# name = "RHip" -# [[pose.CUSTOM.children.children]] -# id = 14 -# name = "RKnee" -# [[pose.CUSTOM.children.children.children]] -# id = 16 -# name = "RAnkle" -# [[pose.CUSTOM.children.children.children.children]] -# id = 22 -# name = "RBigToe" -# [[pose.CUSTOM.children.children.children.children.children]] -# id = 23 -# name = "RSmallToe" -# [[pose.CUSTOM.children.children.children.children]] -# id = 24 -# name = "RHeel" -# [[pose.CUSTOM.children]] -# id = 11 -# name = "LHip" -# [[pose.CUSTOM.children.children]] -# id = 13 -# name = "LKnee" -# [[pose.CUSTOM.children.children.children]] -# id = 15 -# name = "LAnkle" -# [[pose.CUSTOM.children.children.children.children]] -# id = 19 -# name = "LBigToe" -# [[pose.CUSTOM.children.children.children.children.children]] -# id = 20 -# name = "LSmallToe" -# [[pose.CUSTOM.children.children.children.children]] -# id = 21 -# name = "LHeel" -# [[pose.CUSTOM.children]] -# id = 17 -# name = "Neck" -# [[pose.CUSTOM.children.children]] -# id = 18 -# name = "Head" -# [[pose.CUSTOM.children.children.children]] -# id = 0 -# name = "Nose" -# [[pose.CUSTOM.children.children]] -# id = 6 -# name = "RShoulder" -# [[pose.CUSTOM.children.children.children]] -# id = 8 -# name = "RElbow" -# [[pose.CUSTOM.children.children.children.children]] -# id = 10 -# name = "RWrist" -# [[pose.CUSTOM.children.children]] -# id = 5 -# name = "LShoulder" -# [[pose.CUSTOM.children.children.children]] -# id = 7 -# name = "LElbow" -# [[pose.CUSTOM.children.children.children.children]] -# id = 9 -# name = "LWrist" diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T00_StaticTrial/Config.toml b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T00_StaticTrial/Config.toml deleted file mode 100644 index 2dcf2b2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T00_StaticTrial/Config.toml +++ /dev/null @@ -1,236 +0,0 @@ -############################################################################### -## PROJECT PARAMETERS ## -############################################################################### - - -# Configure your project parameters here. -# -# IMPORTANT: -# 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 -# [filtering.butterworth] and set cut_off_frequency = 10, etc. - - - -# [project] -# frame_rate = 60 # FPS -# frame_range = [] # For example [10,300], or [] for all frames -## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate -## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate, -## frame_range = [0.1, 2.0]*frame_rate = [6, 120] - -# exclude_from_batch = [] # List of trials to be excluded from batch analysis. -# # If this Config.toml file is at the Trial level, nothing will be excluded; -# # At the Participant level, only specify trial folder names, e.g. ['S00_P00_T00_StaticTrial', 'S00_P00_T00_BalancingTrial']; -# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T00_BalancingTrial'] - - -## Take heart, calibration is not that complicated once you get the hang of it! -# [calibration] -# calibration_type = 'convert' # 'convert' or 'calculate' - - # [calibration.convert] - # convert_from = 'qualisys' # 'qualisys', 'optitrack', vicon', 'opencap', 'easymocap', or 'biocv' - # [calibration.convert.qualisys] - # binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2 - # [calibration.convert.optitrack] # See readme for instructions - # [calibration.convert.vicon] # No parameter needed - # [calibration.convert.opencap] # No parameter needed - # [calibration.convert.easymocap] # No parameter needed - # [calibration.convert.biocv] # No parameter needed - # [calibration.convert.anipose] # No parameter needed - # [calibration.convert.freemocap] # No parameter needed - - - # [calibration.calculate] - ## Camera properties, theoretically need to be calculated only once in a camera lifetime - # [calibration.calculate.intrinsics] - # overwrite_intrinsics = false # overwrite (or not) if they have already been calculated? - # show_detection_intrinsics = true # true or false (lowercase) - # intrinsics_extension = 'jpg' # any video or image extension - # extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 ) - # intrinsics_corners_nb = [4,7] - # intrinsics_square_size = 60 # mm - - ## Camera placements, need to be done before every session - # [calibration.calculate.extrinsics] - # extrinsics_method = 'scene' # 'board', 'scene', 'keypoints' - ## 'board' should be large enough to be detected when laid on the floor. Not recommended. - ## 'scene' involves manually clicking any point of know coordinates on scene. Usually more accurate if points are spread out. - ## 'keypoints' uses automatic pose estimation of a person freely walking and waving arms in the scene. Slighlty less accurate, requires synchronized cameras. - - # moving_cameras = false # Not implemented yet - # calculate_extrinsics = true # true or false (lowercase) - - # [calibration.calculate.extrinsics.board] - # show_reprojection_error = true # true or false (lowercase) - # extrinsics_extension = 'png' # any video or image extension - # extrinsics_corners_nb = [4,7] # [H,W] rather than [w,h] - # extrinsics_square_size = 60 # mm # [h,w] if square is actually a rectangle - - # [calibration.calculate.extrinsics.scene] - # show_reprojection_error = true # true or false (lowercase) - # extrinsics_extension = 'png' # any video or image extension - ## list of 3D coordinates to be manually labelled on images. Can also be a 2 dimensional plane. - ## in m -> unlike for intrinsics, NOT in mm! - # object_coords_3d = [[-2.0, 0.3, 0.0], - # [-2.0 , 0.0, 0.0], - # [-2.0, 0.0, 0.05], - # [-2.0, -0.3 , 0.0], - # [0.0, 0.3, 0.0], - # [0.0, 0.0, 0.0], - # [0.0, 0.0, 0.05], - # [0.0, -0.3, 0.0]] - - # [calibration.calculate.extrinsics.keypoints] - ## Coming soon! - - -# [pose] -# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut' -# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII. -# #With mediapipe: BLAZEPOSE. -# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133. -# #With deeplabcut: CUSTOM. See example at the end of the file. -## What follows has not been implemented yet -# overwrite_pose = false -# openpose_path = '' # only checked if OpenPose is used - - -# [synchronization] -## COMING SOON! -# reset_sync = true # Recalculate synchronization even if already done -# frames = [2850,3490] # Frames to use for synchronization, should point to a moment with fast motion. -# cut_off_frequency = 10 # cut-off frequency for a 4th order low-pass Butterworth filter -## Vertical speeds (on X, Y, or Z axis, or 2D speeds) -# speed_kind = 'y' # 'x', 'y', 'z', or '2D' -# vmax = 20 # px/s -# cam1_nb = 4 -# cam2_nb = 3 -# id_kpt = [9,10] # Pour plus tard aller chercher numéro depuis keypoint name dans skeleton.py. 'RWrist' BLAZEPOSE 16, BODY_25B 10, BODY_25 4 ; 'LWrist' BLAZEPOSE 15, BODY_25B 9, BODY_25 7 -# weights_kpt = [1,1] # Pris en compte uniquement si on a plusieurs keypoints - - -# [personAssociation] -# single_person = true # false for multi-person analysis (not supported yet), true for only triangulating the main person in scene. -# tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py -## and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE) -# reproj_error_threshold_association = 20 # px - - -# [triangulation] -# reproj_error_threshold_triangulation = 15 # px -# likelihood_threshold = 0.3 -# min_cameras_for_triangulation = 2 -# interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none -## 'none' if you don't want to interpolate missing points -# interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps -# show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated - - -# [filtering] -# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed -# display_figures = true # true or false (lowercase) - - # [filtering.butterworth] - # order = 4 - # cut_off_frequency = 6 # Hz - # [filtering.kalman] - ## How much more do you trust triangulation results (measurements), than previous data (process assuming constant acceleration)? - # trust_ratio = 100 # = measurement_trust/process_trust ~= process_noise/measurement_noise - # smooth = true # should be true, unless you need real-time filtering - # [filtering.butterworth_on_speed] - # order = 4 - # cut_off_frequency = 10 # Hz - # [filtering.gaussian] - # sigma_kernel = 2 #px - # [filtering.LOESS] - # nb_values_used = 30 # = fraction of data used * nb frames - # [filtering.median] - # kernel_size = 9 - - -# [opensim] -# static_trial = ['S00_P00_Participant/S00_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'] -# opensim_bin_path = 'C:\OpenSim 4.4\bin' - - -## CUSTOM skeleton, if you trained your own DeepLabCut model for example. -## Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero. -## If you want to perform inverse kinematics, you will also need to create an OpenSim model -## and add to its markerset the location where you expect the triangulated keypoints to be detected. -## In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py). -## You can create as many custom skeletons as you want, just add them further down and rename them. -# [pose.CUSTOM] -# name = "CHip" -# id = "None" -# [[pose.CUSTOM.children]] -# id = 12 -# name = "RHip" -# [[pose.CUSTOM.children.children]] -# id = 14 -# name = "RKnee" -# [[pose.CUSTOM.children.children.children]] -# id = 16 -# name = "RAnkle" -# [[pose.CUSTOM.children.children.children.children]] -# id = 22 -# name = "RBigToe" -# [[pose.CUSTOM.children.children.children.children.children]] -# id = 23 -# name = "RSmallToe" -# [[pose.CUSTOM.children.children.children.children]] -# id = 24 -# name = "RHeel" -# [[pose.CUSTOM.children]] -# id = 11 -# name = "LHip" -# [[pose.CUSTOM.children.children]] -# id = 13 -# name = "LKnee" -# [[pose.CUSTOM.children.children.children]] -# id = 15 -# name = "LAnkle" -# [[pose.CUSTOM.children.children.children.children]] -# id = 19 -# name = "LBigToe" -# [[pose.CUSTOM.children.children.children.children.children]] -# id = 20 -# name = "LSmallToe" -# [[pose.CUSTOM.children.children.children.children]] -# id = 21 -# name = "LHeel" -# [[pose.CUSTOM.children]] -# id = 17 -# name = "Neck" -# [[pose.CUSTOM.children.children]] -# id = 18 -# name = "Head" -# [[pose.CUSTOM.children.children.children]] -# id = 0 -# name = "Nose" -# [[pose.CUSTOM.children.children]] -# id = 6 -# name = "RShoulder" -# [[pose.CUSTOM.children.children.children]] -# id = 8 -# name = "RElbow" -# [[pose.CUSTOM.children.children.children.children]] -# id = 10 -# name = "RWrist" -# [[pose.CUSTOM.children.children]] -# id = 5 -# name = "LShoulder" -# [[pose.CUSTOM.children.children.children]] -# id = 7 -# name = "LElbow" -# [[pose.CUSTOM.children.children.children.children]] -# id = 9 -# name = "LWrist" diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/Config.toml b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/Config.toml deleted file mode 100644 index 7a46c27..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/Config.toml +++ /dev/null @@ -1,236 +0,0 @@ -############################################################################### -## PROJECT PARAMETERS ## -############################################################################### - - -# Configure your project parameters here. -# -# IMPORTANT: -# 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 -# [filtering.butterworth] and set cut_off_frequency = 10, etc. - - - -[project] -frame_rate = 90 # FPS -# frame_range = [] # For example [10,300], or [] for all frames -## N.B.: If you want a time range instead, use frame_range = time_range * frame_rate -## For example if you want to analyze from 0.1 to 2 seconds with a 60 fps frame rate, -## frame_range = [0.1, 2.0]*frame_rate = [6, 120] - -# exclude_from_batch = [] # List of trials to be excluded from batch analysis. -# # If this Config.toml file is at the Trial level, nothing will be excluded; -# # At the Participant level, only specify trial folder names, e.g. ['S00_P00_T00_StaticTrial', 'S00_P00_T00_BalancingTrial']; -# # At the Session level, add participant subdirectory, e.g. ['S00_P00_Participant/S00_P00_T00_StaticTrial', 'S00_P00_Participant/S00_P00_T00_BalancingTrial'] - - -## Take heart, calibration is not that complicated once you get the hang of it! -# [calibration] -# calibration_type = 'convert' # 'convert' or 'calculate' - - # [calibration.convert] - # convert_from = 'qualisys' # 'qualisys', 'optitrack', vicon', 'opencap', 'easymocap', or 'biocv' - # [calibration.convert.qualisys] - # binning_factor = 1 # Usually 1, except when filming in 540p where it usually is 2 - # [calibration.convert.optitrack] # See readme for instructions - # [calibration.convert.vicon] # No parameter needed - # [calibration.convert.opencap] # No parameter needed - # [calibration.convert.easymocap] # No parameter needed - # [calibration.convert.biocv] # No parameter needed - # [calibration.convert.anipose] # No parameter needed - # [calibration.convert.freemocap] # No parameter needed - - - # [calibration.calculate] - ## Camera properties, theoretically need to be calculated only once in a camera lifetime - # [calibration.calculate.intrinsics] - # overwrite_intrinsics = false # overwrite (or not) if they have already been calculated? - # show_detection_intrinsics = true # true or false (lowercase) - # intrinsics_extension = 'jpg' # any video or image extension - # extract_every_N_sec = 1 # if video, extract frames every N seconds (can be <1 ) - # intrinsics_corners_nb = [4,7] - # intrinsics_square_size = 60 # mm - - ## Camera placements, need to be done before every session - # [calibration.calculate.extrinsics] - # extrinsics_method = 'scene' # 'board', 'scene', 'keypoints' - ## 'board' should be large enough to be detected when laid on the floor. Not recommended. - ## 'scene' involves manually clicking any point of know coordinates on scene. Usually more accurate if points are spread out. - ## 'keypoints' uses automatic pose estimation of a person freely walking and waving arms in the scene. Slighlty less accurate, requires synchronized cameras. - - # moving_cameras = false # Not implemented yet - # calculate_extrinsics = true # true or false (lowercase) - - # [calibration.calculate.extrinsics.board] - # show_reprojection_error = true # true or false (lowercase) - # extrinsics_extension = 'png' # any video or image extension - # extrinsics_corners_nb = [4,7] # [H,W] rather than [w,h] - # extrinsics_square_size = 60 # mm # [h,w] if square is actually a rectangle - - # [calibration.calculate.extrinsics.scene] - # show_reprojection_error = true # true or false (lowercase) - # extrinsics_extension = 'png' # any video or image extension - ## list of 3D coordinates to be manually labelled on images. Can also be a 2 dimensional plane. - ## in m -> unlike for intrinsics, NOT in mm! - # object_coords_3d = [[-2.0, 0.3, 0.0], - # [-2.0 , 0.0, 0.0], - # [-2.0, 0.0, 0.05], - # [-2.0, -0.3 , 0.0], - # [0.0, 0.3, 0.0], - # [0.0, 0.0, 0.0], - # [0.0, 0.0, 0.05], - # [0.0, -0.3, 0.0]] - - # [calibration.calculate.extrinsics.keypoints] - ## Coming soon! - - -# [pose] -# pose_framework = 'openpose' # 'openpose', 'mediapipe', 'alphapose', 'deeplabcut' -# pose_model = 'BODY_25B' #With openpose: BODY_25B, BODY_25, BODY_135, COCO, MPII. -# #With mediapipe: BLAZEPOSE. -# #With alphapose: HALPE_26, HALPE_68, HALPE_136, COCO_133. -# #With deeplabcut: CUSTOM. See example at the end of the file. -## What follows has not been implemented yet -# overwrite_pose = false -# openpose_path = '' # only checked if OpenPose is used - - -# [synchronization] -## COMING SOON! -# reset_sync = true # Recalculate synchronization even if already done -# frames = [2850,3490] # Frames to use for synchronization, should point to a moment with fast motion. -# cut_off_frequency = 10 # cut-off frequency for a 4th order low-pass Butterworth filter -## Vertical speeds (on X, Y, or Z axis, or 2D speeds) -# speed_kind = 'y' # 'x', 'y', 'z', or '2D' -# vmax = 20 # px/s -# cam1_nb = 4 -# cam2_nb = 3 -# id_kpt = [9,10] # Pour plus tard aller chercher numéro depuis keypoint name dans skeleton.py. 'RWrist' BLAZEPOSE 16, BODY_25B 10, BODY_25 4 ; 'LWrist' BLAZEPOSE 15, BODY_25B 9, BODY_25 7 -# weights_kpt = [1,1] # Pris en compte uniquement si on a plusieurs keypoints - - -# [personAssociation] -# single_person = true # false for multi-person analysis (not supported yet), true for only triangulating the main person in scene. -# tracked_keypoint = 'Neck' # If the neck is not detected by the pose_model, check skeleton.py -## and choose a stable point for tracking the person of interest (e.g., 'right_shoulder' with BLAZEPOSE) -# reproj_error_threshold_association = 20 # px - - -# [triangulation] -# reproj_error_threshold_triangulation = 15 # px -# likelihood_threshold = 0.3 -# min_cameras_for_triangulation = 2 -# interpolation = 'cubic' #linear, slinear, quadratic, cubic, or none -## 'none' if you don't want to interpolate missing points -# interp_if_gap_smaller_than = 10 # do not interpolate bigger gaps -# show_interp_indices = true # true or false (lowercase). For each keypoint, return the frames that need to be interpolated - - -# [filtering] -# type = 'butterworth' # butterworth, kalman, gaussian, LOESS, median, butterworth_on_speed -# display_figures = true # true or false (lowercase) - - # [filtering.butterworth] - # order = 4 - # cut_off_frequency = 6 # Hz - # [filtering.kalman] - ## How much more do you trust triangulation results (measurements), than previous data (process assuming constant acceleration)? - # trust_ratio = 100 # = measurement_trust/process_trust ~= process_noise/measurement_noise - # smooth = true # should be true, unless you need real-time filtering - # [filtering.butterworth_on_speed] - # order = 4 - # cut_off_frequency = 10 # Hz - # [filtering.gaussian] - # sigma_kernel = 2 #px - # [filtering.LOESS] - # nb_values_used = 30 # = fraction of data used * nb frames - # [filtering.median] - # kernel_size = 9 - - -# [opensim] -# static_trial = ['S00_P00_Participant/S00_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'] -# opensim_bin_path = 'C:\OpenSim 4.4\bin' - - -## CUSTOM skeleton, if you trained your own DeepLabCut model for example. -## Make sure the node ids correspond to the column numbers of the 2D pose file, starting from zero. -## If you want to perform inverse kinematics, you will also need to create an OpenSim model -## and add to its markerset the location where you expect the triangulated keypoints to be detected. -## In this example, CUSTOM reproduces the BODY_25B skeleton (default skeletons are stored in skeletons.py). -## You can create as many custom skeletons as you want, just add them further down and rename them. -# [pose.CUSTOM] -# name = "CHip" -# id = "None" -# [[pose.CUSTOM.children]] -# id = 12 -# name = "RHip" -# [[pose.CUSTOM.children.children]] -# id = 14 -# name = "RKnee" -# [[pose.CUSTOM.children.children.children]] -# id = 16 -# name = "RAnkle" -# [[pose.CUSTOM.children.children.children.children]] -# id = 22 -# name = "RBigToe" -# [[pose.CUSTOM.children.children.children.children.children]] -# id = 23 -# name = "RSmallToe" -# [[pose.CUSTOM.children.children.children.children]] -# id = 24 -# name = "RHeel" -# [[pose.CUSTOM.children]] -# id = 11 -# name = "LHip" -# [[pose.CUSTOM.children.children]] -# id = 13 -# name = "LKnee" -# [[pose.CUSTOM.children.children.children]] -# id = 15 -# name = "LAnkle" -# [[pose.CUSTOM.children.children.children.children]] -# id = 19 -# name = "LBigToe" -# [[pose.CUSTOM.children.children.children.children.children]] -# id = 20 -# name = "LSmallToe" -# [[pose.CUSTOM.children.children.children.children]] -# id = 21 -# name = "LHeel" -# [[pose.CUSTOM.children]] -# id = 17 -# name = "Neck" -# [[pose.CUSTOM.children.children]] -# id = 18 -# name = "Head" -# [[pose.CUSTOM.children.children.children]] -# id = 0 -# name = "Nose" -# [[pose.CUSTOM.children.children]] -# id = 6 -# name = "RShoulder" -# [[pose.CUSTOM.children.children.children]] -# id = 8 -# name = "RElbow" -# [[pose.CUSTOM.children.children.children.children]] -# id = 10 -# name = "RWrist" -# [[pose.CUSTOM.children.children]] -# id = 5 -# name = "LShoulder" -# [[pose.CUSTOM.children.children.children]] -# id = 7 -# name = "LElbow" -# [[pose.CUSTOM.children.children.children.children]] -# id = 9 -# name = "LWrist" diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0000.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0000.json deleted file mode 100644 index 959927e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0000.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[505.232,431.63,0.664216,515.849,410.613,0.60741,489.417,405.32,0.668967,521.069,405.425,0.133121,452.648,400.017,0.679661,521.038,494.789,0.71398,384.303,478.904,0.666443,542.041,610.29,0.659144,300.143,594.661,0.690961,568.227,720.712,0.674367,268.58,715.519,0.707265,478.869,736.483,0.675958,389.456,725.953,0.649799,457.99,920.553,0.640835,368.557,899.416,0.664056,421.056,1078.38,0.6676,331.681,1010.01,0.658113,463.158,463.215,0.64987,515.746,342.25,0.685157,431.649,1146.64,0.676574,447.471,1141.34,0.700625,400.105,1094.02,0.645542,326.456,1062.48,0.627354,310.734,1046.81,0.626106,331.792,1025.62,0.555979],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3784,331.803,0.451137,89.9826,326.423,0.438317,74.0443,321.232,0.440268,105.512,331.734,0.380456,58.4093,321.252,0.315967,116.171,394.615,0.518987,0,0,0,110.915,452.698,0.51267,16.1649,442.076,0.396311,74.0335,405.465,0.474693,13.577,484.198,0.280037,89.8712,515.834,0.530878,0,0,0,74.0298,620.871,0.488649,13.5983,615.692,0.49765,63.6432,720.772,0.481855,13.5832,705.086,0.461627,79.4497,363.346,0.453015,89.8711,279.267,0.458461,58.2763,741.769,0.372975,68.8046,741.858,0.400318,68.8799,731.295,0.445516,13.6271,736.484,0.268078,13.6527,731.235,0.279725,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0001.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0001.json deleted file mode 100644 index 48ac4a5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0001.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[515.671,431.666,0.671314,521.079,415.788,0.59981,499.998,405.356,0.659737,526.295,410.535,0.0657008,463.151,400.004,0.662775,521.118,505.174,0.696945,389.519,478.933,0.659945,547.3,610.452,0.636267,300.229,594.535,0.675945,568.226,720.781,0.658541,268.607,705.065,0.70934,478.963,736.557,0.665226,389.503,726.008,0.638947,463.122,920.616,0.641385,368.587,899.498,0.652249,415.878,1083.52,0.666211,331.652,1015.14,0.655541,468.408,463.233,0.649498,521,342.283,0.673564,431.666,1146.63,0.673185,447.456,1141.32,0.697569,400.051,1094.05,0.649888,326.466,1062.52,0.623637,310.741,1051.96,0.623459,331.762,1025.65,0.55838],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3834,331.754,0.450344,89.9901,326.374,0.438457,74.0433,321.192,0.440377,100.549,331.704,0.379084,58.4064,321.226,0.315277,116.16,389.626,0.509438,0,0,0,110.902,452.695,0.504725,16.1755,442.05,0.38326,68.9773,405.407,0.47323,13.5924,479.022,0.272644,89.852,515.842,0.521163,0,0,0,74.0252,620.907,0.481349,13.5963,615.723,0.488324,63.6365,720.789,0.475359,13.5811,705.109,0.455674,79.452,363.308,0.456547,89.8816,279.244,0.462492,58.2362,741.764,0.372429,63.7253,741.875,0.399138,68.8802,731.309,0.43871,13.6304,736.505,0.262629,13.6543,731.237,0.275641,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0002.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0002.json deleted file mode 100644 index 0d52c23..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0002.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[520.879,436.76,0.692085,526.272,415.835,0.617236,510.455,405.392,0.678285,0,0,0,473.593,400.013,0.668473,526.225,505.229,0.693225,394.706,478.955,0.668603,552.536,610.486,0.641004,305.416,594.514,0.679185,568.41,731.2,0.659847,268.715,704.982,0.712102,478.923,736.559,0.666422,389.512,720.838,0.641905,463.118,920.617,0.638694,373.756,899.5,0.659905,415.884,1083.55,0.658813,331.678,1010.03,0.654245,473.653,468.375,0.66081,526.24,342.312,0.669309,436.794,1151.77,0.672788,447.475,1141.38,0.694214,400.044,1094.07,0.64286,326.482,1062.55,0.625997,310.753,1051.98,0.62611,331.779,1025.62,0.552713],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3902,331.735,0.454035,95.0018,321.314,0.440636,74.0443,321.163,0.44487,105.509,331.686,0.378441,58.3917,321.217,0.328096,116.15,389.63,0.51654,0,0,0,110.916,452.738,0.508879,16.1907,442.056,0.390845,74.0212,405.402,0.478287,13.596,479.029,0.275236,89.8466,515.848,0.529482,0,0,0,74.0149,620.907,0.493686,13.5996,615.723,0.504017,63.6141,720.79,0.483363,13.5814,705.121,0.46749,79.4329,363.295,0.454541,89.8992,279.236,0.458304,58.2562,741.764,0.378541,68.7889,741.86,0.406492,68.8546,731.304,0.44738,13.6238,736.518,0.271825,13.649,731.257,0.284632,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0003.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0003.json deleted file mode 100644 index a4c4da2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0003.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[520.983,436.746,0.69373,531.464,415.872,0.623461,515.641,405.416,0.684878,542.007,421.058,0.0669086,478.857,400.077,0.670228,526.32,510.439,0.690086,394.83,478.942,0.674744,562.948,620.914,0.641016,310.56,589.33,0.678539,568.399,731.389,0.646518,273.797,699.795,0.720067,478.963,741.777,0.662773,389.521,726.079,0.639997,463.14,930.993,0.644823,373.818,899.534,0.659593,415.825,1083.56,0.656313,331.635,1010,0.648676,478.918,468.403,0.65862,526.38,347.529,0.665804,436.784,1151.84,0.674565,447.453,1141.44,0.693917,399.977,1094.04,0.639697,326.469,1062.54,0.627912,310.748,1051.99,0.623033,331.734,1020.47,0.545483],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4152,331.739,0.470326,95.0213,321.33,0.454414,74.0743,321.174,0.46147,105.519,331.708,0.383979,58.3891,321.215,0.347343,116.158,389.63,0.534651,0,0,0,110.929,452.722,0.518092,16.202,436.983,0.404926,74.0358,405.422,0.483183,13.5936,484.204,0.287132,89.8622,515.81,0.542934,0,0,0,74.0281,620.842,0.506526,13.5909,615.696,0.51765,63.6258,720.738,0.485912,13.5774,705.109,0.476011,79.4045,363.309,0.465482,89.9076,279.253,0.467091,58.323,736.724,0.378716,68.8233,741.798,0.405424,68.851,731.257,0.448528,13.6174,736.504,0.278872,13.642,731.251,0.290694,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0004.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0004.json deleted file mode 100644 index fed6373..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0004.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,436.77,0.682186,541.991,415.893,0.591759,520.854,405.396,0.692488,557.774,415.913,0.0889605,484.125,400.067,0.685972,536.757,510.529,0.667492,400.033,478.915,0.685034,563.095,631.396,0.658008,310.675,584.087,0.67356,568.448,741.812,0.625274,273.941,694.631,0.72045,479.04,741.854,0.665875,389.625,726.027,0.652598,463.199,931.078,0.649917,368.618,899.514,0.657517,410.683,1083.56,0.660813,331.704,1009.91,0.648655,484.264,468.418,0.68031,536.84,347.548,0.664398,436.764,1151.85,0.669762,447.442,1141.45,0.694605,399.969,1094.03,0.64492,326.461,1062.48,0.629686,310.752,1046.81,0.623627,331.814,1020.39,0.540674],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4329,331.75,0.519574,95.0273,326.377,0.496548,74.0723,321.2,0.51529,100.528,331.714,0.397004,58.3251,321.244,0.407986,116.127,389.629,0.581381,0,0,0,110.923,452.663,0.557101,16.2454,442.056,0.451662,68.9539,405.419,0.512617,13.6205,484.219,0.319901,89.8495,515.782,0.591516,0,0,0,68.9341,615.727,0.55093,13.6051,615.66,0.564104,63.6079,715.568,0.518309,13.5882,705.067,0.508429,79.3466,363.328,0.498728,89.8825,279.284,0.48939,58.3281,736.633,0.393034,68.8182,736.696,0.424189,68.8527,731.167,0.477366,13.6162,736.466,0.303961,13.6466,731.208,0.316844,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0005.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0005.json deleted file mode 100644 index 1e79fd8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0005.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,436.877,0.64958,557.716,421.114,0.559619,521.11,405.455,0.667622,563.126,415.905,0.0907448,489.5,400.09,0.671042,552.583,515.621,0.656663,405.259,478.912,0.6735,563.096,626.169,0.64222,310.705,578.836,0.673378,573.506,741.772,0.625887,273.958,694.501,0.719397,478.985,741.879,0.666112,394.697,726.057,0.656444,468.418,931.052,0.648119,373.761,899.513,0.655001,410.647,1083.58,0.660366,331.671,1009.94,0.64457,494.707,468.426,0.673009,557.812,352.663,0.662723,436.78,1151.83,0.668719,447.41,1141.44,0.68812,394.957,1094.06,0.641101,326.466,1062.46,0.629168,310.748,1046.79,0.626136,331.751,1020.43,0.54121],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3336,331.777,0.486577,89.9421,326.397,0.467467,68.9618,321.228,0.478539,100.526,331.701,0.402573,58.3174,321.229,0.340862,116.148,389.619,0.556273,0,0,0,110.952,452.662,0.53313,16.2253,442.057,0.419878,68.9613,405.411,0.491132,13.6101,484.203,0.293633,89.8679,515.791,0.564367,0,0,0,68.9364,620.849,0.52831,13.5943,615.692,0.534614,63.5946,720.7,0.497951,13.5802,705.079,0.48395,79.4068,363.343,0.472561,89.8469,279.26,0.471266,58.2873,736.672,0.380329,63.7226,741.775,0.410857,68.8356,731.236,0.456748,13.6145,736.482,0.286218,13.6409,731.225,0.29906,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0006.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0006.json deleted file mode 100644 index 154ce8a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0006.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,442.086,0.647621,563.122,431.595,0.627625,531.454,415.896,0.643154,578.811,426.342,0.154276,499.997,400.189,0.654497,563.082,515.824,0.688769,410.544,478.899,0.666185,568.306,636.581,0.660849,310.792,573.636,0.687107,573.592,747.057,0.639903,274.057,689.284,0.714371,484.093,752.322,0.664385,394.714,731.205,0.663362,468.395,931.105,0.651382,373.75,899.442,0.652712,410.642,1083.54,0.660735,326.566,1009.93,0.650614,500.041,473.726,0.685809,568.357,352.791,0.667551,431.661,1151.79,0.667502,447.376,1141.4,0.691023,394.929,1094.02,0.640668,326.451,1062.46,0.638307,310.713,1046.8,0.631194,331.711,1020.41,0.545382],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3228,336.897,0.509309,89.9368,326.446,0.483698,68.9378,321.277,0.504627,100.495,331.715,0.402321,58.2809,321.257,0.381862,116.13,389.614,0.576922,0,0,0,110.971,452.658,0.553686,16.2594,442.068,0.442607,68.9564,405.484,0.508485,13.6361,478.995,0.313959,89.8527,515.776,0.587383,10.9991,515.657,0.594879,68.8812,620.841,0.545621,13.6267,615.672,0.546995,63.5935,720.719,0.519087,13.6046,705.109,0.49045,79.3374,363.377,0.482048,89.8323,279.282,0.474851,58.2818,736.72,0.393123,68.8038,741.779,0.424794,68.8482,731.223,0.47449,13.6252,736.477,0.29395,13.6594,731.227,0.30529,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0007.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0007.json deleted file mode 100644 index f745739..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0007.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,442.085,0.668835,568.449,431.569,0.630959,547.322,415.913,0.630151,584.088,426.37,0.115686,510.532,400.192,0.677592,568.223,520.897,0.692112,421.137,478.837,0.659303,568.391,636.705,0.659408,315.972,568.429,0.695717,573.701,752.305,0.663371,279.124,689.145,0.701501,484.198,752.275,0.658976,394.759,731.229,0.667918,468.385,936.396,0.663782,373.751,899.474,0.657172,410.613,1083.55,0.662525,331.645,1009.96,0.650937,510.449,473.724,0.704378,573.661,352.844,0.666155,436.779,1151.83,0.674097,447.403,1141.41,0.690425,394.909,1088.85,0.64766,326.469,1062.49,0.641583,310.728,1046.82,0.631238,331.751,1020.45,0.550856],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4157,331.755,0.4743,95.0182,321.328,0.457629,74.0559,321.195,0.466957,100.542,331.687,0.383573,58.365,321.232,0.36061,116.141,389.607,0.544612,0,0,0,110.93,452.692,0.52136,16.2094,436.984,0.40526,68.9821,405.383,0.486986,13.6299,484.222,0.283985,89.8683,515.795,0.547397,0,0,0,68.957,620.846,0.504944,13.6046,615.693,0.512323,63.6364,720.705,0.483214,13.5796,705.112,0.468832,79.4021,363.315,0.468157,89.8683,279.245,0.465571,58.3069,736.677,0.377858,68.817,741.759,0.405576,68.8607,731.223,0.446295,13.6164,736.498,0.275787,13.6453,731.235,0.287261,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0008.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0008.json deleted file mode 100644 index 9ef82f0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0008.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,442.15,0.692068,578.784,431.627,0.647805,562.955,421.132,0.649992,589.384,426.346,0.133487,515.798,405.292,0.671044,568.386,521.014,0.703839,431.534,478.864,0.654867,573.503,641.806,0.663933,316.095,568.201,0.700547,578.855,752.356,0.659571,284.358,673.414,0.664827,484.323,752.38,0.655214,394.789,731.211,0.671487,468.371,941.437,0.657713,368.598,899.558,0.650345,410.647,1083.56,0.659062,331.701,1009.9,0.650281,515.651,478.843,0.6987,578.92,358.056,0.649373,436.764,1151.8,0.665848,447.407,1141.39,0.687257,394.959,1088.84,0.647633,326.438,1062.44,0.639455,310.72,1046.73,0.630306,336.95,1020.39,0.550584],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4124,331.739,0.472375,95.0079,321.325,0.45662,74.0661,321.182,0.464697,100.529,331.71,0.384685,58.3874,321.247,0.357806,116.119,389.631,0.540212,0,0,0,110.937,452.727,0.51347,16.2096,442.053,0.407611,74.0255,405.379,0.479854,13.6229,484.228,0.285829,89.8822,515.797,0.546109,0,0,0,74.0381,620.833,0.505684,13.5904,615.691,0.517288,63.6914,720.664,0.478539,13.5717,705.111,0.473004,79.4091,363.329,0.46353,89.8656,279.273,0.462443,58.3464,736.636,0.377589,68.8763,736.708,0.402479,68.8997,731.183,0.441746,13.6119,736.479,0.282001,13.6435,731.228,0.293092,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0009.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0009.json deleted file mode 100644 index 079ec61..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0009.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[573.476,447.367,0.688187,584.149,436.91,0.622878,568.191,426.404,0.660882,589.388,436.829,0.0779138,521.027,405.413,0.679668,573.555,521.104,0.695479,436.864,478.897,0.669172,573.671,641.93,0.66949,321.201,563.059,0.695212,584.042,757.629,0.660383,289.643,657.674,0.666591,489.39,757.55,0.659798,394.854,731.279,0.668729,468.376,941.642,0.66354,368.588,899.571,0.645616,410.638,1083.51,0.656544,331.701,1004.77,0.646082,520.902,478.923,0.699059,594.518,363.288,0.645118,436.827,1151.77,0.664512,447.449,1141.33,0.680222,394.967,1088.78,0.643906,326.502,1062.44,0.636317,310.788,1046.74,0.628226,336.916,1015.21,0.544888],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4195,331.736,0.460826,95.0078,321.33,0.450322,74.0724,321.181,0.452067,100.528,331.718,0.384304,58.3953,321.238,0.344524,116.124,389.628,0.521649,0,0,0,110.919,452.702,0.501777,16.1973,436.983,0.390282,68.9725,405.361,0.473926,13.6304,489.431,0.278722,89.8681,515.81,0.530561,0,0,0,74.0276,620.875,0.490678,13.596,615.716,0.496436,63.6845,720.751,0.471815,13.5735,710.205,0.454398,79.402,363.307,0.456994,89.8828,279.291,0.459015,58.3145,741.733,0.376061,68.9012,741.819,0.400029,68.894,731.276,0.432847,13.6082,736.496,0.270686,13.641,731.248,0.281436,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0010.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0010.json deleted file mode 100644 index b5f7f2c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0010.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[584.118,447.471,0.657867,599.908,442.051,0.564124,573.677,431.622,0.654841,0,0,0,531.546,410.628,0.639452,578.815,526.206,0.682205,442.081,478.906,0.673664,578.788,647.205,0.65921,321.161,563.004,0.686675,584.152,762.802,0.656073,300.14,647.288,0.685531,484.297,762.747,0.662696,394.823,736.48,0.670759,463.211,941.716,0.672211,368.582,904.837,0.634233,410.614,1083.61,0.655641,326.56,1004.74,0.644598,526.213,478.995,0.691825,605.172,368.536,0.65016,436.85,1151.81,0.663107,447.443,1141.36,0.676216,394.933,1088.85,0.638663,326.516,1062.42,0.647353,315.827,1046.74,0.637366,331.719,1015.17,0.544231],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[84.537,326.554,0.487371,95.0379,321.221,0.469546,74.1287,316.082,0.482365,100.53,331.633,0.373807,58.3855,321.173,0.394631,116.111,389.605,0.549872,0,0,0,110.929,452.68,0.521672,16.2427,436.966,0.421467,74.0303,405.414,0.487304,13.6445,479.005,0.28985,89.8338,515.824,0.562849,10.9941,515.699,0.572169,68.9549,620.903,0.521978,13.6203,620.824,0.526546,63.6616,720.741,0.496256,13.5868,710.221,0.477482,79.3481,363.232,0.486781,89.879,279.205,0.480098,58.3704,736.745,0.389759,68.8931,741.801,0.41595,68.8782,731.253,0.451964,13.6035,736.517,0.28844,13.6391,731.283,0.298922,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0011.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0011.json deleted file mode 100644 index bbdce57..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0011.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[599.779,452.626,0.6689,610.378,442.154,0.616319,584.121,431.669,0.67,0,0,0,547.29,415.788,0.63361,584.123,526.37,0.66489,447.372,478.909,0.668292,578.941,652.365,0.626526,326.392,552.501,0.658907,589.412,773.283,0.641211,305.448,641.801,0.688139,489.379,762.858,0.661341,394.809,736.576,0.670606,463.131,946.821,0.662774,368.558,904.849,0.632633,410.643,1083.61,0.655852,326.468,1004.72,0.643042,531.569,479.042,0.676798,615.662,368.527,0.650577,436.91,1151.85,0.665818,447.498,1141.39,0.675546,394.959,1088.84,0.646097,326.516,1062.48,0.651194,310.767,1046.79,0.640207,326.526,1009.96,0.538884],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[84.6318,326.558,0.491102,95.0942,321.24,0.472374,79.2832,316.094,0.484576,105.542,331.641,0.360003,58.4376,321.186,0.405217,116.12,389.616,0.555109,0,0,0,110.95,452.685,0.524051,16.2345,436.972,0.434342,74.0252,405.433,0.479076,13.6394,478.995,0.302604,89.8562,515.835,0.572938,0,0,0,68.9322,620.921,0.539007,13.6162,620.834,0.541025,63.6422,720.766,0.51585,13.5919,710.214,0.495372,79.3668,363.233,0.494181,89.9228,279.25,0.485498,58.3131,741.783,0.397974,68.8721,741.856,0.425602,68.8754,731.295,0.468972,13.6031,736.537,0.303778,13.6317,731.308,0.31443,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0012.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0012.json deleted file mode 100644 index 505f665..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0012.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[605.001,452.698,0.672193,615.623,442.254,0.599963,594.551,436.802,0.672377,0,0,0,562.947,415.822,0.651977,594.55,536.753,0.652474,452.601,478.958,0.670204,589.364,657.749,0.625861,326.535,542.043,0.663435,599.782,778.625,0.621865,310.632,626.089,0.688803,489.413,762.912,0.662342,394.766,736.546,0.670644,463.109,946.969,0.652226,363.301,915.278,0.62393,410.591,1083.61,0.660998,326.379,999.525,0.642034,542.081,484.131,0.675557,626.125,378.989,0.654511,436.896,1151.86,0.660685,447.49,1141.4,0.670027,394.931,1088.83,0.641711,326.563,1062.41,0.645481,310.785,1046.74,0.637101,326.434,1004.7,0.536813],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3768,331.756,0.45003,89.9742,326.376,0.439681,74.0277,321.194,0.440475,100.517,331.697,0.376775,58.3825,321.228,0.329487,116.134,389.631,0.511747,0,0,0,110.926,452.708,0.496838,16.1988,442.046,0.383038,68.9849,405.377,0.462893,13.6527,484.211,0.266242,89.8878,520.851,0.527133,0,0,0,74.0749,620.952,0.49585,13.5914,620.852,0.501113,68.7803,720.816,0.483731,13.5664,710.224,0.469205,79.4035,363.324,0.452135,89.8227,279.265,0.461449,58.3176,741.835,0.382783,68.8909,741.928,0.404163,68.9254,731.374,0.442179,13.5978,736.565,0.283657,13.6286,731.329,0.296222,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0013.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0013.json deleted file mode 100644 index c1f78e3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0013.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[605.208,463.16,0.670379,620.925,452.572,0.624381,599.869,442.074,0.677613,0,0,0,568.186,426.294,0.664533,599.751,547.33,0.6497,457.918,484.095,0.666604,594.554,668.237,0.63446,336.962,531.597,0.656422,599.78,783.952,0.650171,315.891,605.131,0.69328,489.406,768.072,0.670457,394.827,736.626,0.673046,457.932,946.978,0.663172,363.221,920.549,0.623334,410.519,1088.85,0.658786,321.253,1004.65,0.640448,552.528,489.388,0.686225,636.672,384.344,0.669468,436.81,1151.91,0.64767,447.358,1146.53,0.668282,394.901,1094.04,0.631656,331.738,1062.42,0.653542,315.831,1046.8,0.643954,321.252,1004.7,0.530934],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3692,331.733,0.476536,89.9769,321.326,0.459869,74.0331,321.184,0.466955,100.528,331.676,0.394814,58.3776,321.223,0.35974,116.147,394.627,0.549791,0,0,0,110.944,452.704,0.522785,16.217,442.053,0.423272,74.0471,405.464,0.482104,13.6616,479,0.301831,89.8924,520.84,0.568406,0,0,0,74.0311,620.898,0.540542,13.5912,620.839,0.549614,63.7074,720.769,0.519395,13.5603,710.208,0.503596,79.3828,363.315,0.479657,89.8403,279.274,0.471985,58.3375,741.809,0.404011,68.8902,741.887,0.428761,68.9205,731.32,0.474583,13.5907,736.557,0.313968,13.6191,731.322,0.327651,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0014.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0014.json deleted file mode 100644 index f4aacab..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0014.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[610.398,463.215,0.672647,631.384,452.648,0.644754,605.126,442.139,0.686281,631.404,468.386,0.115936,568.432,431.604,0.669311,604.994,562.953,0.660914,468.381,484.167,0.664068,599.756,678.774,0.648235,342.261,526.314,0.662077,599.86,799.591,0.644453,316.082,589.278,0.665882,489.401,773.256,0.670107,394.844,741.762,0.675619,457.897,952.059,0.670543,358.145,920.566,0.621887,405.453,1088.85,0.660234,321.179,994.253,0.641749,562.994,489.558,0.690908,647.05,394.754,0.687868,436.808,1151.91,0.637438,447.347,1146.52,0.658422,394.878,1094.03,0.636157,331.782,1057.28,0.662443,310.803,1046.7,0.644879,321.133,994.212,0.537793],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.408,331.759,0.455953,94.9956,326.377,0.443545,74.0709,321.198,0.447071,105.509,331.727,0.379562,58.4181,321.248,0.34117,116.151,394.621,0.5284,0,0,0,110.932,452.683,0.510286,16.1808,436.974,0.39261,74.0248,405.404,0.472833,13.6666,479.017,0.273072,89.9119,520.84,0.545393,0,0,0,74.0388,620.94,0.515054,13.5901,620.866,0.522362,63.7001,720.823,0.498905,13.5643,710.252,0.482507,79.4035,363.344,0.460106,89.8394,284.335,0.464227,58.3461,741.847,0.393491,68.8891,741.932,0.416278,68.9041,731.363,0.458789,13.5946,736.592,0.296604,13.6234,731.349,0.308345,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0015.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0015.json deleted file mode 100644 index 6061a48..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0015.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,473.616,0.65484,641.833,457.999,0.619575,615.574,447.359,0.663744,636.693,468.392,0.0640156,578.836,436.768,0.660171,610.295,563.072,0.664971,473.694,484.198,0.665668,599.878,683.978,0.650376,352.78,526.203,0.646374,599.899,804.824,0.651391,326.408,573.517,0.67063,489.379,773.394,0.665879,394.86,741.82,0.673618,457.915,957.353,0.656308,358.065,931.004,0.628535,405.372,1094.08,0.655033,321.167,999.43,0.636385,568.274,494.693,0.697746,652.432,394.902,0.694264,436.839,1151.98,0.631452,447.33,1146.57,0.652632,394.772,1094.1,0.617177,331.707,1062.41,0.655621,310.762,1046.78,0.639531,321.152,999.384,0.53456],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3618,331.81,0.446327,89.9635,326.43,0.438171,74.0249,321.243,0.437028,100.533,331.755,0.384677,58.4019,321.279,0.324225,116.149,394.621,0.512327,0,0,0,110.937,452.685,0.5004,16.1617,442.056,0.385576,74.0142,405.41,0.463258,13.6679,484.218,0.271427,89.8981,520.83,0.526975,0,0,0,74.023,620.928,0.496499,13.5844,620.857,0.498033,63.6792,720.833,0.482486,13.5653,710.226,0.463365,79.4035,363.377,0.443926,89.805,279.302,0.453212,58.2917,741.844,0.379943,68.837,741.945,0.404729,68.886,731.372,0.448423,13.6017,736.565,0.283403,13.6275,731.319,0.294953,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0016.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0016.json deleted file mode 100644 index 973abf2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0016.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[631.405,478.854,0.638993,647.132,468.352,0.572119,620.914,452.578,0.63477,647.175,473.645,0.0622508,584.038,436.924,0.648103,615.573,568.203,0.663149,484.119,484.143,0.664613,605.06,689.202,0.668276,363.22,520.878,0.613099,599.887,810.202,0.677804,342.292,552.461,0.569158,489.464,778.547,0.661472,394.882,741.824,0.669056,457.905,957.436,0.653557,357.966,931.046,0.635075,405.376,1099.3,0.659277,321.199,999.486,0.617086,568.437,500.005,0.690069,662.899,400.048,0.663845,436.845,1151.94,0.636808,447.312,1146.55,0.653987,394.804,1099.31,0.618395,331.712,1062.53,0.663798,315.837,1052.03,0.645925,321.204,999.401,0.525177],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3517,331.749,0.455384,89.95,326.387,0.447371,74.0204,321.205,0.445997,100.509,331.726,0.391284,58.3912,321.248,0.326841,116.129,389.628,0.519323,0,0,0,110.921,452.673,0.514356,16.1679,442.043,0.400217,74.0199,405.371,0.470037,13.6123,484.199,0.284159,89.8997,515.849,0.539229,0,0,0,68.9533,620.932,0.509119,13.5731,620.859,0.513143,63.6868,725.899,0.49468,10.9812,710.258,0.473587,79.4085,363.332,0.458484,89.8013,284.341,0.463701,58.3087,741.864,0.383859,68.8293,747.003,0.410884,68.9081,731.386,0.458415,13.5971,736.587,0.289178,13.6227,731.346,0.300262,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0017.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0017.json deleted file mode 100644 index 3317ccd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0017.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[636.686,478.978,0.666651,652.348,473.594,0.631018,631.343,452.724,0.650059,657.724,478.999,0.0942876,594.509,436.983,0.653117,620.831,568.41,0.668085,489.426,484.183,0.665232,610.298,694.49,0.672881,373.83,515.816,0.599193,605.014,815.493,0.67324,357.91,526.362,0.591359,489.472,778.557,0.666136,394.875,741.834,0.670753,457.951,967.876,0.659306,352.648,931.041,0.639491,405.326,1099.25,0.662366,321.138,1015.26,0.642568,573.641,505.259,0.697899,673.443,400.115,0.675216,431.665,1151.92,0.635568,442.222,1146.53,0.663896,394.731,1094.09,0.625914,321.306,1067.63,0.66278,310.563,1057.22,0.631012,321.298,1020.4,0.554986],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3606,331.702,0.475956,89.9715,321.299,0.460414,74.05,321.155,0.465739,105.523,331.673,0.39653,58.4129,321.216,0.341502,116.161,389.625,0.54724,0,0,0,110.968,452.667,0.531857,16.2004,442.071,0.422385,74.0563,405.448,0.485182,13.5836,478.99,0.306056,89.8908,515.843,0.563066,0,0,0,68.9251,620.9,0.530831,13.5918,620.827,0.532751,63.6396,725.886,0.517303,13.5577,710.223,0.486838,79.4078,363.305,0.480124,89.8205,279.252,0.473168,58.2823,741.859,0.394225,68.8474,741.944,0.423594,68.8662,731.355,0.47605,13.6,736.554,0.299397,13.629,731.3,0.308728,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0018.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0018.json deleted file mode 100644 index 2e9f68a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0018.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[641.996,484.122,0.681276,657.63,473.745,0.639394,636.705,457.968,0.661353,673.418,484.203,0.116898,599.884,442.117,0.670494,626.092,573.667,0.673318,494.741,484.227,0.659783,610.428,704.948,0.677486,379.043,515.658,0.610613,605.101,825.997,0.672281,363.253,526.254,0.591237,489.53,778.62,0.665046,394.918,741.757,0.659248,463.108,967.918,0.662872,342.277,931.103,0.641624,405.409,1099.27,0.667684,316.027,1015.2,0.637565,584.016,510.422,0.705561,678.761,405.387,0.680793,431.618,1151.93,0.660627,442.269,1146.55,0.685213,394.817,1094.12,0.63475,321.167,1067.75,0.677655,305.326,1057.32,0.645016,321.21,1010,0.551182],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4348,331.69,0.484415,95.037,321.281,0.470962,74.0998,321.145,0.472793,105.549,331.664,0.396152,58.4357,321.21,0.360997,116.18,389.617,0.553933,0,0,0,111.005,452.675,0.535394,16.1866,442.076,0.424036,74.0808,405.449,0.491375,13.5794,479.008,0.31013,89.9265,515.836,0.568144,0,0,0,68.9272,620.903,0.528134,13.5941,620.837,0.535671,63.6277,720.831,0.514426,13.5698,710.227,0.487169,79.407,363.288,0.491734,89.8564,279.255,0.479271,58.3104,741.846,0.391271,68.8688,741.919,0.418408,68.8362,731.336,0.470864,13.6052,736.56,0.296591,13.6344,731.309,0.305398,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0019.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0019.json deleted file mode 100644 index c0e3c3e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0019.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.2,489.5,0.681546,663.015,484.115,0.61596,641.979,468.431,0.664151,678.756,489.464,0.0948559,605.185,447.347,0.648469,631.391,578.86,0.668062,505.177,484.187,0.648348,615.657,710.265,0.655726,379.064,505.19,0.578374,605.208,836.408,0.6495,379.085,520.909,0.588137,489.554,778.605,0.657364,394.921,736.599,0.662193,463.127,978.357,0.638162,336.985,931.048,0.632194,410.538,1099.31,0.666565,315.837,1025.65,0.640028,589.275,510.548,0.69186,689.198,410.632,0.672315,431.636,1151.98,0.675245,447.35,1146.6,0.697234,394.886,1099.29,0.638014,315.875,1073.08,0.683331,284.475,1067.67,0.656833,316.003,1020.45,0.549226],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3909,331.689,0.496125,95.0092,321.285,0.479398,74.0623,321.149,0.485295,105.539,331.666,0.404132,58.3913,321.197,0.357874,116.176,389.617,0.566271,0,0,0,110.994,452.675,0.546777,16.2055,442.07,0.435293,74.055,405.43,0.49757,13.5802,484.194,0.314657,89.9395,515.842,0.587135,0,0,0,74.0477,620.908,0.547139,13.5781,620.848,0.564356,63.6873,720.824,0.531551,10.9723,710.232,0.517062,79.4248,363.305,0.497261,89.8394,279.256,0.488289,58.3088,741.844,0.399709,68.8549,741.934,0.427851,68.9262,731.362,0.489899,13.5978,736.584,0.317086,13.6297,731.321,0.330114,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0020.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0020.json deleted file mode 100644 index 6305f13..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0020.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[652.387,494.66,0.62914,678.656,484.207,0.567312,647.213,473.567,0.625043,683.892,494.68,0.116598,610.503,452.57,0.594763,636.659,584.068,0.624176,510.55,489.426,0.602728,620.842,720.699,0.599006,389.535,499.929,0.485534,610.291,852.17,0.566979,389.555,505.221,0.467232,489.453,778.597,0.616063,399.987,736.595,0.632366,457.887,983.575,0.623347,331.664,931.137,0.580659,405.339,1099.36,0.623241,310.568,1030.9,0.594841,594.641,515.74,0.690755,694.42,415.904,0.643803,431.683,1157.12,0.617358,447.306,1146.71,0.636563,394.749,1099.31,0.574305,310.733,1083.51,0.587318,279.229,1067.94,0.59057,310.679,1025.71,0.508711],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4155,331.699,0.479462,95.0208,321.304,0.467186,74.0812,321.161,0.469323,105.534,331.684,0.396654,58.4153,321.212,0.347135,116.172,389.614,0.548518,0,0,0,110.991,452.676,0.531129,13.6776,442.052,0.421222,74.0452,405.39,0.48748,13.5492,484.207,0.300772,89.934,515.835,0.561906,0,0,0,74.0428,620.91,0.519135,13.5772,620.822,0.531584,63.647,725.893,0.508997,13.5497,710.25,0.497087,79.4373,363.31,0.477436,89.8468,279.278,0.468954,58.2817,741.853,0.382589,68.8121,741.94,0.407488,68.8635,731.389,0.472222,13.5984,736.573,0.301921,13.6332,731.303,0.314019,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0021.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0021.json deleted file mode 100644 index 52b50a4..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0021.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[652.564,500.033,0.677697,683.947,489.542,0.651795,652.381,478.838,0.680022,689.165,505.173,0.16388,615.694,457.86,0.634031,641.93,594.533,0.671587,515.758,489.481,0.669444,620.93,731.289,0.650738,394.917,510.523,0.585606,610.373,862.627,0.677911,394.777,494.728,0.527355,494.656,778.699,0.648277,400.001,736.555,0.657425,457.95,983.594,0.642484,321.282,931.127,0.628562,405.433,1099.32,0.672546,300.104,1036.2,0.629437,604.993,520.866,0.699407,694.63,426.41,0.667043,431.661,1157.05,0.676493,447.374,1146.63,0.690203,394.866,1099.26,0.647767,300.203,1104.5,0.632803,268.745,1078.36,0.637796,305.442,1030.98,0.548947],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.37,331.71,0.504208,89.981,321.316,0.485001,74.047,321.172,0.496543,105.526,331.681,0.412043,58.3676,321.194,0.366735,116.15,389.624,0.576622,0,0,0,110.968,452.665,0.553467,16.1752,442.066,0.452617,74.0433,405.402,0.499667,13.5424,484.214,0.329064,89.9302,515.827,0.593554,0,0,0,74.0275,620.861,0.555225,13.5875,615.697,0.576463,63.6601,720.802,0.538861,10.9721,710.213,0.530631,79.4008,363.311,0.504982,89.8399,279.283,0.489881,58.3093,741.805,0.402318,68.8332,741.876,0.429557,68.894,731.352,0.497216,13.5952,736.536,0.326557,13.6276,731.26,0.340594,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0022.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0022.json deleted file mode 100644 index acdd126..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0022.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[662.98,510.39,0.671121,689.137,499.955,0.640702,657.678,484.087,0.676648,689.295,510.516,0.108665,626.183,463.197,0.636493,647.04,599.75,0.671828,520.964,494.672,0.662414,626.1,736.527,0.661548,394.754,510.49,0.595495,610.358,862.858,0.682214,394.675,473.621,0.465709,494.701,778.71,0.65498,400.063,736.594,0.664662,463.114,983.651,0.636468,321.232,936.24,0.644034,405.424,1099.36,0.67605,279.241,1036.26,0.642856,605.181,521.003,0.69818,699.8,436.895,0.667339,431.62,1157.07,0.682638,447.342,1146.64,0.699871,394.897,1099.3,0.644351,284.373,1104.64,0.659389,263.38,1083.5,0.651666,284.411,1030.99,0.529916],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3632,331.725,0.543008,89.9646,321.319,0.51699,74.0358,321.189,0.537121,105.555,331.688,0.423619,58.3241,321.229,0.404298,116.166,389.624,0.603207,0,0,0,110.976,452.65,0.578156,16.2072,442.089,0.48051,74.0507,405.471,0.516761,13.5733,484.213,0.35277,89.9427,515.826,0.623926,0,0,0,74.0467,620.863,0.580877,13.5999,615.693,0.600496,63.6626,720.781,0.568718,10.977,710.243,0.549373,79.38,363.329,0.532164,89.8209,284.355,0.515406,58.3516,741.825,0.421883,68.871,741.869,0.450366,68.9031,731.331,0.523145,13.5987,736.563,0.342061,13.6246,731.289,0.355039,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0023.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0023.json deleted file mode 100644 index 5994814..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0023.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[673.407,515.613,0.669704,689.266,505.217,0.653496,662.952,484.26,0.663998,694.408,510.529,0.106609,631.463,463.24,0.635995,647.082,599.838,0.671986,521.061,489.551,0.658924,631.345,731.308,0.660793,405.359,510.462,0.55044,610.481,862.72,0.6992,400.11,479.015,0.501877,489.561,783.864,0.652952,400.024,736.618,0.662978,463.163,988.829,0.632909,315.929,936.316,0.631782,405.405,1099.29,0.670661,273.876,1046.74,0.660646,610.371,521.055,0.692162,705.074,442.024,0.654185,431.615,1157.09,0.692141,447.32,1146.63,0.704251,394.867,1094.03,0.640751,273.871,1115.09,0.697677,247.588,1104.51,0.641683,279.121,1041.5,0.539551],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[84.5389,331.702,0.545864,95.071,321.315,0.520702,74.1173,321.186,0.541009,105.587,331.708,0.410972,58.3778,321.238,0.421677,116.176,394.639,0.609216,0,0,0,110.981,452.661,0.577214,16.2066,442.081,0.488129,74.0618,410.538,0.512065,13.5633,479.004,0.361172,89.9488,515.825,0.631168,0,0,0,74.0646,620.864,0.581154,13.5932,615.685,0.605323,68.7974,720.743,0.571267,10.9641,710.216,0.561248,79.4047,363.341,0.534434,89.8812,284.37,0.522694,58.3881,741.798,0.429297,68.9185,741.85,0.460688,74.0563,731.313,0.53233,13.5731,736.561,0.349825,13.5999,731.282,0.364306,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0024.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0024.json deleted file mode 100644 index 5abf618..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0024.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[678.772,515.737,0.682683,694.415,510.409,0.677135,673.423,489.45,0.658947,694.444,515.725,0.127299,636.632,473.639,0.645609,647.195,605.141,0.688315,526.187,494.759,0.670639,631.454,736.57,0.66026,400.143,515.583,0.604566,615.647,867.936,0.681574,400.093,478.989,0.536421,494.665,783.822,0.66464,400.112,736.575,0.668094,468.385,983.734,0.63873,315.924,925.819,0.632828,405.437,1099.26,0.664094,268.524,1052.07,0.67118,610.468,526.27,0.681949,715.464,442.224,0.653533,436.745,1157.05,0.68587,447.352,1146.59,0.692984,394.898,1094.02,0.635142,268.644,1120.32,0.703886,231.929,1109.8,0.668728,268.604,1052.05,0.547176],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[84.5868,331.661,0.510531,95.094,321.267,0.491224,74.1546,321.133,0.502124,105.566,331.669,0.388443,58.413,321.21,0.400497,116.177,389.599,0.575587,0,0,0,110.98,452.646,0.549698,13.6697,442.061,0.454522,74.0376,405.419,0.497808,13.5364,484.202,0.332405,89.9514,515.809,0.595948,0,0,0,74.0567,620.824,0.556622,13.5791,615.673,0.580601,63.6827,720.727,0.546349,10.9657,705.093,0.541128,79.4222,363.274,0.506235,89.8997,279.268,0.49301,58.3223,741.786,0.4052,68.8675,741.842,0.432449,68.9234,731.284,0.502174,13.5855,736.523,0.328661,13.6151,731.246,0.343062,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0025.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0025.json deleted file mode 100644 index f866075..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0025.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[684.011,520.857,0.696166,694.538,515.6,0.670044,678.765,494.675,0.662612,694.455,515.795,0.0925455,641.948,478.814,0.658126,652.327,605.208,0.690732,531.517,499.916,0.657305,636.675,736.547,0.673703,405.351,515.594,0.59796,615.745,867.917,0.685625,400.219,478.93,0.553425,494.734,783.879,0.67268,400.17,736.589,0.674221,468.487,983.693,0.647854,310.662,931.065,0.651202,410.582,1099.29,0.661544,252.894,1062.52,0.673147,615.69,526.321,0.679475,720.754,447.474,0.640718,431.678,1157.05,0.670786,447.381,1146.62,0.683582,399.946,1094.08,0.619678,263.255,1125.63,0.677702,226.486,1115.1,0.69035,252.897,1062.59,0.540383],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[84.5228,331.746,0.498642,95.039,326.391,0.479455,74.1039,321.225,0.492838,105.537,331.722,0.393592,58.403,321.265,0.37803,116.165,389.613,0.569882,0,0,0,110.982,452.616,0.544782,13.674,436.975,0.449777,74.0525,405.456,0.490117,13.5354,478.991,0.325861,89.9304,515.804,0.586133,0,0,0,74.049,620.823,0.544042,13.5746,615.659,0.564652,63.6735,720.736,0.536789,10.9667,705.091,0.527186,79.4393,363.338,0.483778,89.8648,284.365,0.475751,58.3116,741.777,0.399884,68.8434,741.844,0.42841,68.899,731.288,0.494048,13.5844,736.517,0.320205,13.6153,731.246,0.333464,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0026.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0026.json deleted file mode 100644 index 790dd39..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0026.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.211,521.036,0.70502,699.687,515.823,0.642428,689.097,500.003,0.674293,694.441,521.031,0.0805465,647.229,478.984,0.67511,652.408,610.415,0.684888,541.983,505.255,0.656588,636.627,741.834,0.666142,410.549,510.374,0.592616,620.84,873.17,0.69363,405.393,473.728,0.549605,494.764,789.104,0.675341,400.155,741.786,0.681532,473.635,988.873,0.649824,305.397,931.122,0.64973,410.536,1099.37,0.673173,237.071,1067.74,0.698614,620.957,531.54,0.678104,731.183,452.713,0.654607,431.63,1157.1,0.672939,447.336,1146.65,0.684036,394.938,1094.11,0.621621,237.19,1136.2,0.701597,215.976,1120.43,0.7094,237.056,1067.78,0.566202],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[84.5129,331.758,0.472177,95.0334,326.407,0.460917,74.1104,321.238,0.46277,105.523,331.734,0.388542,58.4573,321.269,0.34168,116.169,389.621,0.548523,0,0,0,110.984,452.613,0.532269,13.6627,436.982,0.420218,74.0426,405.471,0.481076,13.5405,478.972,0.301278,89.9316,515.805,0.561492,0,0,0,74.042,620.825,0.52389,13.5742,615.665,0.53942,63.6927,720.726,0.520044,10.971,705.1,0.510784,84.5049,363.334,0.465825,89.8625,284.387,0.455955,58.3279,741.76,0.39164,68.8457,741.824,0.417322,68.9164,731.273,0.479585,13.5983,736.517,0.307436,13.6349,731.245,0.320285,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0027.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0027.json deleted file mode 100644 index f944663..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0027.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.339,526.256,0.703095,699.864,521.008,0.671192,689.212,510.44,0.695964,699.717,526.246,0.093186,652.346,484.172,0.672183,652.505,615.633,0.671602,542.059,510.446,0.643375,641.817,752.29,0.656947,410.617,510.382,0.592017,620.879,873.334,0.690967,410.606,473.698,0.527201,494.756,799.601,0.65093,400.095,747.027,0.666056,473.633,989.005,0.652821,294.872,936.224,0.636673,410.536,1104.53,0.654649,226.667,1067.81,0.696596,626.148,536.784,0.666453,736.451,457.944,0.665028,431.638,1157.1,0.66023,447.359,1146.65,0.673838,394.947,1099.3,0.606469,226.561,1141.45,0.690646,195.11,1125.57,0.659961,226.645,1072.99,0.562833],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3881,336.911,0.473623,89.9825,326.491,0.459094,74.0702,321.303,0.463171,100.529,331.791,0.391431,58.4308,321.319,0.336075,116.153,389.632,0.554425,0,0,0,110.992,452.658,0.539119,13.6588,442.087,0.429415,74.0392,405.466,0.484057,13.5446,479.017,0.309717,89.9361,515.827,0.567241,0,0,0,74.0362,620.851,0.526925,13.5696,615.688,0.545336,63.665,720.757,0.52276,10.9708,705.103,0.515442,79.4229,368.474,0.463208,89.8314,284.459,0.455933,58.2904,741.767,0.388838,68.7958,741.844,0.415534,68.9004,731.315,0.482013,13.6041,736.508,0.305355,13.6388,731.231,0.319599,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0028.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0028.json deleted file mode 100644 index 8d67b0e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0028.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.51,526.373,0.695784,710.292,521.11,0.604561,694.421,515.609,0.696696,0,0,0,657.632,484.281,0.665284,652.574,615.684,0.660361,552.521,510.532,0.643129,641.845,752.275,0.64737,410.602,505.189,0.595347,620.951,878.433,0.688953,415.867,468.363,0.535222,499.907,799.661,0.646384,400.143,747.074,0.661142,473.643,994.166,0.65857,289.701,931.144,0.638802,405.458,1104.56,0.654546,216.129,1067.83,0.690419,631.351,542.007,0.662274,741.833,463.196,0.656294,431.622,1157.16,0.659393,447.33,1146.7,0.671395,394.947,1099.27,0.598294,221.267,1146.7,0.677455,189.726,1130.82,0.644855,210.797,1073.01,0.546467],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4037,336.935,0.474612,95.008,326.506,0.460312,74.0848,321.328,0.464527,105.511,331.788,0.38687,58.4467,321.335,0.344011,116.181,389.629,0.550857,0,0,0,111.009,452.678,0.53487,13.6703,442.101,0.425552,74.0657,410.538,0.479057,13.5451,479.002,0.306627,89.9483,515.841,0.563326,0,0,0,74.099,620.872,0.521715,13.5701,615.698,0.534522,63.7039,720.773,0.519826,10.9813,705.085,0.505894,79.4448,368.483,0.46218,89.8444,284.433,0.460704,58.337,741.814,0.395869,68.8749,741.875,0.422138,68.9004,731.315,0.479501,13.6057,736.493,0.298729,13.6433,731.224,0.310258,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0029.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0029.json deleted file mode 100644 index 6b43feb..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0029.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.662,531.505,0.692633,720.754,526.168,0.645063,694.547,515.681,0.710106,710.267,531.552,0.0747642,657.781,489.485,0.657383,657.705,620.898,0.653437,557.76,515.701,0.653851,641.814,757.519,0.647302,426.346,499.969,0.585127,626.203,878.529,0.688001,415.867,463.113,0.515358,499.972,799.639,0.651533,405.274,747.058,0.659863,473.593,994.179,0.64324,289.635,931.065,0.635491,410.527,1104.57,0.654037,205.574,1067.79,0.677283,636.598,547.306,0.661839,747.012,473.615,0.677843,431.619,1157.14,0.65555,447.325,1146.68,0.671559,399.959,1099.33,0.59855,205.597,1146.66,0.659346,174.038,1130.79,0.626972,200.224,1072.99,0.552802],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4387,331.812,0.475388,95.0207,326.442,0.461977,74.097,321.266,0.467541,100.532,331.749,0.380357,58.4447,321.277,0.354097,116.157,389.619,0.553414,0,0,0,111.002,452.655,0.537766,13.6656,442.074,0.428357,74.0473,405.478,0.481222,13.5512,479.023,0.310667,89.9387,515.828,0.566607,0,0,0,74.07,620.855,0.52347,13.5701,615.7,0.538492,63.6647,720.766,0.521594,10.9727,710.192,0.509258,79.432,363.353,0.469217,89.8466,284.388,0.46211,58.2808,741.792,0.391124,68.7988,741.872,0.41711,68.897,731.331,0.480856,13.6108,736.505,0.30037,13.6428,731.232,0.314002,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0030.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0030.json deleted file mode 100644 index 3d89105..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0030.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[699.795,542.012,0.665946,726.013,531.482,0.55999,699.72,520.887,0.690783,0,0,0,668.242,494.754,0.6417,657.765,626.162,0.646929,562.982,515.793,0.660622,641.817,757.627,0.651546,426.381,505.139,0.578033,626.202,878.586,0.686231,426.297,452.618,0.503767,500.025,804.861,0.645941,405.395,747.109,0.655732,468.482,999.354,0.645111,284.399,936.226,0.643249,405.426,1109.71,0.661146,195.023,1067.9,0.66746,636.708,557.695,0.659631,752.267,478.877,0.674149,431.624,1157.18,0.641948,447.305,1151.76,0.660285,394.928,1104.53,0.607575,200.257,1146.7,0.644697,163.506,1130.91,0.613816,184.584,1073.06,0.546539],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3953,331.798,0.468575,89.9758,326.435,0.457482,74.0395,321.258,0.461152,100.476,331.743,0.380397,58.3948,321.268,0.348956,116.114,389.629,0.545654,0,0,0,110.991,452.678,0.526706,13.6661,442.093,0.41323,74.0442,410.543,0.473914,13.5592,479.026,0.29988,89.9329,515.834,0.55372,0,0,0,74.0574,620.829,0.50892,13.5719,615.672,0.521603,63.6713,720.738,0.503341,10.978,705.096,0.495638,79.396,363.357,0.46237,89.7869,284.374,0.453052,58.2984,741.77,0.383093,68.8211,741.838,0.407037,68.8946,731.299,0.465042,13.6141,736.473,0.287541,13.642,731.204,0.300164,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0031.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0031.json deleted file mode 100644 index c5b49c1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0031.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[705.048,552.546,0.662327,731.233,536.782,0.53695,704.983,521.118,0.688381,0,0,0,678.715,505.179,0.657785,657.81,626.189,0.649673,563.126,520.848,0.669628,641.852,762.758,0.655935,431.655,494.762,0.594279,631.362,883.747,0.687369,426.415,447.36,0.508301,500.001,804.947,0.649051,405.353,752.296,0.658444,473.575,999.395,0.650569,284.461,931.044,0.637685,405.376,1104.61,0.663648,189.742,1067.73,0.668285,641.866,557.744,0.654853,752.384,484.137,0.681017,431.596,1157.17,0.644556,442.25,1146.7,0.664019,394.884,1104.49,0.603383,189.827,1146.61,0.632284,152.991,1125.58,0.6228,179.185,1067.82,0.54768],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3743,336.914,0.464256,89.9652,326.502,0.4515,74.0416,321.315,0.454882,100.481,331.788,0.377084,58.4177,321.319,0.340962,116.111,389.637,0.541564,0,0,0,110.974,452.653,0.525034,13.6597,442.09,0.411428,68.9788,405.473,0.47538,13.5555,479.02,0.293852,89.9318,515.845,0.552052,0,0,0,74.022,620.825,0.511005,13.5749,615.693,0.520956,63.6606,720.736,0.505461,10.9733,705.111,0.494288,79.3892,368.491,0.459556,89.7808,284.435,0.455861,58.2951,741.755,0.38181,68.8094,741.828,0.408683,68.903,731.309,0.466714,13.614,736.479,0.283109,13.6426,731.206,0.296614,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0032.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0032.json deleted file mode 100644 index 9d517a2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0032.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[710.214,562.922,0.66471,731.281,547.302,0.542095,705.066,526.256,0.673209,0,0,0,683.912,510.416,0.661379,662.904,636.587,0.653825,568.269,520.87,0.682374,641.85,767.996,0.664841,426.38,494.648,0.614521,636.551,883.857,0.681683,442.09,436.808,0.540582,505.19,804.931,0.649901,405.435,752.251,0.649825,473.57,999.431,0.646391,294.866,915.353,0.629521,405.411,1104.59,0.660611,179.255,1067.85,0.662051,641.942,562.964,0.660912,757.673,484.279,0.679984,436.736,1157.2,0.645198,447.351,1146.7,0.661496,394.906,1099.32,0.60827,184.529,1151.82,0.631955,147.714,1130.83,0.647861,158.284,1073.01,0.549905],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.4466,331.812,0.456331,95.0018,326.45,0.446367,74.0849,321.272,0.448498,100.474,331.798,0.363795,58.4199,321.305,0.347816,111.007,394.615,0.531357,0,0,0,110.917,452.644,0.518599,13.6554,442.087,0.400569,68.9721,405.454,0.470509,13.555,484.212,0.290334,89.9197,520.829,0.544154,0,0,0,74.0414,620.859,0.499742,13.5694,615.711,0.509186,63.6616,720.786,0.49369,10.9753,710.215,0.482621,79.3888,363.384,0.44875,89.8242,284.45,0.443695,58.2848,741.804,0.375539,68.8277,741.876,0.400713,68.8853,731.34,0.455848,13.6131,736.506,0.2776,13.6405,731.234,0.289951,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0033.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0033.json deleted file mode 100644 index 0ea36ac..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0033.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[710.321,563.024,0.662372,736.431,552.517,0.544639,710.253,526.341,0.657871,0,0,0,683.968,510.47,0.667386,662.93,636.659,0.651813,568.286,520.883,0.682578,641.877,768.028,0.663593,436.86,494.693,0.590463,636.586,888.936,0.675238,442.176,436.813,0.521512,500.043,810.115,0.644865,405.411,752.333,0.64638,473.664,1004.66,0.652676,279.252,925.773,0.632199,405.406,1104.6,0.660544,168.744,1067.85,0.658493,641.967,563.026,0.655326,762.854,489.399,0.667687,431.648,1157.2,0.641579,447.303,1146.71,0.655119,394.912,1099.33,0.606851,179.172,1151.79,0.614059,142.53,1125.7,0.641605,153.009,1073.03,0.558949],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3169,336.887,0.448047,89.9148,326.482,0.440383,68.9455,321.315,0.439519,100.412,331.801,0.379341,58.3927,321.306,0.317512,110.992,394.618,0.527794,0,0,0,110.92,452.625,0.518312,13.6515,442.084,0.395287,68.9412,405.441,0.470439,13.5548,484.232,0.284549,89.926,520.822,0.538403,0,0,0,74.045,620.862,0.495842,13.5684,615.716,0.507134,63.6572,720.78,0.487776,10.9709,710.221,0.480318,79.3647,368.491,0.438423,89.7651,284.45,0.434486,58.2923,741.796,0.371909,68.8199,741.872,0.395657,68.8787,731.334,0.451091,13.6079,736.522,0.274764,13.6323,731.241,0.287431,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0034.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0034.json deleted file mode 100644 index 5772e8e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0034.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[720.748,568.215,0.6766,736.576,557.849,0.545051,715.587,531.573,0.647883,0,0,0,689.113,515.678,0.696257,662.935,641.887,0.656375,568.342,520.96,0.690999,641.901,768.124,0.665374,431.566,494.75,0.642909,636.609,889.073,0.674491,452.663,421.103,0.613445,500.018,810.142,0.650947,405.388,752.347,0.650133,478.804,1009.9,0.651379,284.418,915.327,0.639952,405.42,1104.51,0.657843,158.233,1067.74,0.682828,647.067,568.207,0.66815,768.047,494.741,0.685846,431.618,1157.22,0.65149,447.296,1146.72,0.661339,394.96,1094.05,0.602956,168.735,1151.82,0.632429,142.401,1130.84,0.647277,147.722,1067.81,0.591076],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3136,336.89,0.46377,89.9182,326.479,0.452441,68.9427,321.31,0.455916,100.422,331.786,0.389774,58.3694,321.288,0.336176,111.004,394.617,0.540709,0,0,0,110.943,452.655,0.522765,13.6545,442.077,0.412252,74.0219,405.463,0.473745,13.5419,479.038,0.297706,89.926,515.848,0.552324,0,0,0,74.043,620.872,0.512697,13.5699,615.718,0.52552,63.6889,720.809,0.501879,10.9647,710.22,0.491945,79.3603,368.474,0.457228,89.7983,284.392,0.454995,58.3304,741.866,0.384362,68.8573,741.92,0.406172,68.8975,731.35,0.461024,13.5931,736.524,0.286557,13.6237,731.252,0.299541,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0035.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0035.json deleted file mode 100644 index e594300..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0035.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[725.948,568.308,0.69181,736.697,563.041,0.562745,720.789,536.83,0.647013,0,0,0,689.206,515.794,0.707638,662.992,647.076,0.728377,573.533,521.067,0.752417,641.982,773.33,0.712804,431.67,489.535,0.666113,636.735,894.265,0.704741,457.863,415.837,0.616395,505.161,810.208,0.743806,410.568,752.339,0.732375,478.836,1004.72,0.712807,284.397,915.372,0.733764,405.373,1104.58,0.714313,152.955,1067.73,0.774378,647.206,568.381,0.681536,768.132,499.977,0.675331,431.541,1157.19,0.680325,442.218,1146.72,0.690944,394.903,1099.29,0.64874,153.062,1146.69,0.707154,131.984,1125.66,0.686274,142.525,1067.79,0.661867],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3148,331.81,0.441338,89.9122,326.449,0.436259,68.9326,321.29,0.433089,100.412,331.766,0.381541,58.3807,321.249,0.310681,111,389.613,0.517269,0,0,0,110.933,452.622,0.507369,13.6307,442.05,0.392973,68.9642,405.448,0.460897,13.5462,484.206,0.279206,89.9299,520.827,0.530091,0,0,0,74.0549,620.917,0.494482,13.5574,620.838,0.509899,63.6659,720.834,0.486056,13.5477,710.249,0.475474,79.3842,363.362,0.439501,89.7957,284.363,0.442006,58.3165,741.855,0.382259,68.8474,741.916,0.401446,68.8498,731.356,0.44921,13.6092,736.57,0.277162,13.6318,731.287,0.28767,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0036.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0036.json deleted file mode 100644 index 73d9fe9..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0036.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[725.987,568.459,0.704078,741.76,568.211,0.576385,725.95,547.324,0.657246,720.761,568.245,0.0540708,689.291,520.888,0.725032,668.171,647.098,0.743447,578.773,521.106,0.763328,641.987,773.371,0.710551,436.874,489.433,0.695559,641.883,899.505,0.699514,473.564,405.402,0.635828,505.202,810.205,0.758295,410.654,752.358,0.747397,478.845,1004.75,0.728475,279.189,920.54,0.764653,405.356,1104.59,0.739021,147.705,1067.71,0.802327,647.234,573.549,0.687117,773.277,505.231,0.679337,431.556,1157.2,0.697838,442.232,1146.72,0.707016,394.872,1099.32,0.672044,147.728,1146.6,0.708757,121.375,1125.56,0.670541,137.241,1067.82,0.655855],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.371,331.751,0.452859,89.9658,326.389,0.445986,74.0247,321.225,0.445832,100.474,331.727,0.378638,58.3937,321.24,0.334205,116.125,389.605,0.522482,0,0,0,110.956,452.646,0.511455,13.6341,442.059,0.401704,74.0439,405.455,0.464502,13.5506,479.018,0.283113,89.9383,520.842,0.537237,0,0,0,74.0521,620.943,0.501999,13.5581,620.86,0.51776,63.6348,725.904,0.498287,13.5513,710.276,0.483264,79.4061,363.334,0.448969,89.8149,279.28,0.45129,58.3085,741.873,0.38621,68.8034,741.943,0.406172,68.816,731.391,0.455645,13.6151,736.569,0.281529,13.6326,731.303,0.291961,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0037.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0037.json deleted file mode 100644 index 5b408cf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0037.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[726.064,573.597,0.701485,741.898,568.368,0.600604,726.032,557.722,0.665643,741.808,573.51,0.0576996,689.357,521.014,0.733012,668.186,647.227,0.721971,584.149,526.226,0.743519,642,773.43,0.695444,447.356,489.413,0.682899,0,0,0,479.031,405.343,0.592767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652.482,578.775,0.685139,773.342,510.483,0.689221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,641.97,899.586,0.700177,605.119,731.295,0.0584932,505.215,810.18,0.741609,415.833,752.33,0.732213,478.852,1004.71,0.721908,279.172,915.377,0.755515,405.408,1104.62,0.727331,142.429,1067.82,0.77866,0,0,0,0,0,0,431.623,1157.26,0.693086,447.346,1151.82,0.701587,394.912,1099.32,0.667943,142.413,1146.69,0.682544,110.884,1130.83,0.654322,126.679,1073.01,0.613287],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3273,331.803,0.468977,89.9282,326.439,0.460062,68.9551,321.286,0.46289,100.464,331.766,0.396013,58.3662,321.297,0.338996,116.126,389.628,0.537014,0,0,0,110.928,452.65,0.525977,13.6523,442.091,0.409436,74.0226,405.445,0.475905,13.5631,479.018,0.291336,89.9262,520.839,0.554135,0,0,0,74.0775,620.91,0.519197,10.9879,620.825,0.530502,63.6379,725.909,0.515314,13.5513,710.243,0.49596,79.402,363.392,0.459231,89.7822,284.351,0.460216,58.2948,741.893,0.39432,68.7948,746.993,0.416032,68.8425,731.403,0.471288,13.6208,736.523,0.287339,13.6418,731.252,0.299432,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0038.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0038.json deleted file mode 100644 index 7ed1d6b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0038.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[731.295,578.781,0.69225,747.076,573.479,0.590241,731.266,562.973,0.670842,0,0,0,694.472,521.125,0.711007,668.19,647.277,0.696365,589.343,526.287,0.709496,647.055,778.555,0.678321,452.641,484.32,0.661136,647.035,904.864,0.684416,494.703,405.298,0.588335,505.221,810.209,0.712631,415.905,752.334,0.700525,478.88,1009.86,0.702273,279.165,915.297,0.725987,405.38,1104.54,0.708419,142.334,1067.66,0.754225,657.697,578.845,0.672554,773.478,515.662,0.681033,431.628,1157.21,0.683183,447.341,1146.72,0.688733,394.889,1094.07,0.646942,137.258,1146.59,0.655001,105.612,1120.43,0.641125,121.393,1067.8,0.608523],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3805,331.797,0.447293,89.971,326.424,0.442907,74.0204,321.267,0.440602,100.482,331.759,0.379387,58.4005,321.291,0.326223,116.149,389.619,0.513776,0,0,0,110.934,452.64,0.508237,13.6447,442.083,0.388539,68.9893,405.446,0.461965,13.564,479.006,0.272913,89.9446,520.822,0.530983,0,0,0,74.0838,620.917,0.495454,13.5617,620.823,0.504405,63.6372,725.905,0.493675,13.5573,710.261,0.474068,79.4328,363.364,0.437684,89.7971,284.365,0.441997,58.297,741.885,0.385271,68.8177,741.946,0.404457,68.8187,731.388,0.455027,13.6164,736.552,0.275737,13.6342,731.279,0.286269,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0039.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0039.json deleted file mode 100644 index 4b3c072..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0039.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[736.496,578.874,0.684008,752.336,573.548,0.588781,736.436,563.055,0.665153,0,0,0,694.574,526.263,0.679675,673.445,652.434,0.649814,594.541,531.479,0.644475,647.074,778.647,0.63922,452.649,489.474,0.634548,647.087,910.038,0.658786,510.386,400.231,0.560992,505.177,815.338,0.646766,415.857,752.325,0.640244,478.809,1009.92,0.630428,279.166,910.078,0.653379,405.338,1104.55,0.662619,131.949,1062.47,0.674038,662.92,584.03,0.669912,778.574,515.759,0.687753,431.601,1157.27,0.651816,447.306,1151.78,0.659034,394.874,1094.06,0.598331,131.953,1146.53,0.600563,100.319,1120.42,0.586434,110.918,1062.58,0.544502],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3883,336.914,0.450924,89.9828,326.496,0.444969,74.0382,321.333,0.442817,100.462,331.808,0.378503,58.4136,321.334,0.331762,116.153,389.632,0.523664,0,0,0,110.938,452.662,0.516547,13.6501,442.086,0.393954,68.9743,405.432,0.469274,13.5671,479.035,0.281988,89.9062,515.841,0.539162,0,0,0,74.0466,620.879,0.500932,13.5766,615.704,0.509399,63.6265,725.888,0.496964,13.5524,710.243,0.475606,79.4263,368.503,0.444634,89.8257,284.416,0.445793,58.2812,741.884,0.383253,63.7292,746.996,0.405984,68.8296,731.392,0.460128,13.6166,736.508,0.276026,13.6378,731.241,0.288862,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0040.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0040.json deleted file mode 100644 index c1c4259..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0040.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[736.688,584.179,0.691645,757.581,578.749,0.557945,736.614,568.277,0.683691,0,0,0,694.617,531.504,0.666744,673.471,652.534,0.657693,599.76,531.527,0.657082,647.133,778.691,0.639782,457.949,484.149,0.656603,647.112,909.999,0.656482,521.007,400.02,0.640283,505.151,815.324,0.658453,415.884,752.291,0.65204,478.853,1009.91,0.644745,279.233,904.918,0.658496,405.289,1104.56,0.669882,121.484,1062.43,0.673558,662.951,589.289,0.653069,778.68,520.932,0.682375,431.598,1162.37,0.64723,442.268,1151.83,0.655863,394.807,1094.06,0.603935,126.71,1146.6,0.621692,95.101,1125.55,0.607729,105.584,1062.49,0.55749],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.317,336.925,0.440443,89.9307,326.495,0.433572,68.9662,321.344,0.431312,100.47,331.789,0.379252,58.3998,321.34,0.304834,116.173,389.635,0.507423,0,0,0,110.956,452.694,0.500772,13.6525,442.1,0.380419,68.9763,405.436,0.461573,13.5644,484.222,0.275292,89.9372,520.823,0.524172,0,0,0,74.0722,620.912,0.482111,13.5755,620.824,0.487802,63.6484,725.887,0.477458,13.5593,710.248,0.455533,79.4502,368.494,0.434501,89.7732,284.388,0.439616,58.2731,741.843,0.372756,68.7943,741.931,0.393239,68.8443,731.396,0.443591,13.6187,736.539,0.264238,13.6391,731.248,0.27634,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0041.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0041.json deleted file mode 100644 index 6e4a3bf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0041.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[741.772,589.371,0.689244,757.658,584.035,0.582476,741.738,568.337,0.684047,0,0,0,699.771,531.563,0.649764,678.647,652.546,0.654,605.009,536.752,0.649196,647.167,778.715,0.64462,468.451,484.072,0.658066,647.157,910.048,0.662805,531.502,399.979,0.570798,505.17,815.374,0.653035,421.093,752.286,0.646055,478.876,1009.89,0.637342,279.182,904.849,0.65776,405.268,1104.56,0.667253,116.199,1057.31,0.673069,668.223,589.395,0.651543,783.924,521.073,0.656452,431.61,1162.36,0.650886,442.264,1151.82,0.6572,394.778,1094.09,0.600967,121.398,1141.43,0.615901,89.85,1120.37,0.605535,100.397,1057.31,0.564173],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3068,336.962,0.436742,89.916,326.538,0.430005,68.941,326.393,0.426373,100.451,331.817,0.378054,58.4002,321.367,0.297331,116.151,389.635,0.506889,0,0,0,110.969,452.674,0.501688,13.6523,442.105,0.379653,68.9706,405.479,0.460001,13.5735,484.217,0.271984,89.9437,520.816,0.522474,0,0,0,74.0626,620.903,0.481827,13.5766,620.812,0.484157,63.6334,725.878,0.473497,13.5535,710.242,0.454368,79.43,368.526,0.432606,89.7488,284.42,0.437252,58.2675,741.81,0.368563,63.7234,741.907,0.390905,68.8358,731.393,0.440018,13.617,736.516,0.261258,13.6342,731.226,0.274253,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0042.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0042.json deleted file mode 100644 index 94eab9a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0042.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[741.94,594.642,0.686599,762.856,589.29,0.520199,741.925,573.488,0.683229,0,0,0,699.892,536.819,0.640655,673.515,657.765,0.639299,605.071,542.013,0.639629,647.185,783.886,0.636098,473.703,479.01,0.664243,647.226,915.302,0.652952,557.753,399.947,0.625089,505.167,815.397,0.648111,421.084,752.331,0.64113,478.929,1004.73,0.639297,279.154,904.838,0.656717,405.337,1104.57,0.666594,110.926,1057.27,0.673794,673.416,594.588,0.652617,789.175,526.289,0.62392,431.643,1157.27,0.654486,447.341,1151.77,0.660756,394.836,1099.26,0.608198,116.112,1136.12,0.598424,84.6884,1115.14,0.592645,95.1937,1057.28,0.559325],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2786,336.979,0.443968,89.8941,326.555,0.432255,68.9231,326.412,0.433046,100.443,331.816,0.381039,58.3925,321.353,0.299173,116.133,389.616,0.518696,0,0,0,110.98,452.653,0.509666,13.654,442.097,0.385454,68.9678,405.476,0.465746,13.5624,484.208,0.278071,89.9379,515.84,0.531275,0,0,0,74.0618,620.901,0.4885,13.5806,620.814,0.492279,63.6541,720.843,0.483018,13.5548,710.211,0.460059,79.4154,368.515,0.439672,84.7254,284.425,0.443424,58.2501,741.836,0.377634,63.7243,741.932,0.399568,68.859,731.384,0.448352,13.6196,736.499,0.265943,13.6385,731.22,0.278329,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0043.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0043.json deleted file mode 100644 index 1cd0a54..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0043.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[747.164,599.778,0.686112,767.97,589.33,0.500723,747.115,573.62,0.684379,0,0,0,705.027,547.257,0.637502,673.515,657.781,0.633189,605.157,542.01,0.637903,647.207,783.95,0.632943,478.837,484.115,0.673849,647.229,915.264,0.660206,568.357,399.956,0.707556,505.272,815.388,0.651824,421.132,752.277,0.638679,478.894,1004.74,0.641136,279.235,904.782,0.652839,405.308,1104.6,0.671481,105.768,1057.18,0.671404,673.436,594.628,0.644855,789.148,526.336,0.627035,431.657,1157.27,0.651818,447.339,1151.78,0.660646,394.809,1099.31,0.607638,110.92,1130.92,0.61533,84.6128,1115.07,0.600999,95.1149,1057.2,0.557146],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2671,336.982,0.461307,89.8946,326.559,0.448898,68.9072,326.415,0.450506,100.462,331.814,0.401373,58.3613,321.335,0.305583,116.15,394.615,0.537268,0,0,0,110.987,452.672,0.523485,13.6743,442.097,0.398656,68.9711,405.489,0.474413,13.5622,479.036,0.286723,89.9178,515.842,0.547564,0,0,0,74.0246,620.902,0.50285,13.5901,615.717,0.507424,63.6234,725.882,0.494637,13.5571,710.215,0.467711,79.4269,368.54,0.451012,89.7774,284.413,0.458365,58.2439,741.836,0.381091,63.7044,741.93,0.404673,68.8334,731.379,0.458365,13.6248,736.472,0.271265,13.6412,731.201,0.28406,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0044.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0044.json deleted file mode 100644 index 007d908..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0044.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[752.34,599.859,0.687397,768.086,589.406,0.495009,752.276,573.682,0.683847,0,0,0,710.225,547.318,0.635939,678.675,662.988,0.646812,610.334,542.011,0.656773,647.228,783.964,0.649974,478.991,479.042,0.67795,647.27,915.358,0.655628,573.665,399.965,0.719174,505.209,815.371,0.674053,421.117,752.282,0.663543,478.928,1009.89,0.669019,279.179,904.798,0.685119,405.305,1104.61,0.686245,105.724,1052.07,0.699768,678.665,599.765,0.629259,794.458,531.479,0.604823,436.745,1157.28,0.652469,447.366,1151.78,0.658514,394.79,1099.34,0.61405,110.912,1130.91,0.638022,84.6076,1115.06,0.622951,95.0393,1052.05,0.579796],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2984,336.904,0.452658,89.9259,326.482,0.446611,68.9296,321.327,0.442039,100.454,331.796,0.395008,58.3719,321.304,0.308236,116.151,389.639,0.522825,0,0,0,111.005,452.659,0.51244,13.6674,442.111,0.382031,68.9814,405.49,0.465571,13.5722,484.216,0.276346,89.936,520.822,0.532894,0,0,0,74.062,620.933,0.490974,13.5748,620.841,0.498933,63.6347,725.888,0.483828,13.5588,710.229,0.458994,79.434,368.477,0.446327,89.7976,284.385,0.451054,58.2483,741.817,0.376065,63.7145,741.92,0.397482,68.848,731.372,0.446887,13.6296,736.512,0.267497,13.6434,731.22,0.279466,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0045.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0045.json deleted file mode 100644 index f5aef6f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0045.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[752.345,605.002,0.696776,768.113,594.599,0.514847,752.306,578.775,0.689776,0,0,0,710.275,552.511,0.645762,678.67,668.168,0.666638,610.407,542.034,0.696389,647.286,789.095,0.672114,484.307,478.943,0.709142,652.362,920.556,0.681409,594.529,400.021,0.703984,505.193,815.366,0.727925,426.308,747.136,0.713903,478.896,1004.7,0.718701,279.23,904.737,0.758689,405.331,1109.72,0.718122,105.716,1052.05,0.759224,673.506,599.861,0.648665,804.843,531.557,0.605216,431.675,1157.27,0.672523,447.377,1151.81,0.683993,394.819,1099.36,0.652096,110.966,1130.87,0.67114,84.6305,1115.04,0.660905,89.9364,1052.04,0.632921],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1774,337.012,0.4428,89.842,331.612,0.432113,68.8745,326.425,0.431662,100.427,331.823,0.388343,58.3418,326.371,0.289222,116.127,389.638,0.513776,0,0,0,110.959,452.667,0.506437,13.6661,442.098,0.380506,68.954,405.482,0.463124,13.5713,484.214,0.275067,89.9232,515.848,0.526488,0,0,0,74.0353,620.93,0.487936,13.562,620.857,0.495713,63.6297,725.906,0.483529,13.5614,710.281,0.457474,79.4123,368.544,0.432649,84.6945,284.436,0.441256,58.2622,741.811,0.373246,63.7281,741.909,0.39239,68.836,731.383,0.445708,13.6255,736.547,0.266116,13.6423,731.255,0.278671,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0046.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0046.json deleted file mode 100644 index df7a029..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0046.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[757.568,605.072,0.70391,773.213,594.677,0.49815,757.522,578.853,0.698207,0,0,0,715.504,557.744,0.670109,678.72,662.999,0.689434,615.677,547.24,0.732592,652.388,789.184,0.680435,499.919,478.956,0.736645,652.445,920.591,0.691402,599.906,400.1,0.722982,505.208,815.306,0.76554,426.384,747.1,0.755701,473.74,1004.69,0.748965,284.392,904.708,0.802033,405.292,1104.6,0.740869,105.748,1052.03,0.795567,678.773,599.855,0.661495,810.11,536.779,0.625132,431.623,1157.27,0.689563,447.341,1151.8,0.702012,394.779,1099.33,0.678465,116.181,1130.94,0.690225,89.8285,1115.12,0.68948,89.9226,1051.99,0.675163],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2638,336.994,0.451555,89.869,331.616,0.439403,68.8988,326.432,0.4412,100.42,336.889,0.389707,58.3542,326.385,0.310664,116.105,389.626,0.524164,0,0,0,110.943,452.659,0.514645,13.6785,442.087,0.393919,68.9605,405.474,0.470995,13.575,479.019,0.285776,89.9043,515.83,0.540349,0,0,0,68.9513,620.896,0.506674,13.5653,620.832,0.513371,63.6316,725.932,0.508498,13.5581,710.272,0.482676,79.3981,368.537,0.440393,84.6975,284.476,0.445977,58.2633,741.844,0.386433,63.7249,741.938,0.409773,0,0,0,13.622,736.537,0.278563,13.6386,731.257,0.291976,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0047.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0047.json deleted file mode 100644 index a8db050..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0047.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[757.596,605.222,0.69202,773.285,604.946,0.471055,757.603,584.051,0.678318,0,0,0,720.822,557.807,0.636155,683.906,662.986,0.65872,620.859,542.067,0.700633,652.408,794.348,0.666506,510.448,479.019,0.736044,652.427,915.332,0.682976,610.278,405.261,0.722916,505.182,810.202,0.741239,426.378,747.085,0.739533,473.725,1004.68,0.728285,284.466,904.725,0.78457,405.282,1104.57,0.722745,110.883,1057.17,0.787871,683.923,599.86,0.637275,815.345,542.049,0.611645,431.591,1157.27,0.677119,447.31,1151.79,0.687422,394.772,1099.28,0.655226,121.434,1136.13,0.709764,89.8545,1115.18,0.693993,95.0721,1052.04,0.664337],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2789,336.981,0.448104,89.8898,326.558,0.440781,68.8933,326.412,0.437689,100.408,331.827,0.390808,58.3619,321.357,0.310967,111.015,389.633,0.521732,0,0,0,110.938,452.639,0.512372,13.6757,442.082,0.381462,68.9566,405.467,0.467834,13.57,484.197,0.280201,89.9136,515.817,0.539286,0,0,0,74.046,620.898,0.505688,10.9852,620.845,0.516608,63.6683,725.896,0.504888,10.9842,710.284,0.485213,79.3796,368.539,0.43611,84.7062,284.465,0.438457,58.2692,741.802,0.379981,68.7792,741.892,0.403163,68.8928,731.382,0.468728,13.6177,736.543,0.279586,13.6365,731.26,0.293529,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0048.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0048.json deleted file mode 100644 index 6316bbd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0048.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[762.793,610.481,0.67725,773.394,605.179,0.446906,762.821,589.362,0.667156,0,0,0,726.029,557.855,0.632035,683.937,668.221,0.624951,620.898,542.057,0.653939,652.408,794.385,0.642813,515.688,484.11,0.708769,652.444,915.322,0.667031,615.725,405.419,0.683671,505.281,815.306,0.695635,431.53,747.05,0.691156,473.623,1004.7,0.690985,294.896,904.734,0.719141,405.258,1104.56,0.702478,110.978,1057.16,0.720136,683.898,599.914,0.614266,815.512,552.518,0.608968,431.618,1157.26,0.667547,442.258,1151.78,0.679407,394.768,1099.27,0.63669,131.87,1141.4,0.673541,95.084,1120.39,0.657607,95.1327,1051.96,0.600493],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1987,336.987,0.449585,89.8799,326.543,0.440993,68.8861,326.392,0.43873,100.413,331.818,0.391188,58.3587,321.328,0.301905,111.011,394.615,0.525836,0,0,0,110.952,452.637,0.51624,13.67,442.089,0.391583,68.9422,405.483,0.468304,13.5729,479.015,0.282108,89.9083,515.811,0.54017,0,0,0,74.0285,620.848,0.503333,13.5721,615.7,0.517123,63.6558,720.822,0.498327,10.9769,710.249,0.480876,79.3877,368.531,0.438356,84.7025,284.435,0.441996,58.2641,741.804,0.380676,63.7146,741.904,0.404305,68.8875,731.367,0.461355,13.6041,736.518,0.282212,13.6282,731.233,0.296644,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0049.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0049.json deleted file mode 100644 index 02ac37d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0049.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.001,615.575,0.681748,778.475,605.224,0.406755,768.036,589.38,0.665657,0,0,0,731.271,562.954,0.642498,689.119,668.183,0.621635,631.34,547.249,0.645165,652.5,794.329,0.64019,520.908,484.14,0.708529,652.497,915.343,0.657613,636.645,415.817,0.672819,505.292,810.212,0.676755,431.539,747.034,0.670834,473.586,999.457,0.674324,300.182,904.782,0.694242,405.299,1104.58,0.6853,121.438,1057.21,0.701596,684.019,605.003,0.627308,820.624,552.485,0.605402,431.658,1157.24,0.652589,447.324,1151.76,0.667542,394.806,1099.32,0.626394,137.162,1146.55,0.64779,100.335,1120.43,0.635586,100.385,1052.06,0.591817],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1749,337.064,0.440885,89.8516,331.648,0.43346,68.8547,326.469,0.428622,100.402,336.894,0.390381,58.3464,321.369,0.292589,111.023,389.635,0.517208,0,0,0,110.963,452.641,0.509635,13.6511,442.085,0.383374,68.9699,405.474,0.460813,13.5663,484.189,0.274162,89.9401,515.812,0.531056,0,0,0,74.0544,620.87,0.495277,10.9871,615.724,0.509016,63.6544,720.843,0.4875,10.9792,710.249,0.474811,79.3857,368.568,0.429419,84.6839,284.464,0.432941,58.2624,741.806,0.376715,63.7078,741.918,0.398938,68.8738,731.381,0.453434,13.6086,736.544,0.273889,13.63,731.254,0.288563,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0050.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0050.json deleted file mode 100644 index 5c87dd8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0050.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[762.901,610.485,0.690634,778.502,605.219,0.485827,762.916,589.309,0.671361,0,0,0,731.303,562.948,0.646477,689.196,673.422,0.621638,631.37,547.305,0.640414,652.543,794.387,0.646643,521.094,484.106,0.703471,652.569,915.321,0.651093,641.965,415.904,0.675765,505.298,810.209,0.675919,426.415,747.043,0.667916,473.621,999.391,0.665369,310.578,904.812,0.699238,405.348,1104.61,0.681551,131.869,1062.5,0.708627,689.119,605.031,0.632828,820.675,552.501,0.614008,436.744,1157.26,0.652115,447.354,1151.81,0.666591,394.847,1099.37,0.624162,142.492,1146.69,0.6422,105.689,1125.67,0.610643,100.49,1062.51,0.595677],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2765,336.977,0.455583,89.8971,326.541,0.447434,68.8689,326.401,0.446135,100.389,331.815,0.39062,58.3494,321.316,0.321322,111.003,389.635,0.534023,0,0,0,110.928,452.668,0.520479,13.6596,442.095,0.396034,68.964,410.531,0.468293,13.559,484.205,0.282434,89.8948,515.825,0.543903,0,0,0,74.023,620.87,0.504231,13.5755,615.722,0.517974,63.622,725.885,0.500088,13.5505,710.241,0.483133,79.3527,368.51,0.435706,84.7052,284.453,0.429564,58.2921,741.84,0.379899,68.7978,741.913,0.403425,68.8384,731.374,0.460999,13.6055,736.521,0.281736,13.6312,731.25,0.295594,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0051.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0051.json deleted file mode 100644 index ff92e52..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0051.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.121,615.653,0.718403,778.651,610.24,0.450806,768.131,594.561,0.697043,0,0,0,736.455,563.017,0.68436,689.163,668.263,0.734157,636.598,552.493,0.742095,652.509,794.38,0.702373,526.279,479.003,0.753424,657.703,915.296,0.678979,647.267,431.546,0.705724,505.236,810.166,0.780602,431.573,741.903,0.771689,473.598,999.362,0.735453,310.756,904.838,0.813057,405.328,1104.57,0.736085,142.394,1067.69,0.811141,689.112,605.005,0.67182,820.749,552.543,0.627922,431.647,1157.23,0.686226,447.328,1151.79,0.697799,394.826,1099.32,0.678794,147.817,1151.95,0.717684,121.414,1136.15,0.675982,110.958,1067.76,0.667498],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2898,336.949,0.456132,89.9055,326.515,0.448832,68.889,326.376,0.446902,100.415,331.804,0.389736,58.3586,321.322,0.323026,111.012,394.614,0.533737,0,0,0,110.925,452.647,0.522242,13.6433,442.095,0.399746,68.9375,405.447,0.473946,13.5442,484.204,0.290606,89.9048,515.828,0.544088,0,0,0,68.9454,620.882,0.508286,10.9858,620.83,0.522528,63.6213,725.927,0.497296,10.9769,710.287,0.484557,79.3818,368.511,0.436081,84.6982,284.43,0.432065,58.2523,741.854,0.377844,63.6883,746.997,0.40293,68.8623,731.423,0.456011,13.6089,736.561,0.283055,13.6336,731.293,0.298351,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0052.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0052.json deleted file mode 100644 index 9e5203e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0052.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.118,615.709,0.695982,778.675,610.318,0.461652,768.117,594.62,0.684703,0,0,0,736.455,563.109,0.675851,689.176,668.25,0.704138,636.654,552.573,0.706352,652.522,794.424,0.6848,531.495,484.132,0.712422,657.747,915.355,0.665498,657.657,436.828,0.700696,505.203,810.163,0.749135,426.367,747.078,0.735399,473.7,994.198,0.718084,310.744,910.08,0.786152,405.364,1104.61,0.714294,147.666,1067.87,0.817475,689.154,605.04,0.644513,820.765,552.598,0.621086,431.636,1157.19,0.670035,447.321,1151.77,0.680498,394.845,1104.53,0.662874,163.454,1157.21,0.696654,137.186,1146.61,0.702909,131.884,1072.99,0.690788],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3548,336.9,0.466895,89.9538,326.478,0.455524,68.9683,321.33,0.458591,100.436,331.782,0.381142,58.3842,321.298,0.345576,110.999,389.626,0.548358,0,0,0,110.928,452.61,0.530694,13.6519,442.087,0.415089,68.9626,405.439,0.47754,13.5365,479.015,0.296726,89.9047,515.8,0.556333,0,0,0,68.9546,620.866,0.517168,10.9863,620.815,0.532815,63.655,725.908,0.507663,10.9662,710.256,0.496814,79.3706,368.469,0.448856,84.7289,284.438,0.441438,58.2981,741.852,0.383726,68.7981,741.929,0.407816,68.8966,731.402,0.462588,13.5856,736.54,0.294639,13.6165,731.279,0.310504,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0053.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0053.json deleted file mode 100644 index 08f05b6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0053.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.128,615.691,0.710959,778.718,610.306,0.446374,768.158,594.651,0.702825,0,0,0,736.516,563.038,0.722339,689.17,662.994,0.739642,636.695,552.496,0.769064,652.541,789.166,0.688186,531.546,484.172,0.732912,662.924,920.518,0.669983,657.74,442.008,0.703473,505.216,810.13,0.813214,431.563,747.042,0.799894,473.68,994.159,0.766288,316.014,915.339,0.833094,405.359,1104.55,0.745762,153.006,1073.14,0.797577,689.163,599.9,0.655999,825.875,557.773,0.63074,431.64,1157.14,0.698043,447.337,1146.69,0.708926,394.823,1099.35,0.697502,184.472,1167.67,0.720169,147.618,1151.95,0.746927,142.375,1078.33,0.69782],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.307,336.985,0.469138,89.9122,326.566,0.454804,68.9154,326.427,0.459937,100.428,331.825,0.38898,58.3624,321.346,0.335613,111.013,394.62,0.551444,0,0,0,110.941,452.606,0.537544,13.6717,442.095,0.418379,68.9515,405.465,0.480864,13.5538,478.994,0.298562,89.9225,515.815,0.562173,0,0,0,68.9525,620.867,0.524388,13.5753,615.719,0.537431,63.6579,725.914,0.515104,10.9668,710.264,0.504762,79.365,368.54,0.445945,84.6739,284.496,0.441883,58.3304,741.85,0.389881,68.8304,741.921,0.411712,68.891,731.409,0.470407,13.5856,736.556,0.305062,13.6171,731.293,0.320261,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0054.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0054.json deleted file mode 100644 index 4010851..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0054.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.136,620.848,0.723744,778.698,610.378,0.451774,773.233,599.783,0.709621,0,0,0,736.595,563.017,0.689775,689.23,668.179,0.725934,636.675,542.058,0.72025,657.725,789.185,0.700984,536.779,484.254,0.710583,668.199,925.805,0.674652,662.96,442.165,0.69702,510.434,810.131,0.782825,431.613,747.017,0.771625,473.684,994.186,0.75389,326.475,920.592,0.80593,405.391,1104.6,0.741934,173.954,1088.79,0.734151,689.152,599.842,0.645077,825.929,557.75,0.608494,436.753,1157.19,0.69359,447.334,1151.78,0.706987,394.841,1104.52,0.682113,195.039,1178.18,0.726314,153.005,1162.38,0.725873,147.668,1094.04,0.673672],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3141,337.055,0.467326,89.911,331.678,0.454736,68.9274,326.496,0.457543,100.436,336.932,0.392439,58.3717,326.4,0.328724,116.116,394.622,0.547736,0,0,0,110.951,452.625,0.528778,13.6501,442.105,0.423862,68.9746,405.485,0.472556,13.537,479.006,0.299722,89.9343,515.826,0.557386,0,0,0,74.0387,620.878,0.519164,13.5737,620.818,0.537971,63.6621,725.9,0.507645,10.9723,710.25,0.502705,79.3803,368.613,0.441288,84.702,289.618,0.439362,58.3179,741.863,0.386118,68.8364,741.935,0.408601,68.9046,731.404,0.465732,13.5826,736.544,0.303139,13.6142,731.277,0.318532,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0055.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0055.json deleted file mode 100644 index d91a363..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0055.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.252,620.865,0.692201,783.903,610.403,0.427116,773.299,599.779,0.681697,0,0,0,736.674,563.004,0.648718,694.367,662.939,0.654103,636.701,542.008,0.649997,662.951,789.163,0.647832,536.792,489.383,0.681914,673.459,920.597,0.64007,668.252,442.277,0.676115,510.403,810.108,0.696166,431.554,747.046,0.684241,473.682,994.147,0.681602,331.811,931.108,0.718821,405.45,1104.55,0.673878,189.693,1099.29,0.668792,689.227,599.799,0.606425,831.145,557.752,0.595142,436.802,1157.15,0.660859,447.376,1146.71,0.673929,394.862,1099.35,0.621607,210.856,1183.34,0.663314,179.238,1162.44,0.639653,158.231,1104.53,0.612343],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2682,337.018,0.451582,89.8841,331.628,0.443563,68.8734,326.456,0.441588,100.42,336.9,0.393381,58.3551,321.367,0.307474,116.111,389.629,0.52544,0,0,0,110.921,452.638,0.51331,13.6484,442.085,0.3933,68.9726,405.446,0.463665,13.5645,479.005,0.2733,89.9182,515.845,0.533919,0,0,0,68.9536,620.905,0.493268,13.5727,620.825,0.502272,63.6391,725.913,0.482446,13.5558,710.228,0.469587,79.3754,368.565,0.421914,84.7009,284.497,0.422533,58.2467,741.842,0.366724,63.7075,746.989,0.389599,68.8759,731.421,0.445946,13.6017,736.52,0.276772,13.6326,731.248,0.290975,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0056.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0056.json deleted file mode 100644 index 9813154..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0056.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.294,620.926,0.699724,783.98,610.396,0.423459,773.315,599.863,0.688394,0,0,0,741.77,563.083,0.65756,694.449,657.754,0.683843,641.941,547.239,0.679199,663.007,783.834,0.670287,536.817,489.39,0.701852,678.7,920.587,0.65156,673.496,447.523,0.684099,510.468,810.112,0.754228,431.603,747.03,0.743625,473.684,994.132,0.741165,342.293,941.517,0.783154,405.413,1104.52,0.717563,205.484,1109.75,0.728668,689.325,599.871,0.602595,831.174,562.941,0.601694,436.81,1157.16,0.687203,447.352,1146.72,0.698693,394.848,1099.32,0.66703,231.766,1188.76,0.7075,200.252,1178.19,0.685772,179.278,1109.83,0.640611],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3151,337.048,0.462869,89.9231,331.667,0.453067,68.9017,326.489,0.452698,100.426,336.937,0.39005,58.3469,326.394,0.331108,116.111,389.63,0.542905,0,0,0,110.926,452.643,0.526058,13.6501,442.094,0.410195,68.9655,405.402,0.477456,13.563,479.031,0.286173,89.8952,515.837,0.55012,0,0,0,68.9279,620.878,0.507906,13.5816,620.822,0.516072,63.6416,725.896,0.496931,10.9824,710.233,0.483966,79.3587,368.592,0.434856,84.722,284.5,0.439232,58.2652,741.859,0.373631,63.7263,746.993,0.397709,68.8815,731.4,0.457128,13.5881,736.536,0.29055,13.6252,731.272,0.304932,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0057.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0057.json deleted file mode 100644 index 21f8aef..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0057.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.265,620.949,0.730218,789.057,610.412,0.42559,773.315,599.831,0.718299,0,0,0,741.742,563.019,0.699286,694.436,657.751,0.73815,641.898,542.04,0.719184,668.219,783.885,0.692529,547.257,489.492,0.720258,683.94,915.353,0.682002,673.5,457.834,0.681003,510.516,810.164,0.790676,436.78,747.122,0.789078,473.614,994.177,0.77702,352.663,941.703,0.827019,405.334,1104.51,0.737741,221.388,1120.27,0.80922,689.259,599.803,0.630978,831.275,562.959,0.612888,436.808,1157.14,0.69855,447.329,1146.71,0.706019,394.782,1099.32,0.678585,252.914,1199.19,0.729609,221.259,1188.76,0.742896,200.33,1120.4,0.689885],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2738,337.014,0.445066,89.8885,331.628,0.436809,68.8677,326.447,0.433403,100.417,336.91,0.384577,58.3524,326.372,0.303347,116.107,389.629,0.521616,0,0,0,110.918,452.656,0.512912,13.6364,442.114,0.393814,68.9635,405.421,0.46551,13.5668,479.04,0.274998,89.9147,520.843,0.533626,0,0,0,74.0214,620.928,0.491223,13.5787,620.864,0.496537,63.6611,725.935,0.482758,13.5615,710.269,0.466643,79.371,368.554,0.422488,84.6806,284.472,0.428554,58.2861,741.87,0.366457,68.8005,746.997,0.390794,68.8899,736.429,0.445612,13.5996,736.573,0.274891,13.6344,731.316,0.28899,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0058.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0058.json deleted file mode 100644 index b36b789..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0058.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.38,626.093,0.720318,794.396,610.462,0.437195,773.422,599.879,0.704137,0,0,0,741.85,563.034,0.671682,694.474,657.723,0.711674,647.134,542.026,0.691719,673.415,783.849,0.68511,547.259,494.704,0.708795,689.083,910.063,0.694436,673.524,463.147,0.675352,510.492,810.113,0.770693,431.665,747.073,0.765175,473.604,994.162,0.769397,358.102,946.766,0.807294,405.333,1099.34,0.730507,237.046,1125.68,0.786479,694.41,599.859,0.620253,836.474,562.978,0.601225,436.86,1157.15,0.70085,447.357,1146.68,0.707319,394.778,1099.29,0.682364,274.008,1214.99,0.70111,242.397,1204.5,0.686021,221.258,1136.16,0.709334],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2805,336.971,0.462162,89.9033,326.549,0.451102,68.885,326.408,0.451357,100.427,331.821,0.392709,58.3516,321.326,0.318724,116.114,389.619,0.542781,0,0,0,110.933,452.634,0.529596,13.6592,442.095,0.413821,68.9541,405.442,0.47694,13.5644,479.014,0.294458,89.9194,515.832,0.554461,0,0,0,74.0366,620.881,0.509495,13.587,620.821,0.517223,63.6633,725.891,0.501799,10.9824,710.234,0.487429,79.3658,368.522,0.44193,84.6969,284.433,0.445343,58.2964,741.841,0.377316,68.8361,741.924,0.402443,68.9079,731.401,0.461156,13.5894,736.548,0.293884,13.6286,731.284,0.30733,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0059.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0059.json deleted file mode 100644 index 86a9e1f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0059.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.517,626.141,0.694636,799.596,610.467,0.371581,778.543,605.011,0.680271,0,0,0,747.071,563.159,0.652105,699.685,657.706,0.665694,647.263,542.05,0.648264,678.653,778.705,0.661493,547.326,494.8,0.692439,689.097,904.884,0.683242,678.738,463.188,0.681828,510.492,804.907,0.733482,436.803,747.024,0.721804,468.463,994.124,0.753113,373.736,946.985,0.759512,400.144,1104.56,0.702959,263.439,1136.09,0.748752,694.587,605.025,0.602419,836.496,563.089,0.598831,436.822,1157.21,0.63918,442.263,1151.77,0.662288,389.571,1104.51,0.626999,305.371,1220.22,0.690976,268.57,1204.53,0.698275,237.163,1141.38,0.663913],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.335,336.918,0.459223,89.9473,326.496,0.448727,68.9351,321.344,0.448556,100.436,331.787,0.379747,58.3524,321.289,0.334241,116.109,389.598,0.536173,0,0,0,110.948,452.6,0.522502,13.6488,442.09,0.408538,68.9745,405.453,0.470906,13.5562,479.007,0.287128,89.928,515.815,0.548147,0,0,0,74.0316,620.874,0.50481,13.5861,615.728,0.513718,63.6548,720.835,0.493864,10.986,710.234,0.484127,79.3651,368.466,0.435789,84.7204,284.392,0.435694,58.2905,741.817,0.376178,68.8315,741.913,0.400903,68.8924,731.386,0.455543,13.5859,736.546,0.290834,13.623,731.284,0.305215,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0060.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0060.json deleted file mode 100644 index 62bfe3f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0060.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.6,626.161,0.69164,804.868,610.464,0.358592,778.607,605.022,0.678335,0,0,0,747.124,568.204,0.654302,699.688,657.715,0.663321,652.396,536.811,0.644262,678.698,778.645,0.649448,547.324,500.019,0.673559,689.138,904.776,0.680254,683.873,473.57,0.673938,515.634,804.953,0.711062,436.789,752.257,0.69937,473.579,994.164,0.732924,389.473,952.131,0.750014,400.214,1104.59,0.700692,279.241,1146.57,0.729283,694.562,599.891,0.608108,841.702,563.044,0.606854,436.801,1157.26,0.629828,442.268,1151.83,0.662608,389.615,1104.58,0.632223,321.288,1230.74,0.715889,284.428,1225.48,0.672486,268.655,1151.86,0.653907],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2775,336.904,0.460704,89.9054,326.481,0.449032,68.9007,321.325,0.451727,100.426,331.783,0.388113,58.3316,321.266,0.327353,111.004,389.613,0.534982,0,0,0,110.919,452.609,0.520297,13.6599,442.103,0.4019,68.9568,405.47,0.470432,13.5586,478.988,0.283166,89.9237,515.831,0.548488,0,0,0,74.0679,620.89,0.504262,13.5853,615.727,0.515671,63.6425,725.904,0.495344,10.9845,710.243,0.482921,79.3562,363.384,0.438813,84.7043,284.383,0.438416,58.2836,741.838,0.374555,68.8291,741.94,0.398917,68.8799,731.405,0.45704,13.588,736.569,0.291408,13.6234,731.303,0.304662,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0061.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0061.json deleted file mode 100644 index b557e2f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0061.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.676,626.154,0.685664,810.019,610.496,0.347267,778.675,605.007,0.67098,0,0,0,747.129,563.101,0.646961,699.799,652.499,0.676475,652.424,531.532,0.695851,683.901,778.574,0.691143,536.783,510.41,0.73773,689.174,899.607,0.707817,678.681,478.835,0.701082,515.636,804.928,0.78991,436.872,752.321,0.787106,473.673,994.237,0.808472,394.796,962.687,0.811707,400.17,1109.87,0.759137,310.776,1151.95,0.786537,694.593,599.808,0.616577,846.921,562.986,0.606186,436.79,1162.49,0.660251,442.249,1151.96,0.692176,389.515,1109.88,0.644053,352.812,1235.9,0.730771,321.175,1235.88,0.729269,294.888,1157.23,0.669017],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3368,331.746,0.466136,89.9423,326.383,0.45493,68.9376,321.231,0.457537,100.448,331.724,0.388664,58.342,321.211,0.338902,111.016,389.596,0.539809,0,0,0,110.911,452.617,0.527135,13.6394,442.079,0.407645,68.9509,405.413,0.474987,13.5413,478.996,0.289907,89.9243,515.813,0.549968,0,0,0,74.055,620.874,0.505046,13.5755,620.823,0.516912,63.6466,725.897,0.497245,10.9786,710.269,0.486479,79.3773,363.311,0.438285,84.7213,279.307,0.434742,58.3149,741.842,0.37563,68.856,741.934,0.398355,68.8776,731.398,0.459398,13.5853,736.589,0.298549,13.6221,731.327,0.312742,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0062.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0062.json deleted file mode 100644 index 310bc16..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0062.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.671,626.2,0.682338,810.016,610.523,0.343301,778.693,605.07,0.667807,0,0,0,752.259,563.129,0.648226,699.82,657.652,0.682408,652.466,536.734,0.689641,683.925,778.57,0.699516,531.492,510.52,0.749917,689.236,904.728,0.698483,673.496,484.108,0.697866,515.717,810.106,0.804326,436.862,752.334,0.793234,478.845,994.263,0.816143,400.063,973.135,0.824071,405.303,1109.89,0.757622,326.533,1157.17,0.790227,694.581,599.826,0.626264,846.957,563.029,0.611019,436.853,1167.65,0.668856,447.347,1151.98,0.696095,389.535,1115.03,0.611483,384.284,1236.06,0.730688,342.227,1236.05,0.72963,315.922,1167.65,0.708553],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2961,331.744,0.4589,89.9091,326.378,0.44878,68.9084,321.232,0.449226,100.44,331.711,0.39367,58.3445,321.207,0.321297,116.121,389.592,0.531311,0,0,0,110.906,452.597,0.525344,13.6214,442.089,0.410223,68.9447,405.417,0.47672,13.5498,478.989,0.290961,89.9272,515.822,0.542402,0,0,0,74.0243,620.885,0.497879,13.5766,620.817,0.507821,63.632,725.916,0.493206,10.9845,710.244,0.480341,79.3986,363.32,0.430424,84.6697,279.308,0.425795,58.2802,741.853,0.370969,68.8137,746.984,0.394988,68.8694,731.417,0.456965,13.5947,736.574,0.296431,13.6272,731.307,0.308971,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0063.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0063.json deleted file mode 100644 index d2f06ae..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0063.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.623,626.163,0.663468,810.012,610.565,0.340496,778.674,605.022,0.650451,0,0,0,752.302,563.065,0.627694,710.223,652.504,0.651386,652.513,531.519,0.661329,689.099,778.654,0.696864,526.219,515.622,0.741168,689.315,904.836,0.692255,673.408,484.27,0.667429,515.769,810.133,0.78345,442.037,752.372,0.795369,478.93,994.229,0.803585,405.331,978.318,0.799087,405.269,1114.99,0.742536,352.653,1162.45,0.780496,694.601,594.629,0.611091,852.151,563.065,0.600788,436.96,1162.48,0.646949,447.345,1151.96,0.662291,389.534,1115.13,0.554972,400.035,1241.24,0.781802,363.233,1241.28,0.726674,336.918,1178.22,0.697658],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1863,336.909,0.441072,89.8677,326.474,0.433085,68.8727,321.324,0.431236,100.412,331.758,0.385424,58.3308,321.279,0.300134,116.111,389.616,0.509631,0,0,0,110.898,452.594,0.509216,13.6082,442.095,0.396877,68.9521,405.374,0.463317,13.5563,479.012,0.280177,89.9305,515.826,0.52305,0,0,0,74.0187,620.886,0.477714,13.5677,620.814,0.483337,63.6266,725.887,0.471559,13.5613,710.231,0.459237,79.3768,363.376,0.409547,84.6208,284.378,0.410863,58.2696,741.81,0.36024,68.8132,741.917,0.382949,68.8539,731.389,0.440101,13.6024,736.554,0.279057,13.6349,731.281,0.292123,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0064.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0064.json deleted file mode 100644 index 22d226f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0064.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.558,626.098,0.664728,804.924,610.516,0.345076,778.626,599.91,0.651635,0,0,0,752.28,562.978,0.623428,710.306,652.491,0.632282,652.466,531.463,0.650946,689.156,773.468,0.688841,526.169,515.748,0.71399,694.47,904.841,0.683775,668.236,489.375,0.645895,521.027,815.285,0.723053,442.105,757.585,0.728538,484.133,999.361,0.718789,415.85,978.398,0.705599,410.535,1115.08,0.654209,373.79,1172.9,0.703469,694.618,594.547,0.610627,847.008,563.004,0.599507,447.328,1162.4,0.522338,452.615,1151.93,0.534495,394.762,1120.39,0.46681,431.58,1246.5,0.670043,394.865,1246.56,0.691218,352.812,1183.5,0.65532],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1668,336.999,0.454898,89.8598,326.557,0.444114,68.8362,326.417,0.444556,100.411,331.825,0.399301,58.3139,321.339,0.311042,111.014,394.623,0.53552,0,0,0,110.899,452.625,0.526075,13.6332,442.101,0.408906,68.9603,405.403,0.469415,13.5403,479.04,0.287278,89.9233,515.809,0.543038,0,0,0,74.0267,620.847,0.501027,10.99,615.722,0.51581,63.6442,720.819,0.484238,10.9765,710.221,0.483953,79.3776,368.529,0.423717,84.6502,284.448,0.415454,58.272,741.789,0.365215,68.7938,741.902,0.388728,68.8863,731.369,0.44964,13.5884,736.551,0.296201,13.6188,731.285,0.311687,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0065.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0065.json deleted file mode 100644 index ca43a17..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0065.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.64,620.952,0.668935,810.049,610.456,0.339132,778.723,599.885,0.654806,0,0,0,752.371,562.933,0.620987,715.55,652.396,0.622019,652.436,526.309,0.652788,689.305,778.694,0.678895,515.804,520.833,0.706703,694.594,910.006,0.671188,657.758,489.482,0.641297,521.121,815.356,0.711563,442.117,762.775,0.719502,484.203,999.369,0.69311,431.555,983.614,0.701379,405.432,1115.08,0.629811,394.91,1183.36,0.734987,694.615,589.339,0.613627,852.272,562.962,0.596731,452.742,1167.73,0.424225,457.971,1157.14,0.422146,394.732,1120.36,0.451958,447.397,1246.62,0.725284,410.577,1251.76,0.701666,384.325,1193.85,0.638742],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1828,336.972,0.453644,89.8764,326.527,0.442787,68.848,326.388,0.443612,100.409,331.811,0.39479,58.3233,321.315,0.313161,111.001,394.615,0.534641,0,0,0,110.912,452.613,0.523537,13.6423,442.09,0.406076,68.9741,405.414,0.468942,13.5447,479.008,0.284803,89.9366,515.812,0.545669,0,0,0,74.023,620.846,0.502981,10.9893,615.711,0.516866,63.6308,720.81,0.49028,10.976,710.219,0.487605,79.3687,368.507,0.420286,84.6618,284.435,0.410713,58.306,741.785,0.367398,68.8321,741.887,0.390905,68.8521,731.362,0.45574,13.5781,736.553,0.30192,13.6063,731.289,0.317179,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0066.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0066.json deleted file mode 100644 index d304b60..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0066.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.57,620.879,0.676052,810.061,610.422,0.409766,778.642,594.677,0.663511,0,0,0,752.27,557.739,0.627349,720.735,652.358,0.633845,652.385,531.518,0.643167,694.407,773.403,0.682895,515.746,520.853,0.70582,699.708,904.737,0.677929,662.917,499.952,0.644615,521.101,815.345,0.71073,442.163,762.879,0.716213,484.152,999.396,0.679834,442.149,983.691,0.72692,405.435,1130.82,0.550492,405.266,1188.61,0.713202,694.604,589.328,0.615011,852.28,552.578,0.596824,452.718,1209.76,0.311672,457.93,1193.94,0.282367,394.892,1141.33,0.393031,463.239,1251.79,0.665483,436.794,1251.86,0.658404,394.826,1194.05,0.648389],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2697,336.92,0.463169,89.9006,326.492,0.452512,68.8779,321.347,0.454404,100.411,331.794,0.396908,58.3263,321.291,0.331521,111.002,389.632,0.543675,0,0,0,110.924,452.626,0.525783,13.6585,442.079,0.40841,68.9821,405.41,0.47271,13.5414,478.99,0.290169,89.9307,515.801,0.551198,0,0,0,74.043,620.837,0.508185,13.5771,615.713,0.526345,63.6426,720.823,0.497912,10.9775,710.218,0.497738,79.3576,368.483,0.434337,84.687,284.42,0.422548,58.3149,741.822,0.374641,68.8606,741.917,0.397179,68.8584,731.373,0.462071,13.5695,736.567,0.311708,13.5993,731.298,0.326799,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0067.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0067.json deleted file mode 100644 index 5373016..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0067.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.612,615.67,0.668725,810.064,605.244,0.433677,778.678,594.548,0.654141,0,0,0,747.113,552.48,0.608439,720.76,647.224,0.610433,652.367,526.369,0.612562,694.444,778.523,0.668797,505.221,520.98,0.644896,699.844,899.625,0.663233,647.262,510.446,0.620947,526.197,815.448,0.648182,442.207,768.004,0.646519,484.298,1004.63,0.593997,447.388,983.651,0.670116,400.139,1104.53,0.419168,421.148,1183.49,0.641273,694.562,584.159,0.621289,852.267,552.494,0.596276,457.891,1183.45,0.178539,0,0,0,389.524,1104.57,0.30119,484.155,1257.04,0.690771,447.347,1257.1,0.669044,405.289,1194.02,0.588843],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1635,336.927,0.475048,89.8684,326.487,0.462193,68.8487,321.339,0.468896,100.412,331.776,0.407201,58.2923,321.276,0.331417,110.989,389.627,0.550564,0,0,0,110.938,452.605,0.527892,16.1615,442.063,0.420832,68.9754,405.431,0.476999,13.5429,478.991,0.302247,89.9099,515.784,0.560042,0,0,0,74.0327,620.818,0.516688,13.6007,615.704,0.539481,63.647,720.785,0.506262,10.9798,710.228,0.504098,79.3483,368.477,0.448092,84.6832,284.412,0.435995,58.3432,741.796,0.384022,68.8961,741.882,0.40817,68.876,731.339,0.469216,13.5655,736.567,0.316235,13.5951,731.306,0.331325,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0068.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0068.json deleted file mode 100644 index a35cfa3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0068.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.869,615.686,0.662196,810.031,605.123,0.265009,783.947,599.756,0.648845,0,0,0,752.397,557.823,0.626312,720.755,647.119,0.612536,652.511,526.341,0.629616,694.569,773.341,0.686557,499.962,521.018,0.667758,705.021,899.495,0.654229,647.027,515.775,0.442483,526.235,815.447,0.67807,447.336,768.095,0.682612,484.323,994.202,0.601846,457.853,988.95,0.691115,400.05,1078.29,0.563137,436.947,1193.9,0.657082,694.612,589.263,0.640653,857.397,552.505,0.599523,426.391,1157.12,0.21739,0,0,0,389.448,1083.53,0.471037,494.64,1262.33,0.684577,457.896,1267.52,0.668276,421.157,1204.49,0.552372],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1677,336.973,0.457394,89.8638,326.538,0.446516,68.8424,326.386,0.447308,100.403,331.808,0.398499,58.3245,321.291,0.311174,110.991,389.632,0.538875,0,0,0,110.913,452.615,0.52366,13.6367,442.091,0.40595,68.9594,405.414,0.471937,13.5533,479.014,0.285531,89.9319,515.811,0.550045,0,0,0,74.0629,620.862,0.510712,10.9911,620.826,0.531634,63.6529,725.888,0.50146,10.9768,710.262,0.497473,79.3633,368.507,0.43048,84.6713,284.426,0.422477,58.3152,741.848,0.379782,68.8707,741.946,0.402735,68.8812,731.395,0.462238,13.5759,736.594,0.306851,13.6049,731.331,0.321818,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0069.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0069.json deleted file mode 100644 index 4a02fcf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0069.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.883,615.577,0.669652,810.136,605.031,0.323718,783.871,594.524,0.657781,0,0,0,752.313,552.572,0.632568,725.984,636.733,0.633544,652.515,526.328,0.66292,694.599,762.923,0.689999,499.912,526.154,0.695711,710.269,888.951,0.661464,641.904,520.872,0.473522,531.463,815.5,0.71151,447.493,773.327,0.709761,489.495,994.208,0.666797,473.583,988.953,0.717188,400.137,1099.25,0.664443,452.57,1199.17,0.674123,699.68,584.122,0.634005,852.234,541.986,0.592274,415.844,1167.7,0.302348,415.836,1146.64,0.312609,389.526,1099.35,0.642462,505.275,1272.75,0.706079,473.663,1272.84,0.675332,436.929,1214.97,0.554737],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1528,336.998,0.458802,89.8519,326.553,0.447553,68.8237,326.413,0.449614,100.383,331.83,0.396366,58.2992,321.318,0.322948,110.998,389.637,0.540968,0,0,0,110.932,452.613,0.529505,13.6455,442.091,0.416398,68.9594,405.447,0.475378,13.5751,479.016,0.29605,89.9279,515.83,0.552766,0,0,0,74.034,620.868,0.512868,13.5869,615.733,0.527734,63.6357,725.886,0.501979,13.5607,710.262,0.490325,79.3276,368.534,0.429306,84.6355,284.452,0.420744,58.2959,741.867,0.379956,68.8577,746.986,0.404099,68.8639,731.374,0.462056,13.5886,736.579,0.305054,13.6199,731.321,0.317351,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0070.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0070.json deleted file mode 100644 index cd8e1b0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0070.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.864,610.451,0.664952,810.126,604.948,0.291261,783.869,589.323,0.652741,0,0,0,747.152,547.303,0.615435,726.027,636.734,0.619696,647.285,531.557,0.604496,694.61,762.856,0.661255,494.73,526.229,0.642656,720.75,883.775,0.648897,641.994,520.915,0.461614,536.785,820.769,0.633453,452.719,778.623,0.630407,489.527,994.217,0.609805,478.836,994.169,0.656579,400.17,1094.08,0.627102,468.363,1199.21,0.590663,694.563,584.146,0.637993,852.195,531.515,0.596124,415.857,1157.23,0.337064,421.053,1146.61,0.345017,389.5,1099.26,0.617929,515.692,1278.01,0.681496,484.102,1278.04,0.648936,447.476,1215.06,0.463097],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3147,336.897,0.516871,89.9169,326.47,0.495852,68.8968,321.328,0.516715,100.44,331.766,0.410428,58.2774,321.305,0.398733,111.002,389.624,0.587219,0,0,0,110.969,452.594,0.558865,13.677,442.078,0.47225,74.0764,410.577,0.494206,13.5709,478.981,0.341344,89.9394,515.779,0.610774,0,0,0,74.0756,615.73,0.561449,13.6012,615.675,0.58797,63.6447,720.771,0.549016,10.9718,710.235,0.539527,79.3434,368.491,0.479421,84.6871,284.456,0.461238,58.359,741.836,0.410327,68.9273,741.893,0.438156,68.8845,731.33,0.505737,10.9841,736.598,0.3393,13.5861,731.341,0.353243,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0071.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0071.json deleted file mode 100644 index 7aa7c5c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0071.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.93,610.26,0.663224,810.121,599.769,0.308431,783.935,578.962,0.654272,0,0,0,752.349,542.055,0.621673,731.21,636.667,0.616111,657.673,536.766,0.605944,694.652,752.322,0.644273,494.702,526.35,0.623503,726.082,878.567,0.643923,636.52,526.118,0.434093,547.323,820.78,0.619534,463.172,778.677,0.618528,505.18,994.15,0.607798,484.211,994.099,0.657881,405.329,1094.1,0.618687,473.722,1199.33,0.594578,699.826,584.133,0.646637,852.243,526.367,0.605334,431.616,1157.24,0.335336,431.541,1146.63,0.325968,389.561,1094.11,0.62695,520.954,1278.1,0.677299,489.373,1278.14,0.665304,457.932,1225.5,0.469258],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1866,336.961,0.456024,89.8726,326.521,0.445572,68.8505,326.382,0.448301,100.4,331.783,0.393305,58.3104,321.305,0.32242,111.006,389.626,0.533666,0,0,0,110.921,452.615,0.518419,13.6609,442.096,0.408734,74.0291,405.453,0.46702,13.5535,478.987,0.282162,89.9398,515.809,0.547814,0,0,0,74.0602,620.866,0.504007,13.5841,615.73,0.523999,63.6564,720.835,0.494859,13.5517,710.22,0.490031,79.3637,368.495,0.434396,84.651,284.439,0.422954,58.304,741.852,0.379585,68.8748,741.938,0.403933,68.8777,731.372,0.459599,13.5812,736.572,0.300771,13.6136,731.306,0.31314,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0072.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0072.json deleted file mode 100644 index 4954335..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0072.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.917,605.053,0.665886,810.14,594.611,0.305516,783.91,578.814,0.663335,0,0,0,752.33,536.819,0.620855,731.212,636.674,0.626872,647.234,536.762,0.613173,699.791,757.55,0.65093,494.703,542.009,0.588024,731.349,868.016,0.64377,636.672,526.324,0.397938,557.836,826.015,0.617495,473.59,789.077,0.615563,505.262,999.364,0.613348,494.681,994.21,0.657784,405.43,1104.49,0.618642,479.012,1209.71,0.604459,699.775,584.076,0.664646,846.969,526.195,0.607219,431.608,1172.92,0.381564,431.584,1157.14,0.379576,394.731,1104.51,0.62659,521.078,1278.18,0.647517,494.665,1283.29,0.647726,468.369,1230.76,0.490249],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1571,336.986,0.451181,89.852,326.536,0.440797,68.8219,326.403,0.442415,100.389,331.768,0.394618,58.3107,321.311,0.311393,110.988,389.625,0.534839,0,0,0,110.908,452.615,0.518886,13.6529,442.105,0.403652,68.9898,405.434,0.465627,13.5527,478.99,0.278483,89.9377,515.815,0.549345,0,0,0,74.028,620.857,0.508029,13.5751,615.713,0.528801,63.6328,720.819,0.497627,10.9769,710.193,0.497874,79.3674,368.503,0.430419,84.6433,284.417,0.420628,58.2588,741.84,0.375194,68.8214,741.934,0.400943,68.8649,731.373,0.461615,13.5844,736.548,0.304352,13.6167,731.279,0.318838,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0073.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0073.json deleted file mode 100644 index 1911939..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0073.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[789.089,599.89,0.640056,810.203,589.371,0.27649,789.085,573.663,0.646097,0,0,0,752.395,531.544,0.613799,726.057,631.371,0.603648,647.147,547.244,0.587371,699.782,741.779,0.618295,484.28,562.914,0.552527,736.53,857.448,0.625115,620.829,536.757,0.386821,563.008,826.027,0.604578,478.914,799.624,0.606754,499.984,999.403,0.616623,494.778,1004.62,0.653136,405.403,1104.53,0.624404,484.29,1214.96,0.59309,699.805,578.918,0.65975,852.196,520.918,0.613614,436.879,1167.74,0.421331,436.832,1157.14,0.416164,394.724,1104.57,0.638347,526.168,1283.4,0.615375,494.787,1283.41,0.629417,473.703,1230.78,0.469877],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2719,336.988,0.45522,89.893,326.556,0.444437,68.8682,326.423,0.446309,100.4,331.795,0.391606,58.3413,321.317,0.321665,110.995,389.624,0.537719,0,0,0,110.908,452.605,0.52289,13.6518,442.076,0.412634,68.9742,405.442,0.469977,13.536,479.002,0.28736,89.9282,515.799,0.552641,0,0,0,74.0368,620.853,0.509918,13.5845,615.715,0.533668,63.6469,725.898,0.501028,10.9794,710.243,0.502077,79.3666,368.499,0.432887,84.6986,284.439,0.423314,58.3078,741.873,0.377913,68.8535,746.992,0.402088,68.8827,731.416,0.465909,13.5853,736.586,0.309009,13.6174,731.325,0.324195,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0074.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0074.json deleted file mode 100644 index 9f70fd0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0074.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[789.107,594.65,0.666397,810.127,584.03,0.311413,789.071,573.525,0.663135,0,0,0,752.274,526.318,0.646152,720.784,631.351,0.614814,636.704,557.69,0.614935,704.968,736.481,0.632437,484.266,563.171,0.591591,747.07,857.392,0.653488,578.842,557.815,0.353869,568.271,836.427,0.632974,484.139,804.897,0.635795,500.051,999.481,0.619633,505.283,1004.75,0.655823,405.388,1099.3,0.620696,489.44,1209.76,0.603878,699.708,578.85,0.669086,847,515.646,0.6279,436.963,1167.77,0.459845,436.948,1157.19,0.45335,394.762,1099.26,0.629998,521.126,1283.34,0.617072,494.797,1283.31,0.62299,478.926,1230.7,0.482863],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2695,336.946,0.434448,89.8947,326.512,0.430205,68.8596,326.376,0.425838,100.393,331.785,0.381193,58.3177,321.294,0.30747,111.014,389.622,0.512706,0,0,0,110.919,452.622,0.502689,13.6467,442.058,0.382104,68.9561,405.417,0.458123,13.5575,479.011,0.264652,89.9385,515.807,0.524156,0,0,0,74.0282,620.832,0.484892,13.5775,615.714,0.497208,63.6489,720.838,0.478033,10.9817,710.232,0.472277,79.3702,368.479,0.411823,84.659,284.409,0.404095,58.2716,741.831,0.362309,68.8311,741.934,0.388235,68.8842,731.404,0.446384,13.599,736.584,0.28453,13.6322,731.323,0.299978,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0075.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0075.json deleted file mode 100644 index 48c4e74..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0075.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[794.352,589.382,0.626661,815.228,573.689,0.21503,794.354,568.414,0.64002,0,0,0,757.521,526.294,0.646933,715.495,620.847,0.526984,641.92,557.763,0.538445,710.282,731.196,0.454047,478.943,568.411,0.434785,757.488,846.948,0.473469,568.142,562.974,0.265611,568.341,831.208,0.56899,494.669,815.289,0.595203,505.234,994.225,0.615184,515.621,1015.23,0.659801,405.364,1094.08,0.630062,494.701,1204.51,0.586164,699.816,578.77,0.680949,846.981,510.484,0.619972,442.108,1162.48,0.48668,442.103,1151.98,0.480684,394.734,1094.05,0.632343,521.062,1278.08,0.618955,499.906,1277.99,0.615158,484.101,1220.29,0.461475],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.314,336.92,0.454277,89.9214,326.493,0.446328,68.9135,321.35,0.446663,100.415,331.785,0.392314,58.3468,321.303,0.329093,111.005,389.628,0.53365,0,0,0,110.922,452.605,0.517781,13.6342,442.076,0.409007,68.9795,405.414,0.473318,13.5268,479.014,0.28387,89.9341,515.803,0.544767,0,0,0,68.9562,620.855,0.500751,13.5828,615.711,0.520516,63.6485,725.895,0.495427,10.9818,710.233,0.49181,79.3786,368.484,0.441155,84.6943,284.425,0.43116,58.3007,741.838,0.370138,68.8521,741.934,0.396698,68.8769,731.411,0.463238,13.5948,736.571,0.299953,13.6256,731.318,0.313884,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0076.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0076.json deleted file mode 100644 index 37e4031..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0076.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[789.081,584.095,0.676825,810.161,573.561,0.339738,783.977,568.192,0.66188,0,0,0,752.275,521.041,0.668771,720.757,620.866,0.608546,631.378,552.527,0.615013,720.713,725.979,0.594709,479.022,578.899,0.592592,768.026,831.191,0.668534,436.853,536.843,0.368318,573.658,836.496,0.633139,499.907,810.186,0.638309,505.242,999.386,0.610305,515.811,1020.46,0.652826,405.42,1094.08,0.629631,494.775,1209.79,0.603385,699.684,573.632,0.693955,846.915,505.251,0.639645,442.147,1162.53,0.528523,442.127,1157.05,0.521948,394.789,1094.06,0.647328,526.208,1283.36,0.615277,500.038,1283.25,0.623317,484.18,1225.54,0.504206],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.2046,336.942,0.43906,89.8925,326.502,0.433136,68.8813,321.355,0.430783,100.43,331.794,0.386404,58.3393,321.299,0.303719,111.018,394.615,0.516106,0,0,0,110.908,452.615,0.504737,13.654,442.084,0.381322,68.9769,405.405,0.461984,13.5498,484.204,0.271033,89.9414,515.82,0.527562,0,0,0,74.0263,620.865,0.482907,13.5787,615.737,0.49721,63.6302,725.921,0.478791,10.9814,710.247,0.471867,79.3807,368.496,0.419093,84.6784,284.402,0.416109,58.2467,741.89,0.363185,68.8092,747.02,0.388086,68.8711,731.423,0.446499,13.6001,736.582,0.285009,13.6329,731.315,0.300241,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0077.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0077.json deleted file mode 100644 index 0c5d8d2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0077.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.964,578.901,0.680486,810.125,568.459,0.352207,783.879,563.047,0.662745,0,0,0,747,520.922,0.679905,720.722,620.89,0.610789,626.135,557.813,0.625688,731.287,731.328,0.587036,473.74,594.544,0.597314,773.403,820.796,0.671821,547.16,573.612,0.312795,573.716,846.973,0.620647,505.277,820.575,0.630581,510.501,1004.69,0.606629,521.065,1025.8,0.666749,405.383,1094.1,0.645081,494.764,1214.96,0.61344,694.558,573.639,0.690879,841.695,500,0.643237,442.073,1167.65,0.544988,442.032,1157.08,0.534896,394.745,1094.07,0.659094,526.189,1283.37,0.600772,505.191,1283.26,0.61526,484.172,1230.71,0.521088],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3374,331.766,0.470442,89.9466,326.402,0.460944,68.9276,321.256,0.463893,100.451,331.746,0.392247,58.3199,321.256,0.34444,111.006,394.613,0.544035,0,0,0,110.921,452.626,0.527372,13.6677,442.093,0.413783,68.9714,405.411,0.477028,13.5596,484.2,0.296129,89.9189,515.819,0.556432,0,0,0,68.9429,620.834,0.512765,13.5949,615.714,0.533187,63.6594,720.821,0.503458,10.9812,710.232,0.499989,79.3631,363.38,0.446367,89.7494,284.347,0.44478,58.3063,741.835,0.384888,68.8791,741.924,0.408742,68.9095,731.376,0.468217,13.5952,736.576,0.305683,13.6281,731.326,0.32128,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0078.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0078.json deleted file mode 100644 index fa7b691..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0078.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[783.922,578.743,0.687085,810.058,568.216,0.367528,778.724,557.828,0.658888,0,0,0,741.758,520.866,0.685583,731.187,610.497,0.624535,626.087,563.035,0.632758,736.515,705.105,0.60569,478.885,605.011,0.605783,783.966,815.279,0.650719,521.03,578.802,0.329827,584.054,857.367,0.625027,515.63,820.778,0.635388,515.672,1015.12,0.59608,526.263,1031.04,0.664764,410.54,1088.8,0.623561,494.752,1209.8,0.627427,694.605,573.583,0.692175,836.407,489.512,0.649356,436.963,1167.63,0.545008,436.945,1152,0.53584,394.815,1083.57,0.640687,526.216,1283.39,0.622653,505.206,1283.26,0.631735,484.084,1225.53,0.535122],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3555,331.78,0.466149,89.9586,326.416,0.457725,68.952,321.257,0.458297,100.461,331.75,0.387333,58.3299,321.242,0.345354,111.015,389.628,0.538309,0,0,0,110.921,452.6,0.526381,13.6682,442.101,0.408065,68.9865,405.43,0.475114,13.559,484.191,0.291676,89.9076,515.817,0.55247,0,0,0,68.932,620.858,0.510036,13.601,615.735,0.523487,63.6511,725.89,0.500986,13.5608,710.263,0.490779,79.36,363.363,0.450799,89.751,279.3,0.447822,58.3158,741.864,0.382878,68.8924,741.947,0.406751,68.9028,731.392,0.466946,13.6043,736.594,0.299554,13.6401,731.345,0.312103,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0079.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0079.json deleted file mode 100644 index 3d22735..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0079.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.709,573.624,0.677372,804.924,563.138,0.347339,778.559,557.734,0.649252,0,0,0,736.67,520.857,0.662614,731.176,610.338,0.610997,626.131,568.199,0.640777,736.68,694.547,0.599346,473.698,610.314,0.566202,794.369,783.937,0.632381,552.499,599.841,0.346982,594.594,857.363,0.603618,515.84,825.926,0.637378,526.176,1020.44,0.570983,531.583,1036.21,0.638814,410.584,1088.78,0.628207,494.756,1209.81,0.626207,694.619,573.521,0.693896,831.161,489.44,0.639426,442.048,1167.64,0.541679,436.972,1157.06,0.520366,394.788,1083.54,0.656697,526.21,1283.36,0.618941,505.218,1278.16,0.629923,478.952,1225.51,0.52846],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3537,331.822,0.435166,89.9652,326.445,0.432204,68.9597,321.291,0.425577,100.469,331.746,0.375464,58.395,321.236,0.305855,111.03,389.611,0.506313,0,0,0,110.92,452.597,0.502093,13.6458,442.08,0.378638,68.9743,405.366,0.460268,13.5505,484.227,0.269602,89.9399,515.822,0.520673,0,0,0,74.0242,620.88,0.481278,13.5774,620.82,0.493583,63.6592,725.898,0.477346,13.554,710.237,0.470168,79.4001,363.361,0.430754,89.7853,279.297,0.436049,58.2605,741.863,0.367814,68.8183,747.006,0.392865,68.9002,731.425,0.446651,13.6073,736.588,0.281796,13.6427,731.325,0.296241,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0080.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0080.json deleted file mode 100644 index 776a6bf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0080.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.591,573.621,0.692909,799.672,568.186,0.445626,773.412,552.576,0.66044,0,0,0,731.396,515.767,0.666803,731.347,610.469,0.609745,615.631,568.409,0.66405,757.54,694.518,0.541212,468.467,620.843,0.548165,815.352,778.682,0.628717,541.967,610.496,0.368806,605.126,857.449,0.623771,521.029,831.158,0.635064,526.296,1020.46,0.602245,547.296,1036.31,0.63676,410.637,1083.57,0.632846,494.728,1214.95,0.62808,694.566,573.611,0.698894,825.972,484.155,0.644217,442.127,1162.49,0.525924,442.06,1151.97,0.504131,394.812,1078.33,0.676492,526.182,1283.44,0.625618,505.198,1283.29,0.633082,478.939,1225.52,0.524688],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3024,336.928,0.443333,89.9365,326.502,0.439333,68.9238,321.35,0.431998,100.464,331.799,0.387716,58.3806,321.287,0.300708,116.116,389.635,0.522458,0,0,0,110.936,452.585,0.514444,13.6509,442.088,0.393068,68.9693,405.389,0.466651,13.5457,484.198,0.278416,89.9338,515.815,0.536026,0,0,0,68.9609,620.846,0.498689,13.5755,615.706,0.514574,63.6662,720.843,0.490804,10.9755,710.205,0.489915,79.4117,368.511,0.437187,89.7716,284.386,0.437267,58.2893,741.843,0.376894,68.8589,741.944,0.400595,68.8982,731.405,0.460144,13.5922,736.569,0.294647,13.6268,731.305,0.309439,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0081.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0081.json deleted file mode 100644 index c6a7857..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0081.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[778.606,573.645,0.68322,794.44,568.199,0.406451,773.393,557.721,0.649858,0,0,0,731.351,515.795,0.658088,736.673,620.841,0.632395,615.595,573.505,0.666683,778.593,699.714,0.545453,473.723,636.588,0.568352,836.493,773.395,0.616313,473.688,631.402,0.313012,615.575,862.636,0.618535,526.234,831.228,0.619848,531.518,1020.51,0.577674,552.541,1046.68,0.631388,421.162,1078.38,0.633584,494.712,1214.98,0.62243,694.58,578.791,0.693029,820.75,479.001,0.637515,442.187,1162.49,0.539706,442.153,1152,0.518942,400.148,1073.15,0.69871,521.096,1283.42,0.626918,500.046,1283.26,0.622319,478.948,1225.52,0.512513],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2836,336.886,0.443761,89.9172,326.455,0.439059,68.8934,321.312,0.433112,100.439,331.763,0.384752,58.3527,321.262,0.302562,116.112,389.624,0.522354,0,0,0,110.921,452.595,0.512359,13.6561,442.1,0.396444,68.952,405.351,0.467698,13.5503,484.223,0.284599,89.9449,515.812,0.537116,0,0,0,74.0289,620.828,0.501468,13.5787,615.707,0.520121,63.6712,720.805,0.49281,10.975,710.194,0.495885,79.3906,368.48,0.438438,84.7214,284.342,0.434318,58.2907,741.803,0.377696,68.8576,741.912,0.401807,68.9033,731.376,0.461349,13.5904,736.561,0.299162,13.6242,731.298,0.31508,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0082.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0082.json deleted file mode 100644 index b526403..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0082.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.476,573.656,0.687267,789.188,568.223,0.458234,773.286,557.752,0.656378,0,0,0,731.183,515.751,0.663001,741.829,615.663,0.630136,610.368,573.479,0.672886,783.98,683.939,0.529475,468.401,647.089,0.600288,857.468,752.353,0.554331,520.936,652.53,0.323599,620.911,862.695,0.624634,526.348,831.231,0.623859,557.721,1025.81,0.608085,557.841,1046.76,0.636244,436.735,1078.35,0.654245,494.729,1215.02,0.620668,694.481,578.816,0.692607,820.693,479.008,0.633322,442.214,1162.55,0.541536,442.257,1157.06,0.525,410.538,1073.08,0.709264,521.074,1288.54,0.632714,499.977,1283.34,0.619501,478.989,1225.57,0.508395],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3308,336.889,0.44134,89.9511,326.462,0.437501,68.9347,321.32,0.430862,100.447,331.776,0.378775,58.3756,321.272,0.308177,116.118,389.624,0.519522,0,0,0,110.917,452.601,0.508114,13.6525,442.076,0.396804,68.9563,405.398,0.463129,13.5517,484.234,0.284201,89.9531,515.818,0.531817,0,0,0,74.0454,620.843,0.495331,13.5737,615.73,0.515586,63.6828,720.826,0.485839,10.9746,710.221,0.489101,79.4072,368.478,0.434204,89.7764,284.38,0.427454,58.3185,741.807,0.376402,68.8762,741.916,0.399321,68.9082,731.386,0.455005,13.5884,736.568,0.296741,13.6233,731.313,0.313054,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0083.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0083.json deleted file mode 100644 index 2015eda..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0083.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.452,573.582,0.700776,789.157,563.106,0.531182,773.224,552.556,0.658035,0,0,0,726.016,520.885,0.65707,752.293,615.681,0.639389,615.734,573.558,0.670219,815.512,689.238,0.450261,484.125,647.055,0.603505,878.556,741.814,0.441015,526.347,678.688,0.560687,626.208,862.729,0.627682,536.821,831.252,0.602239,563.085,1031.03,0.628844,563.017,1041.56,0.648211,442.051,1078.35,0.664018,494.782,1214.97,0.615307,694.635,578.91,0.693458,815.477,478.969,0.642876,442.281,1167.67,0.523447,447.375,1157.11,0.5109,421.096,1073.03,0.707143,521.102,1283.46,0.643752,499.983,1283.31,0.626156,484.08,1225.53,0.503615],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3156,336.908,0.459367,89.9503,326.465,0.449284,68.9296,321.321,0.448564,100.469,331.756,0.392096,58.3694,321.26,0.316211,116.121,389.618,0.53699,0,0,0,110.923,452.602,0.52119,13.6654,442.079,0.41575,68.9675,405.428,0.472429,13.5528,484.219,0.299014,89.9341,515.801,0.55027,0,0,0,74.0394,620.836,0.512444,13.5873,615.72,0.536552,63.687,720.806,0.504304,10.9694,710.223,0.504029,79.4109,368.475,0.454429,89.823,284.374,0.447752,58.3334,741.806,0.381765,68.8807,741.908,0.406515,68.9241,731.364,0.469327,13.5839,736.563,0.308493,13.6201,731.308,0.324142,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0084.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0084.json deleted file mode 100644 index e261833..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0084.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.246,573.632,0.69963,783.932,568.185,0.599042,768.008,552.557,0.651279,0,0,0,720.761,520.906,0.641907,752.266,626.119,0.608574,620.836,578.756,0.655054,694.533,757.578,0.243895,478.923,652.517,0.565623,757.619,810.119,0.208231,526.236,694.412,0.600248,626.195,862.785,0.628696,542.085,841.646,0.589351,573.637,1046.67,0.627251,568.284,1041.55,0.65046,447.333,1078.38,0.649634,494.791,1209.78,0.609929,694.623,584.044,0.690322,815.461,479.017,0.6509,447.475,1172.91,0.497612,452.689,1157.23,0.479349,431.61,1072.96,0.70522,521.018,1288.53,0.654834,494.77,1283.3,0.626146,484.063,1225.48,0.490496],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3445,331.813,0.45985,89.9587,326.422,0.44993,68.9332,321.281,0.453394,100.467,331.732,0.385536,58.3343,321.257,0.333478,116.119,389.601,0.525978,0,0,0,110.941,452.596,0.513406,13.6693,442.075,0.412069,68.9819,405.43,0.467548,13.557,484.205,0.291688,89.9268,515.806,0.540499,0,0,0,74.0376,620.836,0.504712,13.5842,615.72,0.523715,63.7006,720.81,0.494453,10.9712,710.208,0.494417,79.4086,363.356,0.447864,89.7936,279.303,0.441522,58.3276,741.804,0.374852,68.881,741.908,0.399977,68.923,731.367,0.461952,13.5824,736.548,0.303174,13.6184,731.293,0.319085,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0085.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0085.json deleted file mode 100644 index 2c92276..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0085.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.371,578.736,0.690916,783.962,568.186,0.44044,768.119,557.842,0.660524,0,0,0,715.578,521.086,0.646116,752.312,610.349,0.628749,610.369,584.089,0.655299,820.781,636.766,0.371521,452.755,678.742,0.596567,757.583,810.147,0.150051,515.625,710.33,0.58294,636.698,862.808,0.638068,557.85,846.963,0.610357,589.319,1046.78,0.648002,568.228,1046.78,0.659703,457.877,1083.59,0.622897,494.702,1209.79,0.602104,694.496,584.101,0.692058,815.346,484.134,0.644629,457.916,1162.56,0.460476,463.208,1157.15,0.446316,442.1,1073.06,0.696017,520.936,1288.53,0.671541,489.521,1283.3,0.626721,478.994,1225.45,0.458985],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3958,331.81,0.481674,94.996,326.417,0.467905,68.9717,321.281,0.477037,100.48,331.754,0.388361,58.3298,321.291,0.370143,116.111,389.607,0.553361,0,0,0,110.942,452.629,0.53052,13.6589,442.113,0.443476,68.9525,405.422,0.476278,13.5309,489.428,0.322169,89.9436,515.798,0.568344,0,0,0,74.0434,620.829,0.526447,13.5802,615.712,0.551434,63.6733,720.841,0.517996,10.964,710.219,0.518386,79.3952,363.376,0.465484,89.8281,284.353,0.457667,58.321,741.885,0.38357,68.8707,747.01,0.409829,68.9027,731.407,0.481046,13.5666,736.589,0.316523,13.6002,731.331,0.332976,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0086.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0086.json deleted file mode 100644 index 5bb8124..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0086.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.173,578.824,0.684116,778.64,568.276,0.433862,762.873,562.996,0.652365,0,0,0,710.283,526.2,0.644823,752.32,610.434,0.621527,610.321,589.375,0.665502,831.128,615.648,0.275674,457.937,678.768,0.621227,752.32,825.908,0.158355,499.91,731.244,0.609837,641.952,867.958,0.654541,563.04,852.207,0.633073,605.214,1052.01,0.653654,568.292,1051.94,0.653421,484.134,1088.87,0.600236,494.744,1204.56,0.593992,694.444,589.38,0.687232,810.122,484.235,0.624055,479.027,1167.68,0.362079,484.096,1157.18,0.360145,457.889,1073.13,0.628744,520.971,1288.6,0.673333,489.562,1283.3,0.630469,479.002,1215.05,0.437951],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3469,336.892,0.477877,89.9636,326.451,0.464091,68.9434,321.305,0.472003,100.464,331.759,0.391657,58.3254,321.295,0.357246,116.114,389.617,0.549022,0,0,0,110.928,452.633,0.530124,13.6619,442.114,0.441909,68.9781,405.419,0.476395,13.5367,489.421,0.320383,89.9289,515.81,0.563009,0,0,0,74.0294,620.833,0.523741,13.586,615.714,0.547758,63.6613,720.805,0.514226,10.9698,710.225,0.516229,79.3841,363.385,0.46247,89.8287,284.357,0.459285,58.3184,741.839,0.382024,68.8812,741.931,0.406702,68.8954,731.368,0.477098,13.5775,736.573,0.316413,13.6099,731.319,0.332755,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0087.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0087.json deleted file mode 100644 index 35a7dc6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0087.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.184,584.01,0.68549,778.612,568.363,0.479533,762.834,563.154,0.66434,0,0,0,710.298,531.513,0.634825,762.886,605.109,0.66173,610.392,599.759,0.695247,852.173,610.404,0.442333,457.917,689.19,0.668815,941.608,641.989,0.504787,484.31,741.897,0.628174,647.13,862.832,0.689364,563.11,852.211,0.675464,615.56,1062.43,0.708103,568.342,1052.03,0.69471,494.735,1099.36,0.601763,494.731,1204.44,0.623664,694.578,599.76,0.683291,810.061,489.478,0.621257,499.983,1204.48,0.308974,0,0,0,473.607,1083.55,0.572362,520.892,1288.61,0.696248,489.41,1283.24,0.655842,478.987,1209.75,0.446432],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.326,336.899,0.470382,89.95,326.463,0.457493,68.9395,321.315,0.463282,100.468,331.772,0.391316,58.3354,321.298,0.340938,116.124,389.622,0.540924,0,0,0,110.92,452.63,0.523959,13.6611,442.12,0.426319,68.974,405.428,0.473882,13.5368,489.425,0.309119,89.9288,515.804,0.551352,0,0,0,68.9601,620.839,0.51058,13.5871,615.712,0.531273,63.6609,725.889,0.504125,10.9796,710.237,0.503014,79.3884,368.468,0.454202,89.7897,284.376,0.450033,58.3036,741.878,0.378433,68.8487,747.004,0.402278,68.8947,731.407,0.469267,13.589,736.581,0.307225,13.6224,731.326,0.323012,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0088.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0088.json deleted file mode 100644 index 83fa564..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0088.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.269,594.584,0.679938,778.604,573.697,0.40229,762.826,573.539,0.678578,757.568,568.312,0.0511208,710.241,542.021,0.647288,768.091,605.055,0.703958,610.309,605.026,0.73919,857.391,605.012,0.518672,468.373,694.392,0.718997,946.888,620.929,0.55695,478.923,757.528,0.685905,652.418,868.05,0.730369,568.216,857.49,0.723694,626.125,1062.59,0.734876,568.28,1062.44,0.736235,510.545,1104.5,0.611784,499.984,1209.72,0.664998,694.548,605.092,0.697281,810.177,494.776,0.63984,505.188,1178.21,0.31517,0,0,0,484.291,1088.84,0.549142,520.907,1288.7,0.71678,489.459,1283.33,0.681093,484.191,1215.03,0.485299],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3113,336.89,0.476716,89.9422,326.454,0.464131,68.9208,321.31,0.470558,100.462,331.766,0.39822,58.3234,321.295,0.345802,111.021,389.626,0.550005,0,0,0,110.932,452.638,0.530787,13.6547,442.132,0.43634,68.9814,405.453,0.476443,13.5439,484.248,0.314992,89.9101,515.803,0.562856,0,0,0,68.9327,620.836,0.523914,13.5897,615.722,0.542912,63.6318,720.828,0.515892,10.9786,710.244,0.510779,79.3694,368.466,0.452961,89.7955,284.355,0.44788,58.2603,741.882,0.380807,68.8092,747.015,0.410003,68.8922,731.39,0.476736,13.5872,736.601,0.308524,13.6192,731.353,0.324421,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0089.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0089.json deleted file mode 100644 index fb5c245..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0089.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.086,594.614,0.714684,773.492,578.763,0.532093,757.605,573.55,0.698019,0,0,0,704.957,547.293,0.657366,773.271,594.582,0.672941,610.347,610.308,0.746095,867.971,578.836,0.430394,457.951,705.033,0.67493,967.822,605.242,0.43001,473.637,773.279,0.665614,652.546,873.295,0.737732,568.308,862.725,0.747879,636.578,1067.71,0.790944,568.331,1062.48,0.769309,515.732,1115.01,0.686459,505.139,1209.7,0.706851,694.537,605.211,0.706589,799.698,494.745,0.630774,521.028,1204.49,0.401304,526.266,1183.48,0.371963,489.505,1109.8,0.589666,520.882,1288.67,0.72484,489.459,1283.31,0.695054,484.195,1214.99,0.513011],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.282,336.927,0.478085,89.9092,326.486,0.463928,68.8842,321.345,0.470561,100.451,331.755,0.402464,58.3007,321.31,0.338842,116.11,389.608,0.55752,0,0,0,110.929,452.636,0.536088,13.6559,442.123,0.442151,68.9852,405.423,0.481768,13.5379,489.436,0.320269,89.9219,515.79,0.570948,0,0,0,74.0571,620.835,0.526503,13.5854,615.718,0.551099,63.6536,725.896,0.520235,10.9725,710.242,0.516729,79.3708,368.495,0.456186,84.7304,284.338,0.4496,58.2929,741.9,0.384757,68.8612,747.034,0.412005,68.9054,731.41,0.479834,13.574,736.59,0.31458,13.6052,731.343,0.331066,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0090.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0090.json deleted file mode 100644 index ea8b892..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0090.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[762.858,599.841,0.715987,773.405,578.872,0.569761,752.276,573.684,0.686856,768.086,578.833,0.0594758,699.745,557.755,0.666629,773.332,594.575,0.656706,610.46,610.322,0.741395,705.017,773.381,0.198836,473.627,710.262,0.674092,741.798,868.006,0.184838,463.182,778.596,0.680247,657.648,873.234,0.74145,568.33,862.661,0.744538,641.883,1067.77,0.78834,568.259,1062.43,0.744731,526.181,1125.59,0.670854,494.783,1215,0.699458,694.568,610.43,0.693222,794.4,499.991,0.600268,547.304,1209.74,0.452962,557.784,1199.17,0.444494,510.397,1115.13,0.542238,515.748,1288.61,0.710745,484.224,1283.26,0.683738,479.013,1220.27,0.523229],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[74.1797,331.789,0.493617,89.8902,326.402,0.479621,68.8449,321.274,0.488798,100.44,331.717,0.414571,58.2696,321.251,0.346354,111.006,389.623,0.569282,0,0,0,110.899,452.652,0.546462,13.6643,442.102,0.456109,74.0339,405.427,0.486169,13.5515,484.225,0.326351,89.9026,515.804,0.57965,0,0,0,68.9253,620.844,0.535361,13.6046,615.719,0.561526,63.6195,720.825,0.530155,10.9818,710.257,0.523251,79.3575,363.39,0.471138,84.6945,284.363,0.452352,58.2927,741.843,0.394296,68.8611,741.935,0.422625,68.8745,731.402,0.487664,13.5784,736.579,0.317928,13.6075,731.337,0.334097,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0091.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0091.json deleted file mode 100644 index c41da8d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0091.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[762.855,604.997,0.663811,773.381,584.046,0.525715,752.275,578.893,0.64207,0,0,0,699.793,563.026,0.640511,773.393,589.422,0.627428,610.43,610.442,0.683776,862.698,568.313,0.575449,473.632,725.977,0.650175,973.196,578.788,0.592422,463.146,789.216,0.627288,662.947,873.318,0.680884,568.419,862.78,0.70585,641.966,1067.88,0.746211,568.231,1062.56,0.701958,526.353,1141.31,0.644029,494.763,1209.75,0.669354,694.589,615.609,0.665974,794.419,510.419,0.583415,552.536,1225.5,0.51776,568.203,1204.55,0.51735,510.481,1125.61,0.534467,515.727,1283.25,0.680347,484.173,1272.84,0.652805,479.013,1209.8,0.48444],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3158,331.773,0.475925,89.937,326.382,0.463382,68.904,321.252,0.469635,100.469,331.701,0.398366,58.308,321.254,0.338971,116.113,389.601,0.546351,0,0,0,110.924,452.62,0.530062,13.6536,442.099,0.434897,74.0289,405.483,0.473517,13.5371,484.207,0.307849,89.8975,515.787,0.557351,0,0,0,68.9143,620.818,0.516428,13.5972,615.699,0.538386,63.635,720.81,0.510005,10.984,710.239,0.507737,79.3944,363.355,0.457449,84.7174,279.282,0.443433,58.2677,741.826,0.382285,68.82,741.922,0.409842,68.8829,731.382,0.474071,13.5867,736.579,0.308517,13.6184,731.332,0.326115,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0092.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0092.json deleted file mode 100644 index 9da04c0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0092.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.012,610.31,0.658355,773.483,589.413,0.524277,752.31,589.399,0.634906,0,0,0,699.767,568.256,0.634779,773.414,589.385,0.587852,610.41,615.703,0.651171,0,0,0,473.624,731.341,0.624334,752.321,857.438,0.0583065,463.203,810.153,0.618249,673.516,878.448,0.645875,573.538,862.811,0.668058,647.191,1067.89,0.695325,563.126,1062.44,0.66503,547.324,1151.99,0.611847,494.739,1209.79,0.630918,694.564,620.827,0.646197,799.619,515.651,0.562029,563.093,1236.07,0.554463,578.74,1225.49,0.529458,515.824,1146.7,0.51767,515.761,1278.15,0.657349,484.118,1272.82,0.634545,479.026,1209.77,0.484259],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3376,331.768,0.484722,89.9501,326.387,0.470592,68.9355,321.25,0.478795,100.474,331.694,0.399838,58.3375,321.244,0.347474,116.109,389.61,0.555119,0,0,0,110.921,452.625,0.533751,13.657,442.104,0.442985,74.0305,405.447,0.476968,13.5306,484.245,0.315383,89.9133,515.792,0.567541,0,0,0,68.9443,620.824,0.52596,13.5989,615.704,0.547037,63.6514,720.83,0.518427,10.9763,710.232,0.51743,79.3895,363.343,0.465911,89.7749,279.296,0.450685,58.2543,741.871,0.386642,68.8039,747.002,0.41367,68.9024,731.41,0.481128,13.577,736.586,0.316752,13.6099,731.34,0.334876,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0093.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0093.json deleted file mode 100644 index af74337..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0093.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[762.896,615.675,0.640779,773.408,599.9,0.495648,747.161,599.869,0.627377,0,0,0,699.745,573.491,0.631619,778.519,589.367,0.600963,610.463,615.717,0.650223,868.021,568.185,0.578695,473.648,736.519,0.618183,983.68,568.4,0.611037,463.109,815.467,0.655967,678.69,873.322,0.641962,573.556,862.819,0.643586,652.453,1067.86,0.698214,563.11,1062.42,0.657243,563.085,1167.69,0.626082,494.647,1214.94,0.631668,694.559,626.098,0.636936,799.598,520.915,0.5421,573.531,1241.4,0.583704,594.494,1236.02,0.573635,526.214,1167.65,0.519008,515.766,1283.27,0.655249,479.063,1277.97,0.631302,478.996,1214.98,0.522805],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3152,331.769,0.483052,89.9393,326.388,0.469713,68.916,321.245,0.477244,100.475,331.708,0.400552,58.3286,321.23,0.334402,116.114,389.621,0.554835,0,0,0,110.912,452.617,0.535556,13.6685,442.104,0.440889,74.0229,405.447,0.477955,13.5435,484.249,0.314292,89.9091,515.8,0.567037,0,0,0,68.9391,620.826,0.524834,13.6021,615.705,0.547045,63.6419,725.89,0.517277,10.9804,710.244,0.513351,79.4038,363.357,0.46208,89.7886,279.27,0.449886,58.2636,741.861,0.386738,68.8093,746.995,0.414538,68.8881,731.413,0.480648,13.5793,736.582,0.311569,13.6106,731.337,0.328639,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0094.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0094.json deleted file mode 100644 index e744b9a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0094.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[762.909,615.734,0.634445,773.423,604.978,0.499704,752.254,599.902,0.621153,0,0,0,699.733,573.471,0.632659,778.538,589.329,0.609408,610.434,620.855,0.64816,867.942,563.13,0.621559,478.817,736.567,0.615135,983.769,568.317,0.66221,463.115,820.708,0.667186,683.91,878.436,0.654475,573.637,862.835,0.649386,652.519,1073.02,0.692434,568.239,1062.51,0.696755,573.525,1193.86,0.675506,499.905,1209.76,0.647774,694.527,626.109,0.629505,799.588,521.014,0.526342,594.52,1262.33,0.585764,610.325,1246.57,0.633248,552.434,1193.87,0.565821,515.811,1283.33,0.66367,484.23,1277.96,0.638925,484.233,1214.98,0.569786],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.2896,331.761,0.465157,89.9227,326.373,0.45514,68.9018,321.232,0.459027,100.477,331.671,0.393549,58.3242,321.201,0.315546,116.121,389.601,0.529736,0,0,0,110.911,452.618,0.51903,13.671,442.085,0.415378,74.0238,405.42,0.469321,13.5517,484.21,0.292305,89.9081,515.801,0.541667,0,0,0,68.9226,620.829,0.502006,13.6006,615.719,0.514846,63.6275,725.916,0.497125,13.5621,710.276,0.485133,79.4133,363.335,0.446311,89.7596,279.227,0.437369,58.2633,741.885,0.374221,68.8036,747.01,0.401975,68.8571,736.425,0.462766,13.5964,736.605,0.294426,13.6288,731.357,0.309178,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0095.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0095.json deleted file mode 100644 index 4e950a1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0095.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.071,615.744,0.645757,778.516,605.007,0.476683,757.512,605.014,0.622344,0,0,0,699.813,573.524,0.632635,778.651,589.292,0.611632,610.435,620.951,0.655787,873.235,568.159,0.607308,473.67,741.805,0.635826,994.16,568.327,0.638557,463.154,825.922,0.673483,689.094,878.567,0.673318,573.679,868.027,0.661562,657.695,1073.17,0.675688,568.191,1067.71,0.702878,578.893,1204.46,0.695828,499.89,1209.72,0.666311,694.576,626.162,0.635358,799.697,520.924,0.534601,605.201,1278.17,0.615298,620.898,1262.37,0.627537,562.959,1204.42,0.625663,520.92,1283.39,0.690173,484.262,1278.01,0.656465,484.234,1209.76,0.594396],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3053,331.777,0.503515,89.9236,326.39,0.484516,68.8847,321.251,0.501345,100.457,331.694,0.405685,58.2779,321.243,0.369359,111.011,389.61,0.571096,0,0,0,110.932,452.6,0.554252,13.6776,442.103,0.461099,74.0547,405.445,0.489356,13.5566,484.234,0.332244,89.8973,515.781,0.585299,10.9879,515.653,0.595841,68.9039,615.728,0.539468,13.6184,615.667,0.559495,63.6222,720.82,0.52718,10.9829,710.266,0.519248,79.3538,363.343,0.477954,89.7634,279.265,0.464958,58.3151,741.84,0.390024,68.8568,741.915,0.420472,68.8641,731.382,0.486959,13.5807,736.582,0.316186,13.6109,731.339,0.331979,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0096.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0096.json deleted file mode 100644 index db170d1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0096.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[768.117,615.72,0.649603,778.525,599.91,0.457697,757.551,604.987,0.620998,0,0,0,704.981,573.536,0.629057,783.815,584.153,0.625063,615.572,626.084,0.673448,883.731,568.273,0.624911,473.735,741.841,0.64702,999.415,568.362,0.63247,468.355,831.141,0.67264,689.14,878.583,0.698444,578.778,868.067,0.685815,657.793,1078.33,0.685963,563.123,1067.83,0.715158,589.372,1215.04,0.69334,499.935,1209.77,0.68265,694.629,626.123,0.635119,804.864,520.936,0.520273,615.633,1283.47,0.626202,636.587,1277.96,0.64643,568.29,1215.04,0.651354,520.912,1283.34,0.697277,484.287,1272.88,0.661953,489.392,1214.94,0.600159],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3319,331.744,0.456596,89.956,321.355,0.448103,68.9363,321.215,0.450688,100.48,331.671,0.38462,58.3266,321.199,0.324259,116.142,389.61,0.513958,0,0,0,110.931,452.643,0.506418,13.6552,442.101,0.403914,74.0466,405.444,0.460524,13.5535,484.229,0.282189,89.9217,515.826,0.525237,0,0,0,68.9558,620.863,0.487387,13.5926,615.732,0.492784,63.6369,725.935,0.483123,13.5626,710.294,0.468277,79.411,363.312,0.436749,89.7496,279.205,0.434393,58.2554,741.902,0.365158,68.8088,747.039,0.392321,68.8735,736.447,0.45095,13.604,736.617,0.278595,13.6385,731.355,0.293611,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0097.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0097.json deleted file mode 100644 index ee423d6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0097.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.229,615.709,0.653476,778.699,599.892,0.514724,757.569,599.886,0.627365,0,0,0,699.882,573.523,0.62237,789.107,589.35,0.619506,615.564,620.968,0.670401,883.845,568.336,0.609839,473.708,741.82,0.650573,999.507,568.417,0.619769,463.218,825.994,0.680125,689.22,883.748,0.704807,578.798,868.037,0.683128,668.195,1083.58,0.684443,563.11,1067.81,0.724927,599.86,1235.91,0.719496,499.993,1214.97,0.677987,699.698,631.348,0.624377,804.868,515.757,0.526458,626.163,1299.11,0.640169,641.994,1283.42,0.68057,573.642,1235.95,0.68888,520.897,1283.39,0.688217,484.264,1277.97,0.662127,489.493,1215.04,0.592541],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3553,331.691,0.458237,89.9649,321.309,0.449915,68.9499,321.179,0.451549,100.47,331.635,0.377235,58.3406,321.207,0.334939,116.124,389.605,0.518905,0,0,0,110.927,452.621,0.511267,13.6528,442.095,0.412744,74.0431,405.434,0.464579,13.5508,484.232,0.286125,89.9027,515.829,0.530235,0,0,0,68.9305,620.862,0.495088,13.5923,615.73,0.507,63.5908,725.913,0.487813,13.5593,710.286,0.478164,79.3946,363.278,0.44146,89.7572,279.221,0.432076,58.2824,741.889,0.368557,68.8039,747.004,0.393789,68.8143,731.422,0.452902,13.5988,736.609,0.285976,13.6351,731.346,0.300963,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0098.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0098.json deleted file mode 100644 index 3576a2e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0098.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.264,620.869,0.634413,778.733,605.002,0.474098,762.774,605.009,0.605462,0,0,0,705.048,573.567,0.591353,794.388,589.382,0.600598,615.684,620.928,0.639894,899.464,568.403,0.606844,478.863,736.621,0.632606,1004.71,573.545,0.607758,463.232,825.961,0.677087,694.374,883.726,0.67862,584.054,868.041,0.643999,678.737,1088.76,0.658414,568.223,1067.92,0.701051,605.139,1241.16,0.718804,499.98,1209.68,0.645651,699.766,631.348,0.614243,810.07,515.764,0.508426,631.384,1309.59,0.650322,647.148,1293.87,0.678731,578.911,1241.24,0.677381,520.897,1283.33,0.665756,484.256,1272.8,0.632578,489.487,1209.73,0.571199],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3966,331.709,0.499672,94.9978,321.319,0.485996,68.968,321.206,0.495964,100.474,331.647,0.390236,58.3067,321.224,0.384612,116.114,389.586,0.560612,0,0,0,110.953,452.593,0.541942,16.1649,442.079,0.455679,74.0592,405.439,0.483298,13.5552,484.19,0.320584,89.9231,515.776,0.574697,0,0,0,74.0315,615.741,0.531232,13.6069,615.665,0.553167,63.6369,725.885,0.521977,10.9808,710.255,0.514861,79.3642,363.3,0.476784,89.783,279.243,0.460008,58.3409,741.891,0.389833,68.8773,747.004,0.415298,68.8555,731.391,0.483401,13.5848,736.591,0.312959,13.6157,731.334,0.32752,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0099.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0099.json deleted file mode 100644 index dae5988..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam1_json/cam01.0099.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[773.403,615.649,0.644544,783.97,599.788,0.491066,762.922,599.817,0.612084,0,0,0,710.302,573.462,0.590587,804.88,594.6,0.607158,620.841,620.874,0.635664,899.584,573.628,0.595723,478.894,736.487,0.641191,1004.78,578.751,0.586034,463.167,825.924,0.677808,694.529,883.745,0.669807,589.284,868.028,0.637858,683.882,1088.85,0.660378,568.194,1067.91,0.691188,610.376,1246.5,0.707594,500.043,1209.77,0.651621,704.986,631.345,0.61676,810.126,515.638,0.539058,636.612,1314.94,0.646498,647.317,1304.44,0.674256,589.336,1246.64,0.663467,520.942,1283.42,0.676651,484.313,1277.96,0.640584,489.533,1214.96,0.568569],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[79.3709,331.684,0.486521,89.9762,321.297,0.475235,68.9439,321.187,0.480357,100.456,331.641,0.388759,58.3171,321.199,0.362533,111.015,389.581,0.554022,0,0,0,110.95,452.596,0.539947,13.6788,442.055,0.441287,74.0483,405.431,0.483182,13.5645,484.192,0.30836,89.9256,515.778,0.570037,0,0,0,74.0241,615.729,0.527837,13.6004,615.66,0.550886,63.6323,720.825,0.518657,10.9754,710.228,0.515794,79.3689,363.275,0.46634,89.7738,279.264,0.446455,58.2965,741.865,0.385568,68.8271,746.994,0.412095,68.8706,731.398,0.480534,13.5868,736.583,0.310859,13.6198,731.319,0.327122,0,0,0],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0000.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0000.json deleted file mode 100644 index 724669b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0000.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[536.836,473.721,0.636131,562.951,452.74,0.642266,526.183,457.964,0.653373,578.892,452.635,0.633947,515.722,463.15,0.358828,636.698,521.096,0.698963,505.3,547.312,0.66239,694.372,626.115,0.679982,478.888,641.901,0.686716,731.304,720.704,0.65624,436.916,736.473,0.671633,626.139,747.128,0.658393,547.242,752.345,0.646544,589.413,899.581,0.696189,568.369,899.44,0.64145,578.894,1067.74,0.693769,615.579,1009.95,0.606039,568.23,515.636,0.704291,531.554,400.075,0.668078,552.504,1109.83,0.603711,568.422,1115.02,0.679579,594.533,1083.59,0.597132,594.579,1067.75,0.375092,589.374,1052.07,0.360138,631.453,1020.48,0.510225],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.82,526.206,0.357204,810.152,520.994,0.348673,794.431,520.992,0.323618,820.477,521.009,0.263127,799.664,520.896,0.183098,831.104,563.074,0.434747,778.671,563.082,0.443211,815.556,610.513,0.389643,778.709,610.551,0.376229,810.024,578.898,0.334505,778.487,652.561,0.24842,820.723,668.262,0.41315,789.095,673.484,0.405156,825.923,762.851,0.378492,799.598,762.83,0.352146,831.158,846.98,0.321483,810.038,836.493,0.314986,810.224,552.589,0.368323,804.865,484.378,0.345026,815.559,862.823,0.275414,826.037,862.813,0.273712,836.397,857.472,0.28463,783.916,857.514,0.250956,778.736,857.322,0.262415,815.214,852.28,0.26238],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0001.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0001.json deleted file mode 100644 index eab6f29..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0001.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[542.048,473.711,0.636351,563.038,452.731,0.650011,526.266,457.947,0.6524,584.086,452.691,0.631192,515.8,463.148,0.32822,641.8,526.171,0.694102,510.452,547.268,0.662345,694.4,631.352,0.677503,478.877,636.727,0.681021,731.271,720.796,0.648399,436.818,731.179,0.659322,620.848,752.285,0.663742,541.975,752.343,0.647094,589.321,904.757,0.698044,568.27,899.509,0.628397,578.903,1067.79,0.695028,610.497,1004.75,0.589875,568.31,515.64,0.706381,536.831,400.064,0.661852,552.589,1109.91,0.617627,573.53,1115.07,0.690219,589.424,1088.78,0.595919,594.592,1062.57,0.373879,594.546,1051.99,0.36274,631.368,1020.37,0.501429],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.827,526.258,0.312342,810.154,521.047,0.302433,799.63,521.045,0.267393,820.463,521.039,0.248327,810.062,520.938,0.156652,831.104,563.068,0.396741,778.795,563.058,0.404848,815.512,610.513,0.37317,778.643,610.547,0.357138,810.001,578.95,0.3229,773.438,657.726,0.251307,820.708,668.196,0.373203,789.112,673.382,0.37162,820.863,762.806,0.333762,794.387,762.797,0.320613,831.146,846.931,0.273697,804.888,836.435,0.27686,815.163,552.539,0.313866,804.845,484.425,0.277669,815.374,862.705,0.243062,825.872,862.728,0.237359,836.496,857.414,0.243767,778.681,857.321,0.22238,778.541,852.154,0.234041,810.185,852.188,0.227597],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0002.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0002.json deleted file mode 100644 index b21128b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0002.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[557.735,473.661,0.647003,568.265,452.68,0.666655,531.538,457.919,0.645634,589.305,452.656,0.606613,520.924,463.152,0.447461,641.891,526.222,0.693668,510.474,542.06,0.662038,694.428,636.59,0.684746,478.844,636.679,0.681587,731.314,726.062,0.665333,436.758,725.998,0.661305,620.879,752.265,0.662626,536.771,752.286,0.650102,584.044,904.844,0.686941,568.297,899.558,0.619721,578.827,1072.96,0.682191,615.584,1004.71,0.568088,568.34,515.632,0.711463,547.311,400.049,0.663886,552.495,1115.15,0.604317,573.482,1120.29,0.669531,589.301,1094.08,0.591121,594.611,1062.53,0.369746,594.573,1051.95,0.364198,631.398,1015.15,0.48804],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.921,521.138,0.362557,810.205,520.859,0.340976,799.679,520.858,0.321486,820.489,520.868,0.255005,804.84,515.865,0.197797,826.041,563.049,0.437821,778.725,563.062,0.445531,815.531,610.54,0.385558,778.702,610.524,0.387836,810.039,578.804,0.311288,778.569,652.592,0.259169,820.666,673.42,0.421084,789.09,673.535,0.41063,820.913,762.863,0.394207,799.636,762.878,0.36443,826.112,852.124,0.331891,804.833,841.712,0.314504,815.146,547.362,0.381666,810,484.234,0.373913,815.531,862.838,0.282808,825.97,862.854,0.284114,831.299,857.548,0.296704,783.808,857.567,0.253527,778.679,857.358,0.260192,810.073,857.37,0.26803],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0003.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0003.json deleted file mode 100644 index 14600e1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0003.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[557.716,473.615,0.641464,568.273,452.617,0.665672,531.561,457.828,0.639781,594.509,452.658,0.622184,521.015,457.979,0.324289,641.963,526.247,0.694465,515.635,542.021,0.662521,694.439,636.667,0.6804,473.74,636.594,0.673499,731.292,731.21,0.659987,431.539,720.766,0.653,615.731,747.121,0.660443,536.755,747.14,0.646622,578.92,899.652,0.699484,568.204,899.499,0.646798,578.832,1067.77,0.692001,615.558,1004.76,0.592889,568.453,515.613,0.708686,552.559,400.036,0.662641,547.332,1109.91,0.604175,568.406,1115.06,0.676775,589.404,1083.62,0.594421,594.573,1062.49,0.36395,594.536,1046.77,0.355333,631.465,1015.26,0.50678],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.808,526.158,0.295147,810.149,520.959,0.288362,799.606,520.96,0.250212,820.478,520.974,0.246652,810.082,520.916,0.140133,826.077,563.034,0.371903,783.798,563.025,0.378506,815.456,610.529,0.368329,778.663,610.521,0.340399,809.999,578.844,0.307532,778.409,657.61,0.247465,820.687,668.185,0.351026,789.094,673.385,0.344917,820.833,762.824,0.294293,794.388,762.818,0.278599,826.08,847.019,0.247602,799.703,836.479,0.24062,815.194,552.482,0.286126,804.816,484.315,0.251772,815.257,862.725,0.223265,820.828,862.788,0.22135,836.412,857.454,0.225372,773.472,857.271,0.193157,773.456,852.094,0.201997,810.057,852.267,0.197113],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0004.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0004.json deleted file mode 100644 index b0c4a09..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0004.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[557.76,473.588,0.5802,568.292,452.615,0.608443,536.774,452.733,0.555311,594.552,452.673,0.622715,526.226,457.894,0.316576,641.888,526.302,0.640073,520.847,536.839,0.594207,694.449,636.695,0.598838,473.624,631.42,0.570187,731.37,731.286,0.583647,426.31,715.532,0.554139,615.605,752.26,0.633389,536.826,752.294,0.613368,578.776,904.789,0.680709,568.297,899.547,0.641476,578.748,1067.88,0.671108,615.558,1004.77,0.583371,573.521,515.613,0.709962,557.799,400.028,0.669328,547.339,1114.99,0.573179,568.322,1115.12,0.634953,584.169,1094.04,0.576853,594.601,1062.52,0.374841,594.578,1046.8,0.360742,631.451,1015.23,0.505073],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.818,526.153,0.295206,810.14,520.958,0.282804,799.621,520.947,0.250107,820.471,520.971,0.243517,810.048,520.899,0.151211,831.136,563.048,0.366912,778.678,562.979,0.409577,820.659,610.539,0.335337,778.443,610.508,0.413621,810.046,573.77,0.289431,773.223,662.914,0.320309,820.691,668.171,0.359275,784.006,673.425,0.361705,820.882,762.817,0.305522,794.429,762.841,0.292922,831.155,852.055,0.25237,804.948,841.618,0.248457,815.194,552.46,0.291682,804.807,484.285,0.260921,815.411,862.819,0.226099,825.943,862.859,0.219287,836.523,857.486,0.225583,778.651,857.302,0.191642,778.548,852.147,0.202265,810.222,852.288,0.2005],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0005.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0005.json deleted file mode 100644 index 8ad2e90..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0005.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[563.089,473.699,0.648743,573.524,452.716,0.650338,547.28,457.895,0.614356,599.882,452.638,0.610358,526.305,457.873,0.370934,647.07,526.317,0.6768,515.742,536.781,0.655396,694.485,641.842,0.671947,468.457,626.219,0.644906,731.341,731.387,0.64724,415.866,705.048,0.636419,615.574,752.3,0.647481,531.512,752.295,0.646425,578.753,904.763,0.681918,563.043,899.524,0.633283,578.749,1067.86,0.670142,610.42,1004.72,0.593642,573.599,515.631,0.701762,563.108,399.997,0.681817,552.528,1114.97,0.57607,568.422,1115.1,0.639704,584.187,1088.86,0.566059,594.606,1067.72,0.391592,594.554,1052.06,0.379712,631.337,1015.16,0.507386],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.848,521.152,0.332411,810.129,520.856,0.312905,799.676,520.877,0.276523,815.574,520.849,0.257593,810.066,520.893,0.173041,826.031,563.02,0.415597,778.789,563.007,0.429779,815.54,610.515,0.376181,778.645,610.507,0.389712,810.044,578.82,0.308681,773.384,657.711,0.275144,820.685,668.234,0.408457,789.097,673.451,0.406804,820.911,762.784,0.363809,799.57,762.818,0.334438,831.199,846.99,0.290199,804.813,841.666,0.287118,815.176,547.265,0.326717,804.903,484.253,0.305582,815.504,862.769,0.249169,825.993,862.772,0.24464,836.524,857.442,0.25744,778.573,857.341,0.225782,778.483,852.137,0.235604,810.062,857.288,0.239744],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0006.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0006.json deleted file mode 100644 index de7051f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0006.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[568.243,473.68,0.667456,573.701,452.727,0.659467,552.585,457.871,0.633225,605.102,452.666,0.592906,526.352,452.764,0.415937,647.181,526.337,0.680978,515.725,536.791,0.667795,694.535,641.903,0.682438,468.397,626.194,0.653028,731.354,736.491,0.655597,410.632,699.877,0.66638,610.47,752.304,0.657306,526.346,752.335,0.659635,573.647,904.848,0.678752,562.945,899.603,0.628709,573.628,1073.07,0.668445,610.458,1004.68,0.607656,573.682,515.635,0.693503,568.308,399.961,0.692193,547.248,1115.1,0.571672,568.3,1120.27,0.632407,584.057,1099.37,0.569845,594.613,1067.78,0.412632,594.548,1052.07,0.402856,631.392,1009.98,0.525861],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.872,521.191,0.349557,810.168,520.901,0.329971,799.641,520.907,0.304564,815.604,520.917,0.254978,804.816,520.91,0.186304,826.036,563.067,0.428448,778.779,563.073,0.436672,815.538,610.526,0.385448,778.72,610.524,0.377415,810.093,578.81,0.32074,773.451,657.66,0.258264,820.677,668.279,0.410121,789.096,673.49,0.406373,825.918,762.744,0.373079,799.646,762.771,0.345282,831.283,846.922,0.299766,804.857,836.449,0.301142,815.162,552.49,0.358542,804.951,484.275,0.341567,820.612,862.764,0.26231,831.228,862.728,0.25391,836.519,857.389,0.266493,778.723,852.198,0.237892,778.577,846.983,0.251864,810.1,852.242,0.258016],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0007.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0007.json deleted file mode 100644 index 475cd11..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0007.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[568.245,473.653,0.587184,578.773,452.732,0.58096,557.817,457.817,0.544462,605.115,452.701,0.611183,542.01,452.73,0.313714,647.122,526.415,0.607074,520.976,531.565,0.580989,694.626,647.074,0.578144,468.346,620.912,0.508833,731.343,736.678,0.547409,405.369,694.617,0.522801,610.341,752.281,0.618953,531.502,752.309,0.615531,573.552,904.819,0.66411,562.971,899.52,0.626598,573.666,1073,0.66013,610.397,1004.71,0.574647,578.852,515.636,0.697116,568.422,399.972,0.691959,547.27,1115.06,0.553052,568.309,1115.2,0.614783,584.1,1099.29,0.562414,599.729,1067.7,0.399346,594.585,1052.04,0.390023,631.328,1009.99,0.48871],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.931,521.176,0.348984,810.226,520.878,0.334733,799.717,520.903,0.29952,820.5,520.906,0.264075,804.87,520.932,0.184889,831.137,563.098,0.424922,778.654,563.003,0.468684,820.813,610.535,0.351829,778.459,610.505,0.46549,810.198,573.733,0.311609,773.242,663.009,0.345393,820.722,668.256,0.41757,784.004,673.465,0.414623,825.867,762.717,0.38272,799.64,762.733,0.353498,831.217,846.872,0.305053,810.115,831.218,0.308674,815.194,547.357,0.353231,804.972,484.259,0.331862,815.543,862.735,0.261106,826.042,862.714,0.258351,836.517,857.384,0.269726,783.813,847.012,0.237589,778.684,841.748,0.252018,815.299,852.051,0.249513],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0008.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0008.json deleted file mode 100644 index 903952c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0008.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[573.537,468.488,0.615772,589.267,452.647,0.602958,563.151,452.676,0.603536,610.448,452.718,0.572377,552.498,452.7,0.389618,647.304,531.554,0.627629,520.906,531.516,0.629663,694.656,647.189,0.634797,463.148,615.726,0.576114,731.333,741.823,0.604488,400.172,694.359,0.619093,610.311,752.363,0.630557,526.335,752.401,0.640083,568.374,910.009,0.658778,552.501,899.609,0.592951,573.647,1072.96,0.666246,610.278,999.393,0.57809,584.018,515.639,0.694461,573.718,394.943,0.686896,547.282,1115.09,0.567242,568.383,1115.2,0.634713,584.098,1094.06,0.547985,599.762,1062.52,0.379557,594.563,1051.95,0.370819,626.132,999.471,0.504704],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[810.044,521.176,0.381805,815.276,520.9,0.369253,804.82,520.891,0.345826,820.576,520.947,0.274949,799.636,520.912,0.217343,831.176,563.119,0.450784,778.637,563.07,0.484107,820.742,615.58,0.39051,778.482,610.488,0.442977,815.249,573.753,0.320659,773.317,662.881,0.308277,820.698,673.409,0.45432,783.949,673.524,0.445186,825.899,762.781,0.428277,799.684,762.821,0.398809,831.174,846.967,0.348911,810.081,836.476,0.353375,815.169,552.513,0.375062,810.074,484.221,0.368741,820.709,862.792,0.288616,831.266,862.745,0.285972,831.281,857.5,0.305103,783.931,852.287,0.26991,778.758,852.109,0.28326,810.176,852.272,0.298168],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0009.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0009.json deleted file mode 100644 index 571e94d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0009.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[573.73,473.703,0.590536,594.595,457.912,0.57372,568.333,457.856,0.585697,615.642,457.948,0.551778,557.796,452.725,0.425888,652.38,536.778,0.610718,520.993,531.466,0.620309,699.691,652.409,0.620104,463.151,610.377,0.571608,731.277,752.37,0.591408,400.073,689.097,0.58952,605.129,752.273,0.627761,526.238,747.115,0.634621,568.276,904.819,0.665402,536.8,899.475,0.613032,573.573,1073.04,0.666665,605.222,999.456,0.584317,584.12,515.739,0.699524,584.063,399.961,0.687987,542.03,1115.05,0.553306,568.222,1115.2,0.618931,584.033,1099.33,0.55199,599.732,1062.56,0.376448,594.536,1051.97,0.369147,626.103,1004.65,0.510112],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.931,526.162,0.383267,815.227,520.938,0.376213,799.645,520.937,0.341649,820.55,520.991,0.293391,794.351,520.949,0.209671,831.201,563.154,0.447709,778.557,563.072,0.489701,820.784,615.585,0.385984,773.382,610.435,0.451444,815.261,573.701,0.334467,773.198,662.985,0.312011,820.721,673.428,0.449903,783.887,673.497,0.44228,825.907,762.81,0.422147,799.609,762.801,0.385302,831.235,846.949,0.341495,810.15,836.461,0.346457,815.149,552.569,0.372689,809.994,484.258,0.363266,820.586,862.78,0.278401,831.158,862.781,0.278573,836.51,857.534,0.299524,783.86,852.178,0.264605,778.715,846.943,0.278623,815.269,852.2,0.283722],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0010.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0010.json deleted file mode 100644 index fefd4de..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0010.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[578.849,478.809,0.559184,599.774,463.109,0.538631,568.451,457.937,0.551993,620.843,463.088,0.539181,563.097,457.854,0.376738,652.42,542.041,0.574856,526.166,526.384,0.587466,699.76,652.548,0.558747,457.856,605.222,0.508916,731.271,762.77,0.529147,394.849,673.414,0.498405,599.924,752.315,0.614877,526.29,752.264,0.62043,568.192,910.09,0.634526,531.606,899.567,0.613248,573.65,1072.94,0.661457,605.212,999.514,0.57482,589.405,515.786,0.687765,589.313,399.953,0.686349,542.08,1115.02,0.54627,568.311,1115.14,0.616172,584.127,1094.04,0.543642,594.526,1067.73,0.338645,578.892,1052.02,0.333564,626.112,1004.64,0.506426],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.877,526.151,0.37897,810.194,520.927,0.37123,799.62,520.934,0.329596,815.6,520.969,0.302172,789.132,520.938,0.203866,831.136,563.141,0.455485,778.523,563.038,0.505893,825.971,610.57,0.3751,773.28,610.456,0.483505,815.246,578.763,0.337171,768.014,668.255,0.334263,820.686,673.395,0.454891,783.833,673.453,0.447474,820.89,762.781,0.427367,794.41,762.739,0.391883,831.156,846.905,0.349781,810.118,836.508,0.352805,815.144,552.527,0.371845,804.905,484.263,0.356752,815.432,862.69,0.285022,825.907,862.734,0.287273,836.469,857.5,0.304915,778.744,852.098,0.26758,778.686,846.883,0.280251,815.25,852.219,0.285702],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0011.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0011.json deleted file mode 100644 index 1a91109..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0011.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[584.168,473.728,0.610023,605.091,457.92,0.599756,573.656,457.827,0.607942,631.308,457.973,0.519438,568.223,452.754,0.417152,657.65,547.294,0.601434,521.146,526.246,0.635055,699.78,657.797,0.605115,457.986,599.933,0.574336,731.194,768.064,0.597865,394.734,657.656,0.5898,599.898,757.548,0.631443,526.192,752.334,0.645537,563.028,910.078,0.636138,526.307,904.809,0.623336,573.613,1072.95,0.667353,605.103,999.409,0.585294,594.603,515.734,0.68828,599.774,399.991,0.689463,542.069,1115.17,0.552747,568.373,1115.23,0.625452,584.118,1094.02,0.543389,589.345,1067.74,0.339062,578.856,1052.02,0.330744,620.927,999.411,0.522966],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.901,521.17,0.396415,810.216,520.893,0.385204,799.621,520.888,0.351915,815.6,520.934,0.299195,789.155,520.897,0.219394,831.138,563.104,0.4584,778.548,563.021,0.502132,825.951,610.538,0.391653,773.421,610.364,0.454282,815.28,573.751,0.353846,768.067,668.148,0.304763,820.641,668.264,0.467517,778.776,673.437,0.46339,820.852,762.782,0.437132,799.568,762.755,0.405516,831.169,846.848,0.364067,810.165,841.64,0.372561,810.242,552.497,0.381646,804.954,484.204,0.374185,815.354,862.687,0.2847,820.796,862.739,0.292049,836.492,857.446,0.316343,783.807,852.221,0.279081,778.75,847.009,0.289065,815.271,852.23,0.307523],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0012.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0012.json deleted file mode 100644 index 59ea68b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0012.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[599.886,478.832,0.472897,615.535,458.023,0.466972,584.083,457.985,0.454004,631.389,463.206,0.531402,573.499,457.953,0.51167,652.533,552.561,0.510057,526.348,526.246,0.530919,699.9,668.164,0.45834,457.858,599.727,0.441949,731.198,773.254,0.466153,394.643,647.21,0.480168,594.65,757.59,0.603146,526.209,752.331,0.591678,557.706,915.264,0.618078,526.291,910.052,0.601399,573.613,1067.92,0.650473,605.15,999.377,0.567522,599.793,515.823,0.690238,605.138,400.078,0.686398,552.489,1115.14,0.540865,568.434,1115.18,0.605712,584.091,1088.83,0.512876,594.513,1067.75,0.341204,584.072,1052.03,0.332194,620.926,994.26,0.520178],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.979,526.151,0.364125,815.231,520.932,0.350789,804.807,520.922,0.319096,815.605,521.016,0.276349,789.116,515.84,0.22346,831.132,563.121,0.442391,773.42,563.024,0.539664,836.472,610.458,0.348637,773.26,610.471,0.521582,815.299,578.753,0.325177,757.595,678.743,0.371837,820.661,668.19,0.457279,778.722,673.424,0.457744,820.833,762.749,0.42874,794.359,762.72,0.402976,831.149,841.724,0.346843,810.11,841.609,0.347674,810.248,552.507,0.353102,804.899,484.245,0.341357,815.44,862.688,0.282115,825.948,862.69,0.280176,836.47,857.376,0.302353,783.814,852.151,0.278221,778.695,846.939,0.28889,810.203,852.15,0.286246],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0013.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0013.json deleted file mode 100644 index 1177637..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0013.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[599.932,478.891,0.564121,615.581,463.158,0.551939,589.288,463.076,0.526372,636.708,463.226,0.528903,573.528,457.918,0.466674,662.969,557.758,0.577956,526.331,526.273,0.602852,699.848,673.42,0.552895,457.865,594.536,0.53126,726.113,773.407,0.530132,384.342,641.944,0.559543,594.52,762.811,0.634769,520.927,757.498,0.622999,547.324,910.137,0.615115,520.983,925.851,0.607412,573.605,1067.78,0.678541,599.838,994.145,0.577377,599.901,515.803,0.692616,605.214,400.067,0.686509,552.474,1115.14,0.575654,573.494,1115.14,0.649356,584.044,1078.31,0.528838,584.077,1062.56,0.338081,573.629,1051.96,0.331316,615.629,988.901,0.539671],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.885,526.168,0.381134,810.19,520.942,0.369275,799.603,520.919,0.336339,815.531,520.994,0.298697,789.076,515.858,0.219618,831.12,563.118,0.455676,773.441,563.038,0.517763,831.167,610.536,0.385319,773.239,610.429,0.460372,815.236,578.79,0.345602,757.661,673.52,0.325395,820.612,668.235,0.47494,778.721,673.42,0.475408,820.819,762.783,0.439147,789.177,762.714,0.424766,831.143,841.672,0.370503,804.943,836.438,0.380417,810.24,552.484,0.342868,804.879,484.222,0.335968,815.469,862.643,0.310309,825.925,862.626,0.305893,836.443,857.358,0.331802,778.714,852.167,0.305814,778.643,846.976,0.319684,810.142,852.176,0.326352],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0014.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0014.json deleted file mode 100644 index 42aa8a9..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0014.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[605.251,479.003,0.486775,620.961,468.389,0.470165,594.672,463.2,0.45495,641.851,473.566,0.54001,578.782,463.131,0.462219,662.971,562.981,0.524793,531.607,526.291,0.536633,699.872,678.75,0.475343,452.589,589.395,0.441605,731.163,778.726,0.463611,378.965,631.329,0.427241,584.099,762.787,0.624381,520.941,752.33,0.585346,536.721,915.29,0.625629,515.801,915.325,0.600372,573.589,1067.77,0.681473,594.638,999.381,0.572206,605.105,520.921,0.691298,610.495,400.185,0.657272,547.307,1115.1,0.57364,568.413,1115.09,0.641133,584.08,1078.34,0.53636,578.793,1062.57,0.341436,573.555,1052.05,0.332807,615.592,994.107,0.511298],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.908,526.137,0.365685,810.226,520.922,0.357587,799.657,520.909,0.317696,815.567,520.982,0.296678,778.619,515.815,0.223329,831.17,563.103,0.43955,773.345,562.998,0.542638,831.273,610.495,0.356772,773.226,610.461,0.508659,815.266,573.678,0.331638,757.587,683.906,0.356831,820.645,668.264,0.452186,778.62,673.448,0.452853,820.884,762.778,0.421813,794.371,762.725,0.392957,831.18,841.716,0.363029,810.121,841.717,0.36507,810.236,552.514,0.371656,804.879,484.217,0.368103,820.575,862.737,0.293648,826.019,862.694,0.289422,841.628,857.432,0.314139,783.956,857.37,0.287881,783.809,852.212,0.300234,815.258,857.327,0.303819],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0015.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0015.json deleted file mode 100644 index f6ee3a8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0015.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[610.235,484.093,0.483664,621.003,468.506,0.468988,599.812,468.36,0.44205,641.985,473.668,0.572316,584.047,468.363,0.35366,673.432,568.155,0.522056,536.848,526.2,0.532767,704.957,684.007,0.467903,452.696,578.928,0.439129,726.112,783.958,0.443479,373.75,615.67,0.432467,578.887,762.817,0.623944,515.785,747.154,0.568173,526.298,920.583,0.64236,499.974,920.609,0.585133,573.541,1067.79,0.673787,584.124,994.223,0.564386,610.309,521.023,0.692704,620.886,400.222,0.645737,547.247,1115.12,0.581931,568.428,1115.09,0.6445,584.037,1078.33,0.522285,568.291,1062.58,0.334948,563.035,1052.06,0.327648,610.313,988.95,0.51014],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.852,526.242,0.359442,810.2,521.023,0.358418,794.46,520.996,0.314287,815.591,521.084,0.306835,773.399,515.841,0.209817,831.237,563.165,0.432303,773.316,563.032,0.543262,836.512,610.518,0.353948,768.087,615.628,0.507891,815.242,573.752,0.331034,757.61,683.959,0.371084,820.697,673.391,0.457469,778.668,673.465,0.454164,825.864,762.817,0.436904,794.357,762.744,0.399311,831.197,841.717,0.367777,810.1,841.681,0.365687,810.233,557.691,0.366479,804.876,484.298,0.353934,820.691,862.751,0.308542,836.423,862.679,0.302035,836.475,857.427,0.320053,789.065,857.369,0.29329,778.761,852.198,0.309518,815.227,857.334,0.307872],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0016.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0016.json deleted file mode 100644 index 721391e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0016.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[615.625,484.217,0.533245,636.555,473.699,0.531574,605.209,473.549,0.484167,647.228,478.823,0.580194,589.296,468.457,0.408243,683.84,568.304,0.565518,547.352,526.206,0.535112,705.067,689.118,0.51268,457.845,573.621,0.464182,731.145,794.317,0.4673,379.107,605.086,0.431518,578.847,762.783,0.63217,515.699,747.029,0.573014,526.308,915.371,0.636137,489.58,920.528,0.587747,573.48,1072.97,0.6816,578.889,994.117,0.560241,610.477,521.135,0.697403,631.362,405.346,0.651021,536.817,1120.29,0.584193,568.307,1120.28,0.640528,578.913,1094.01,0.537776,563.008,1062.49,0.300261,547.311,1046.8,0.30168,605.089,988.889,0.499527],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.814,526.186,0.372334,810.168,520.968,0.370753,794.434,520.941,0.321179,815.542,521.024,0.322536,778.614,515.83,0.206372,831.163,563.13,0.44853,773.334,562.998,0.545607,836.421,610.534,0.37542,768.116,615.569,0.489928,810.229,578.762,0.341681,757.611,683.874,0.341513,820.647,673.402,0.470995,778.622,673.436,0.462982,820.821,762.874,0.459707,789.163,762.75,0.413166,825.981,846.873,0.391211,804.938,841.731,0.37865,810.223,552.602,0.364692,804.822,484.271,0.346139,820.593,862.792,0.319678,831.141,862.723,0.316238,831.198,857.504,0.340811,783.89,857.427,0.303413,778.689,852.277,0.321071,810.127,857.383,0.31655],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0017.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0017.json deleted file mode 100644 index e99888a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0017.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[615.601,489.449,0.49753,636.626,478.911,0.499097,605.194,473.726,0.476423,647.293,478.982,0.565976,594.566,473.585,0.36279,683.918,568.475,0.57289,552.582,526.188,0.53639,705.123,689.292,0.526794,457.894,568.425,0.481757,726.122,799.643,0.469695,368.613,584.095,0.453579,573.685,768.027,0.636874,510.515,752.303,0.582972,526.314,931.097,0.640696,484.165,925.857,0.599093,573.535,1073,0.679323,568.284,994.236,0.529269,615.592,526.272,0.691802,636.612,405.398,0.643785,552.46,1120.34,0.590886,573.513,1120.29,0.63568,584.057,1088.79,0.54847,536.781,1057.32,0.291634,531.525,1046.79,0.305826,584.14,988.981,0.431427],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.716,526.265,0.376106,810.184,521.031,0.379804,794.423,521.007,0.321534,820.504,521.092,0.340172,773.349,515.84,0.193456,831.18,568.122,0.451499,773.378,563.057,0.55124,831.191,615.578,0.390228,768.103,615.621,0.487732,810.188,578.812,0.349211,757.647,683.874,0.342727,820.621,668.281,0.480937,778.656,673.399,0.47441,820.775,762.878,0.462986,789.153,762.723,0.416964,825.875,846.911,0.386105,809.998,841.708,0.373683,815.154,557.72,0.34956,804.817,484.328,0.344104,815.346,862.827,0.31706,820.751,862.802,0.316083,831.131,857.531,0.330329,783.893,857.428,0.295596,778.708,852.246,0.312154,810.088,857.341,0.305875],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0018.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0018.json deleted file mode 100644 index c23381f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0018.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[620.876,494.646,0.452975,641.841,479.064,0.468589,610.373,478.799,0.45526,652.521,484.071,0.539281,605.018,473.635,0.384484,683.93,573.599,0.536701,557.829,526.192,0.511474,710.267,694.457,0.470756,457.925,568.191,0.44624,726.043,810.111,0.440725,368.524,573.539,0.442756,573.584,768.052,0.622275,510.517,752.3,0.559788,526.294,936.341,0.629009,478.863,920.61,0.576505,573.558,1067.85,0.61897,542.061,988.985,0.491475,615.723,526.328,0.678712,641.9,410.556,0.627116,557.754,1115.17,0.562228,573.607,1115.1,0.579933,584.155,1073.14,0.510861,520.926,1041.55,0.389846,515.648,1031.06,0.399499,568.35,988.884,0.418302],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.884,526.229,0.363668,815.208,521.007,0.362819,799.64,521.002,0.310309,820.521,521.077,0.321829,773.357,515.77,0.218364,831.271,563.176,0.445239,773.368,563.068,0.570231,836.407,610.547,0.372963,768.067,620.866,0.515696,815.217,578.785,0.332916,762.826,683.962,0.360423,820.649,668.255,0.47662,778.663,673.39,0.467124,825.873,762.825,0.443816,789.148,757.663,0.398224,831.127,841.745,0.361361,810.007,841.712,0.348686,815.163,557.701,0.348895,804.817,484.313,0.34396,815.432,862.842,0.304298,825.965,862.784,0.296995,836.434,857.441,0.309193,783.867,857.487,0.290783,778.674,852.295,0.307148,810.103,857.328,0.290483],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0019.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0019.json deleted file mode 100644 index d7030af..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0019.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[620.95,494.733,0.632918,641.944,484.173,0.643273,610.452,478.896,0.6391,668.169,484.285,0.563317,599.85,473.637,0.394283,689.123,578.8,0.691569,557.734,526.167,0.654308,710.24,694.472,0.668216,463.123,568.164,0.620886,726.065,810.163,0.639894,379.092,568.425,0.61133,578.876,768.14,0.673046,505.144,752.255,0.667795,531.484,936.362,0.635248,463.127,915.31,0.639304,573.615,1067.82,0.683556,552.516,983.735,0.571885,620.868,531.488,0.67227,647.098,410.672,0.634708,557.829,1115.2,0.628282,578.827,1115.12,0.65872,584.128,1078.25,0.547691,520.881,1046.79,0.430004,510.523,1036.26,0.440536,573.583,983.633,0.498794],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.598,526.219,0.395726,810.075,520.958,0.405228,789.178,520.966,0.339978,815.477,521.011,0.367347,778.605,520.935,0.17553,825.966,568.146,0.475332,778.587,563.108,0.480954,825.898,615.737,0.429632,773.221,615.628,0.400146,815.219,578.813,0.343992,768.08,673.508,0.295048,820.677,673.427,0.467044,778.743,673.398,0.443901,825.934,762.87,0.44293,794.406,762.758,0.386363,831.194,846.862,0.362005,810.22,836.483,0.352313,815.161,557.737,0.368298,804.817,484.219,0.3696,820.669,862.847,0.319347,831.22,862.75,0.312052,836.428,857.482,0.314694,794.372,857.488,0.28849,783.931,852.259,0.301723,815.246,857.291,0.293804],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0020.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0020.json deleted file mode 100644 index 139d797..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0020.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[626.108,499.915,0.614171,642.016,484.239,0.624597,615.644,478.916,0.594952,673.482,489.474,0.580752,605.054,473.701,0.320168,689.176,584.041,0.682443,562.926,526.207,0.658915,710.256,694.591,0.665594,463.173,563.079,0.619295,726.052,815.479,0.654847,384.258,563.095,0.582748,578.749,773.3,0.675227,499.954,752.345,0.673156,531.509,941.546,0.637364,447.454,910.05,0.654379,573.56,1072.96,0.675564,531.536,988.984,0.601406,626.104,531.587,0.663283,647.26,421.043,0.618385,557.739,1120.3,0.620041,573.669,1115.19,0.642069,584.092,1083.5,0.547516,510.461,1057.21,0.482543,499.962,1041.49,0.49467,568.264,988.901,0.505262],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.811,526.287,0.381853,810.178,521.043,0.393889,794.452,521.031,0.328789,815.477,521.073,0.360941,794.387,520.964,0.16723,825.987,568.17,0.466805,778.567,563.15,0.473914,825.934,620.855,0.414279,773.179,615.607,0.395867,815.302,578.858,0.334759,768.097,673.443,0.293085,820.692,668.284,0.446419,778.701,668.241,0.42268,825.927,762.785,0.42466,789.174,757.671,0.367021,836.437,841.699,0.351959,815.307,836.372,0.34423,815.184,557.814,0.357306,804.821,484.301,0.357042,820.792,862.787,0.302374,836.478,862.648,0.299019,841.762,857.415,0.317094,794.369,857.469,0.280267,783.995,852.243,0.290432,815.433,852.17,0.284396],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0021.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0021.json deleted file mode 100644 index d7ae7b4..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0021.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[626.123,500.025,0.604962,642.012,489.422,0.612798,615.715,479.025,0.553462,678.644,494.654,0.579221,605.219,478.767,0.272422,689.186,584.13,0.678765,562.988,526.239,0.653247,710.294,699.758,0.65414,473.602,562.941,0.616129,725.973,820.61,0.650089,389.454,547.285,0.591646,573.671,773.338,0.671921,499.913,752.252,0.663962,531.552,941.452,0.638516,442.01,904.845,0.665064,573.486,1072.95,0.678535,520.889,988.946,0.648656,626.135,536.76,0.652626,652.34,421.146,0.603479,557.71,1115.21,0.624985,573.628,1115.14,0.643719,578.931,1078.35,0.558963,489.492,1062.46,0.548214,479.028,1041.57,0.582056,536.817,988.92,0.533012],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.872,526.306,0.372513,810.238,521.06,0.381407,799.628,521.06,0.319902,815.488,521.084,0.354995,799.582,520.962,0.170217,831.141,568.154,0.460103,778.569,563.143,0.488862,825.943,615.753,0.42005,768.191,615.606,0.402733,815.274,578.86,0.346669,768.102,673.434,0.301457,820.687,668.268,0.471811,778.723,668.233,0.451266,825.895,762.82,0.437381,789.175,762.739,0.383651,831.25,841.772,0.362993,810.187,836.457,0.344297,815.199,557.787,0.346167,799.704,484.321,0.32776,820.752,862.854,0.305872,836.439,862.698,0.300575,836.506,857.466,0.310724,789.159,857.482,0.286679,783.875,852.295,0.299641,815.238,852.206,0.281954],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0022.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0022.json deleted file mode 100644 index 79ebc66..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0022.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[636.612,505.249,0.629764,647.255,489.528,0.62922,626.156,484.157,0.565138,683.918,499.902,0.604279,610.375,478.902,0.327171,689.27,589.34,0.69018,563.134,526.339,0.659958,705.086,705.062,0.657654,473.722,557.791,0.607255,715.516,820.781,0.640397,389.51,526.378,0.627155,573.582,773.412,0.674378,494.69,752.309,0.666167,531.478,941.595,0.675239,431.599,899.627,0.66227,573.468,1072.95,0.677409,505.154,994.184,0.643826,631.426,541.974,0.652673,652.564,426.414,0.602801,557.718,1115.21,0.616256,573.616,1115.12,0.633959,578.858,1078.3,0.567909,473.627,1062.51,0.601084,463.166,1046.76,0.624073,521.058,994.192,0.579226],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.865,526.244,0.398996,815.208,521.002,0.405259,799.627,521,0.345649,815.427,521.031,0.370243,794.41,520.973,0.19569,831.135,568.192,0.485828,778.558,563.152,0.511191,825.967,620.871,0.436536,773.23,615.605,0.433794,815.363,578.87,0.364367,768.142,673.409,0.324987,820.668,673.485,0.507017,778.691,673.434,0.493185,820.858,762.868,0.487687,789.142,762.772,0.440261,831.182,846.943,0.410888,810.15,836.462,0.390959,815.215,557.753,0.402169,804.875,484.247,0.398824,820.703,862.862,0.341154,831.206,862.767,0.338185,836.459,857.572,0.354436,789.102,862.617,0.3263,783.847,857.424,0.337352,815.24,857.312,0.322157],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0023.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0023.json deleted file mode 100644 index f12b999..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0023.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[636.611,510.493,0.616977,647.253,499.952,0.613063,626.181,489.403,0.542199,683.977,505.178,0.587103,610.505,479.016,0.261132,689.302,594.621,0.687111,568.321,526.342,0.655374,705.089,715.536,0.655828,484.073,552.501,0.520628,710.226,826.012,0.63129,394.81,526.25,0.528437,573.529,773.409,0.673767,494.656,747.139,0.66087,526.29,941.723,0.694626,415.869,899.529,0.672113,573.482,1073.02,0.678414,484.239,994.156,0.649414,636.642,547.323,0.651204,657.717,436.817,0.593493,557.71,1120.3,0.603675,573.614,1115.17,0.634165,584.017,1078.36,0.572512,452.676,1057.3,0.5965,447.305,1041.51,0.623349,510.549,994.172,0.55585],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.878,526.271,0.400116,810.228,521.03,0.408722,799.658,521.027,0.349789,815.402,521.058,0.367305,794.424,520.977,0.194981,826.033,568.205,0.481016,778.568,568.156,0.515246,826.022,615.713,0.425131,773.288,615.583,0.430506,815.38,578.845,0.36643,768.156,668.241,0.301503,820.638,673.473,0.496433,778.69,673.431,0.484719,820.847,762.874,0.481355,789.15,762.741,0.430651,831.221,846.881,0.398998,810.154,836.419,0.38977,815.196,557.783,0.396168,804.824,484.251,0.396781,820.694,862.855,0.331469,831.208,862.76,0.327688,841.629,857.535,0.346693,789.089,857.566,0.321789,783.835,857.375,0.335036,815.254,852.246,0.320081],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0024.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0024.json deleted file mode 100644 index 14c6059..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0024.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[641.892,515.605,0.650233,652.488,500.039,0.633607,636.59,489.543,0.609102,689.121,505.313,0.59399,615.714,484.213,0.351051,694.332,599.905,0.699021,568.224,531.58,0.647281,705.09,725.965,0.666687,484.122,552.577,0.54133,705.039,836.495,0.650176,394.933,526.134,0.524526,573.508,778.584,0.67989,489.483,752.391,0.680173,526.278,946.766,0.701514,405.338,899.533,0.686687,573.555,1073.02,0.673871,473.612,999.385,0.617507,636.674,552.565,0.656099,663.003,442.062,0.596806,557.707,1120.31,0.625267,578.772,1115.18,0.656276,584.132,1078.31,0.556574,442.009,1057.23,0.590414,436.734,1036.32,0.601601,494.693,999.361,0.543305],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.836,526.224,0.393418,810.144,520.979,0.406533,799.64,520.987,0.33338,815.354,521.033,0.377297,794.376,520.939,0.181503,825.976,568.187,0.479122,778.617,563.14,0.494709,826.022,615.699,0.419127,773.259,610.513,0.415021,815.326,578.898,0.365182,768.133,668.123,0.289207,820.652,673.442,0.47775,778.706,668.26,0.461048,820.887,762.889,0.461967,789.162,762.742,0.402136,831.223,846.919,0.386416,810.182,836.379,0.364817,815.216,557.743,0.385252,804.806,484.238,0.391355,820.637,862.879,0.331798,831.152,862.81,0.329133,841.625,857.545,0.341018,783.92,857.532,0.301669,778.759,857.325,0.313445,815.275,852.211,0.296204],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0025.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0025.json deleted file mode 100644 index 121cf66..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0025.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[641.93,515.621,0.641476,652.532,505.15,0.620716,636.637,489.538,0.606578,689.183,510.46,0.587249,620.884,484.233,0.321562,694.351,605.005,0.699053,568.285,531.519,0.663047,705.071,726.027,0.672444,484.13,552.556,0.593589,704.976,846.924,0.665208,399.964,520.91,0.612545,573.489,778.583,0.674065,489.431,752.283,0.671406,526.169,946.822,0.706348,400.146,894.298,0.697318,573.586,1073.07,0.669863,457.829,1004.76,0.640257,636.714,552.6,0.654263,673.417,442.105,0.604059,557.698,1120.4,0.618062,578.772,1120.3,0.649812,584.112,1078.35,0.562653,426.357,1062.44,0.568614,415.84,1046.71,0.579039,478.96,1009.96,0.549366],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.683,526.297,0.382087,810.066,521.041,0.398079,799.624,521.024,0.316903,815.298,521.12,0.375997,799.624,520.925,0.167184,825.972,568.212,0.473584,778.633,568.134,0.482347,826.02,615.696,0.413477,773.288,610.542,0.391634,815.293,578.828,0.356801,768.134,668.193,0.273405,820.642,673.456,0.45729,778.742,673.407,0.440029,825.863,762.922,0.440791,789.211,762.772,0.383274,831.194,846.919,0.364119,810.176,836.404,0.347545,815.213,557.838,0.375915,799.571,484.252,0.380162,820.595,862.884,0.308592,826.044,862.815,0.30627,836.505,857.516,0.325176,783.905,857.546,0.294389,778.772,857.346,0.308193,815.29,852.224,0.284864],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0026.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0026.json deleted file mode 100644 index 009b8ef..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0026.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.102,515.703,0.642805,657.746,505.253,0.616755,641.864,494.718,0.611631,689.309,510.567,0.573179,626.113,489.43,0.323279,694.397,605.122,0.701096,568.448,531.528,0.657559,705.104,731.245,0.676921,484.225,547.32,0.569233,699.851,852.216,0.682337,400.12,515.707,0.5833,568.461,778.583,0.669656,489.458,747.123,0.662579,526.232,946.927,0.677521,400.042,889.089,0.689891,573.525,1073.08,0.653233,436.893,1009.95,0.641979,641.909,557.789,0.653261,678.686,442.199,0.596679,557.693,1120.38,0.61298,578.761,1120.26,0.648953,584.042,1078.35,0.541456,405.304,1067.68,0.584948,394.899,1057.16,0.601957,447.5,1015.14,0.536974],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.659,526.253,0.403868,810.045,520.994,0.425566,799.589,520.975,0.332943,815.313,521.084,0.401875,789.101,520.889,0.1717,826.001,568.209,0.482134,778.606,563.144,0.495599,826.038,615.696,0.430077,773.211,610.454,0.415868,815.26,578.761,0.381833,768.047,657.785,0.281227,820.632,673.457,0.470571,778.673,668.267,0.455065,820.859,767.951,0.454173,783.956,762.818,0.397935,831.154,847.001,0.369941,810.046,841.625,0.343652,815.215,557.814,0.391025,794.409,484.16,0.405386,820.617,862.924,0.314168,826.046,862.867,0.311344,836.456,857.553,0.329067,783.81,862.619,0.299315,778.655,857.407,0.313907,810.213,857.303,0.285618],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0027.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0027.json deleted file mode 100644 index 4b4710a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0027.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.263,520.931,0.54777,662.975,515.663,0.517989,647.046,505.167,0.497818,689.331,515.795,0.518243,636.654,489.509,0.323898,694.435,605.214,0.65342,573.594,531.531,0.593072,705.021,731.328,0.631991,484.224,542.097,0.486274,699.848,852.261,0.623933,400.255,505.316,0.48289,568.289,778.576,0.638813,489.409,747.11,0.598875,526.172,947.018,0.607188,399.972,889.08,0.581252,573.513,1073.15,0.57208,421.141,1010.03,0.543926,647.021,562.961,0.663363,684.003,447.373,0.57549,552.546,1120.35,0.533863,573.591,1120.28,0.55115,584.13,1088.76,0.463323,389.554,1067.76,0.517568,373.85,1057.21,0.490735,442.09,1015.2,0.474474],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.808,526.333,0.386495,810.111,521.083,0.398457,804.823,521.038,0.313404,815.453,521.152,0.373449,789.094,520.914,0.192288,831.158,568.193,0.476615,778.583,568.206,0.537099,831.136,615.642,0.426738,773.239,615.598,0.429657,815.252,578.799,0.393068,768.076,662.929,0.297081,820.585,673.461,0.480715,778.678,668.244,0.46367,820.805,767.951,0.456284,783.953,762.811,0.402784,826.07,846.977,0.373636,810.104,836.491,0.351799,815.159,557.846,0.383297,789.115,484.165,0.401209,815.535,867.914,0.304052,825.997,862.853,0.302744,836.435,857.534,0.325243,783.866,857.557,0.290147,778.725,857.351,0.306625,815.216,852.272,0.281438],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0028.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0028.json deleted file mode 100644 index 219452a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0028.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.273,520.964,0.62813,668.196,515.717,0.606134,647.08,505.276,0.575299,694.396,520.879,0.576331,636.616,494.678,0.285789,694.521,610.37,0.694552,573.595,531.536,0.662586,705.111,736.522,0.676341,489.376,542.094,0.570485,699.798,857.463,0.702949,405.439,499.944,0.57324,568.355,778.638,0.674336,484.229,747.072,0.663619,526.143,952.054,0.686111,394.73,888.944,0.688583,573.613,1073.14,0.654039,400.168,1015.27,0.669808,642.021,563.071,0.675886,689.167,447.37,0.619444,557.702,1120.41,0.61299,578.799,1120.3,0.652703,589.269,1083.58,0.52847,363.363,1067.7,0.604959,352.832,1052.05,0.608056,421.12,1020.52,0.577595],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.684,526.358,0.347403,810.027,521.096,0.367363,799.624,521.09,0.277769,815.237,521.147,0.362682,799.633,520.896,0.14159,825.933,568.207,0.450568,778.725,563.118,0.446753,825.991,615.7,0.406975,773.375,610.413,0.370093,815.226,578.883,0.35921,768.187,662.921,0.277448,820.612,668.274,0.446221,778.799,668.15,0.428818,820.802,762.881,0.422534,789.124,762.772,0.369736,826.086,846.893,0.345853,810.115,831.284,0.327353,815.18,557.816,0.324542,0,0,0,815.509,862.885,0.293385,825.925,862.802,0.286676,836.448,857.457,0.299835,783.897,857.48,0.274019,778.759,852.264,0.289629,815.267,852.149,0.263228],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0029.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0029.json deleted file mode 100644 index ccc9e9a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0029.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[652.487,521.152,0.54229,678.705,520.856,0.533578,647.271,510.517,0.512547,694.54,521.022,0.50923,641.888,499.961,0.321094,694.557,615.611,0.648532,578.796,536.774,0.57406,705.072,736.631,0.621404,489.438,536.736,0.482825,699.749,862.646,0.632946,410.631,494.695,0.473743,568.187,778.654,0.626654,484.231,747.054,0.604127,521.107,947.027,0.619824,389.506,889.012,0.5863,573.544,1078.24,0.576687,394.647,1020.43,0.574292,647.177,568.22,0.667235,689.292,452.647,0.579541,557.694,1120.45,0.525845,573.679,1120.33,0.547801,584.131,1088.82,0.462977,352.642,1067.71,0.449972,342.226,1057.19,0.455607,400.013,1025.74,0.504525],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.808,526.366,0.361955,810.08,521.132,0.377266,799.657,521.106,0.295867,815.337,526.136,0.356496,789.143,520.911,0.166047,826.003,568.21,0.446502,778.601,568.188,0.497075,826.009,615.668,0.406729,773.21,610.546,0.390468,815.199,578.915,0.362094,768.072,662.962,0.282518,820.551,673.405,0.45005,778.662,668.172,0.437203,820.737,762.919,0.422787,783.907,762.782,0.374219,826.06,846.845,0.350587,804.961,831.243,0.327164,810.225,557.866,0.340375,0,0,0,815.496,862.839,0.298694,825.946,862.752,0.289738,836.423,857.385,0.301122,778.719,857.482,0.278863,778.622,852.28,0.295873,810.226,852.103,0.260451],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0030.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0030.json deleted file mode 100644 index feeee39..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0030.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[657.669,526.346,0.542767,683.978,521.084,0.551896,652.4,515.762,0.54403,694.646,526.173,0.459583,641.939,505.209,0.37965,694.612,620.824,0.655393,578.842,536.747,0.590497,710.225,741.836,0.62917,489.484,531.61,0.506294,699.729,862.755,0.661689,415.804,489.536,0.483459,563.109,783.869,0.625373,484.084,747.155,0.618114,521.091,952.069,0.628644,379.045,889.009,0.595324,573.553,1073.13,0.600951,368.586,1020.45,0.564959,647.203,568.366,0.665317,694.47,457.927,0.570948,557.723,1120.43,0.555479,578.754,1120.29,0.577993,584.16,1083.58,0.472839,342.135,1062.48,0.516137,326.457,1046.81,0.494534,389.539,1030.86,0.53606],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.681,531.46,0.377291,810.014,521.171,0.392163,799.662,521.136,0.311057,815.28,526.198,0.361728,794.346,520.944,0.179462,831.137,568.25,0.464113,778.604,568.223,0.501173,831.155,615.702,0.418042,773.245,615.571,0.40021,815.275,578.862,0.368409,768.135,657.786,0.286495,820.585,673.497,0.45892,778.685,668.253,0.446186,820.801,762.927,0.443547,789.09,762.796,0.387162,831.134,846.936,0.366328,809.997,836.377,0.340821,815.166,562.976,0.367383,0,0,0,820.641,862.865,0.305285,831.129,862.785,0.302252,836.407,857.466,0.32302,783.809,857.565,0.290815,778.642,857.36,0.308032,810.231,852.194,0.278646],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0031.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0031.json deleted file mode 100644 index 575146c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0031.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[657.774,526.337,0.596979,689.114,521.059,0.62952,652.46,515.741,0.604032,699.79,526.261,0.540798,641.958,505.219,0.374601,699.66,626.083,0.672614,578.909,536.814,0.613082,710.311,747.124,0.645977,489.482,531.615,0.492481,699.694,867.965,0.689347,415.838,489.482,0.456238,568.18,783.826,0.650622,479.006,747,0.651804,521.071,952.092,0.677444,373.758,883.741,0.648994,573.54,1073.15,0.653916,357.933,1020.38,0.646756,647.288,568.447,0.67926,694.574,457.938,0.596285,552.576,1120.45,0.61455,578.797,1120.31,0.65454,584.114,1083.6,0.519039,326.445,1057.31,0.578931,315.925,1041.5,0.570914,373.755,1025.74,0.576175],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.809,526.387,0.379349,809.979,521.143,0.401546,799.625,521.119,0.325035,810.074,526.191,0.376244,799.575,520.908,0.181693,825.999,568.295,0.463856,778.599,568.163,0.469975,831.158,615.748,0.419125,773.237,610.472,0.383226,815.346,578.857,0.366557,768.063,657.774,0.278619,820.626,673.473,0.441679,778.701,668.226,0.433225,820.864,767.943,0.433648,789.114,762.808,0.377864,831.16,847.007,0.361802,804.962,836.389,0.325881,815.174,562.986,0.357627,0,0,0,820.634,862.879,0.305206,831.131,862.826,0.303402,836.42,857.516,0.326467,783.814,857.528,0.279754,778.632,857.332,0.298476,815.194,852.233,0.268586],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0032.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0032.json deleted file mode 100644 index 6607f59..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0032.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[662.982,536.723,0.588403,689.206,526.284,0.630956,652.585,520.904,0.601312,699.858,531.451,0.483927,641.998,510.467,0.399903,699.702,631.336,0.669503,578.916,542.002,0.619755,710.283,757.522,0.642639,489.501,531.475,0.514472,699.703,868.095,0.682229,415.881,484.154,0.456661,563.122,783.925,0.643568,478.893,747.064,0.654235,521.122,952.13,0.661604,363.27,883.692,0.646823,573.514,1073.18,0.654056,347.386,1020.41,0.648829,647.293,573.575,0.678488,699.754,463.19,0.58723,557.703,1120.45,0.594881,578.777,1120.31,0.638062,584.085,1088.82,0.515611,321.187,1057.29,0.565362,310.591,1041.5,0.560754,352.847,1025.79,0.560768],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.614,526.388,0.365304,804.805,521.137,0.385175,799.581,521.073,0.302968,809.987,526.177,0.360809,799.599,520.893,0.177212,825.928,568.257,0.452403,778.618,563.155,0.446954,831.139,615.697,0.404257,773.315,610.398,0.369072,815.319,578.774,0.355036,768.039,657.681,0.266016,820.626,673.428,0.427559,778.74,668.211,0.422437,820.818,767.962,0.420781,789.181,762.835,0.36878,826.068,852.141,0.355585,809.995,841.64,0.317708,810.238,562.924,0.326806,0,0,0,820.536,867.926,0.290767,825.955,867.932,0.289207,836.388,862.587,0.313373,783.811,862.615,0.27398,778.64,857.424,0.292196,815.199,857.353,0.264827],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0033.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0033.json deleted file mode 100644 index fdbc549..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0033.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[668.276,536.81,0.596046,689.341,526.38,0.637913,662.896,520.945,0.619257,705.023,536.734,0.459869,647.048,515.618,0.442582,699.753,631.426,0.664018,584.011,536.81,0.62111,710.335,757.571,0.643406,484.321,526.385,0.524376,699.72,873.206,0.689504,421.081,478.832,0.461208,563.074,783.96,0.642641,478.803,747.075,0.653006,526.152,952.195,0.667098,358.004,883.692,0.662834,573.531,1078.29,0.653274,336.904,1020.41,0.655398,647.32,573.674,0.678147,704.989,473.598,0.582229,557.713,1120.48,0.606436,578.79,1120.36,0.646012,584.074,1094.05,0.522777,310.745,1052.06,0.554232,294.921,1036.29,0.550092,347.407,1030.97,0.568503],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[794.318,531.462,0.352112,794.339,526.162,0.378353,789.083,521.097,0.284215,804.849,526.201,0.355184,789.098,520.875,0.158351,825.895,568.264,0.431353,778.68,563.073,0.414804,831.121,615.699,0.391219,773.315,610.311,0.339905,815.265,578.756,0.342905,768.062,657.719,0.25576,820.619,668.22,0.403961,778.731,663.011,0.401311,820.775,762.866,0.374303,789.081,762.742,0.325582,825.965,847.033,0.320495,804.827,831.203,0.271397,815.104,557.832,0.295049,0,0,0,815.4,862.823,0.265098,820.798,862.83,0.267069,831.23,857.529,0.281643,778.601,857.35,0.242953,778.523,852.149,0.25794,810.193,852.114,0.217606],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0034.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0034.json deleted file mode 100644 index c0da7f5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0034.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[678.661,552.501,0.47064,694.385,536.764,0.495173,662.971,526.145,0.483484,705.055,536.753,0.378255,647.213,515.776,0.473471,699.665,631.456,0.593669,584.113,542.055,0.507872,715.522,762.848,0.538791,489.37,526.377,0.458099,699.788,878.528,0.554556,426.326,473.652,0.4179,557.807,783.88,0.586995,478.909,747.12,0.582702,521.159,957.309,0.531053,357.88,883.677,0.518061,573.487,1073.13,0.531238,326.431,1020.37,0.507287,652.346,578.798,0.652097,705.037,473.739,0.539357,557.762,1120.36,0.474354,573.723,1115.23,0.489184,584.088,1083.56,0.409323,305.351,1052.03,0.413376,279.217,1036.3,0.415645,336.95,1030.99,0.430046],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.629,526.428,0.316353,804.894,526.128,0.3193,799.549,521.115,0.258447,810.163,526.177,0.308667,773.31,521.057,0.197898,826.031,568.161,0.397526,778.591,568.206,0.46792,831.155,615.576,0.376481,773.248,610.503,0.363596,815.196,573.728,0.334692,767.985,657.766,0.268353,820.575,668.194,0.402817,778.701,663.013,0.405783,820.719,762.853,0.372419,783.992,762.736,0.323995,825.961,847.029,0.327805,799.632,831.195,0.284752,810.2,557.865,0.289478,0,0,0,815.398,862.838,0.273415,820.832,862.834,0.272977,831.288,857.492,0.281458,778.591,857.359,0.245198,778.508,852.168,0.261049,810.103,852.092,0.224726],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0035.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0035.json deleted file mode 100644 index 4677354..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0035.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[683.901,557.853,0.621363,694.458,547.313,0.634152,668.252,526.325,0.605351,715.506,552.513,0.393738,647.185,520.877,0.504996,699.797,636.727,0.669891,584.082,541.995,0.622596,720.751,768.046,0.649893,484.348,526.287,0.530699,699.809,878.576,0.683905,431.542,468.465,0.446461,562.986,789.11,0.634938,473.655,747.156,0.648904,526.193,957.346,0.64496,352.704,878.567,0.652218,573.539,1078.27,0.648533,316.009,1020.38,0.648411,647.319,578.926,0.665332,710.266,479.005,0.567443,557.761,1120.47,0.588717,578.811,1120.33,0.628296,584.063,1088.83,0.514298,279.108,1051.93,0.512751,268.681,1031.03,0.544113,321.297,1031.02,0.573006],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[773.38,536.769,0.342785,0,0,0,0,0,0,809.986,526.299,0.341872,0,0,0,825.936,568.254,0.406259,778.666,562.98,0.378635,826.075,615.668,0.389561,773.274,605.285,0.315857,810.141,573.672,0.345327,768.083,657.749,0.251163,820.626,668.155,0.378876,778.706,662.951,0.376037,820.752,762.865,0.34028,789.106,762.733,0.293106,825.975,852.08,0.297763,804.976,831.223,0.254114,810.211,562.874,0.271699,0,0,0,815.389,862.931,0.245383,820.851,862.917,0.245664,836.378,857.596,0.252044,778.743,857.34,0.212921,778.676,852.17,0.230213,815.24,852.098,0.197022],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0036.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0036.json deleted file mode 100644 index 7626904..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0036.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[683.94,563.042,0.625285,694.492,557.736,0.623624,673.461,531.509,0.580093,720.774,557.831,0.405344,647.319,521.029,0.466035,699.807,641.873,0.669648,584.104,541.98,0.632592,720.816,768.133,0.650605,484.308,526.198,0.617001,699.872,883.71,0.684664,426.416,457.949,0.569554,557.782,794.34,0.620071,473.598,747.157,0.645178,526.151,957.447,0.640726,347.49,878.453,0.65126,573.572,1073.18,0.648013,310.571,1009.97,0.620805,652.338,584.108,0.672543,715.555,484.249,0.563903,557.789,1120.48,0.58561,578.846,1120.34,0.627148,584.106,1088.78,0.514654,268.535,1041.48,0.509461,258.068,1025.73,0.527876,315.894,1030.9,0.556864],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[778.638,531.575,0.337303,0,0,0,767.971,526.168,0.28855,810.036,526.291,0.342578,0,0,0,825.992,568.241,0.403395,778.588,562.899,0.383166,831.16,615.683,0.38837,773.2,605.152,0.313824,810.2,573.65,0.344955,768.076,657.717,0.253165,820.666,668.181,0.381672,778.703,662.956,0.38375,820.826,762.892,0.336827,789.111,762.756,0.294291,825.964,852.091,0.297429,809.98,831.258,0.254381,810.251,557.826,0.284633,0,0,0,815.496,862.938,0.244851,825.928,862.903,0.242433,831.273,857.602,0.248991,783.859,857.339,0.211433,778.741,852.151,0.229508,815.238,852.101,0.198595],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0037.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0037.json deleted file mode 100644 index a1975d5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0037.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[684.015,563.036,0.540916,694.552,557.771,0.545717,678.669,531.561,0.491695,715.568,562.913,0.400426,652.439,521.139,0.442167,699.738,641.863,0.636267,589.276,547.257,0.542932,720.817,773.243,0.594771,484.25,526.116,0.50065,699.894,883.865,0.593497,436.811,452.611,0.457827,552.494,794.382,0.5753,468.446,752.318,0.588171,520.995,957.411,0.58645,342.244,878.408,0.581694,573.573,1073.11,0.574093,289.655,999.485,0.531245,652.467,584.121,0.659312,720.771,489.383,0.546387,557.845,1120.37,0.512716,578.832,1115.21,0.541779,589.322,1078.35,0.446052,263.262,1036.19,0.443363,237.167,1025.59,0.470409,300.171,1020.42,0.43616],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.564,526.353,0.341123,804.85,521.14,0.351899,789.133,521.074,0.280961,810.108,526.228,0.340692,0,0,0,831.158,568.178,0.420466,778.6,563.051,0.447815,831.158,615.638,0.404722,768.133,605.213,0.358472,810.185,573.732,0.363648,768.041,657.67,0.272699,820.573,668.231,0.414534,778.634,662.968,0.413068,820.723,762.88,0.370658,783.93,757.663,0.323711,825.899,852.047,0.325203,804.811,831.174,0.272493,810.202,557.855,0.31294,0,0,0,815.467,862.816,0.273906,825.888,862.808,0.270344,831.209,857.504,0.275402,778.719,852.224,0.230605,778.611,847.006,0.247338,810.182,847.025,0.21401],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0038.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0038.json deleted file mode 100644 index 644ec53..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0038.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.146,563.084,0.533807,694.62,557.848,0.520206,683.925,536.724,0.475878,720.811,563.021,0.357839,652.577,526.196,0.382918,699.763,641.99,0.657449,589.293,547.304,0.591968,725.958,773.226,0.651665,484.296,521.167,0.557402,705.06,888.94,0.65623,442.028,452.682,0.500732,552.53,794.373,0.602346,468.373,752.268,0.623663,521.038,962.569,0.633888,331.832,873.32,0.632009,573.533,1073.16,0.625241,274.04,999.485,0.601949,652.421,584.156,0.640667,720.804,489.414,0.51972,557.784,1120.41,0.571437,578.84,1120.26,0.606304,584.098,1083.57,0.490527,247.571,1036.19,0.469682,231.8,1020.51,0.520243,279.237,1020.44,0.502035],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.625,526.36,0.340578,809.961,521.121,0.355626,794.329,521.082,0.278385,815.247,526.203,0.333903,0,0,0,831.116,568.201,0.430944,778.717,563.012,0.414712,831.165,615.597,0.394746,773.225,605.15,0.350317,815.207,578.756,0.352728,768.133,657.73,0.272889,820.619,663.012,0.409316,778.735,662.876,0.406377,820.738,762.748,0.367705,783.989,757.494,0.323078,825.967,846.886,0.319393,804.954,825.989,0.277518,815.178,557.769,0.295714,0,0,0,815.516,862.709,0.2656,825.961,862.674,0.261553,831.286,857.373,0.27209,783.836,847.016,0.229762,778.713,841.729,0.247468,815.184,846.891,0.218056],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0039.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0039.json deleted file mode 100644 index 4d3f416..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0039.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.234,563.158,0.456065,699.714,562.939,0.436662,689.117,542.017,0.399179,720.758,563.065,0.320273,663.003,526.316,0.354037,699.746,647.083,0.660772,589.336,547.341,0.6065,725.941,773.253,0.653806,484.22,521.081,0.580741,710.303,888.958,0.65579,442.108,447.486,0.527294,552.514,794.398,0.613243,468.355,747.102,0.637361,520.965,957.445,0.65651,326.544,878.404,0.671027,573.469,1073.15,0.647124,268.74,999.504,0.636622,652.439,584.132,0.637591,726.066,489.411,0.514194,557.72,1120.35,0.585574,578.776,1115.16,0.626698,584.027,1083.59,0.519393,226.627,1031.06,0.536796,221.304,1020.39,0.567265,273.914,1020.5,0.553984],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.657,526.298,0.329413,810.012,521.046,0.344762,794.336,521.032,0.26137,815.326,526.134,0.324701,0,0,0,826.032,568.24,0.42254,778.746,562.975,0.396617,826.065,615.614,0.386051,773.269,605.104,0.349495,810.159,573.73,0.340947,768.155,657.719,0.268015,820.587,662.971,0.398499,778.757,657.801,0.398505,820.697,762.709,0.353723,783.893,752.375,0.322672,825.956,846.832,0.307446,810.013,825.878,0.276152,815.196,552.617,0.280394,0,0,0,815.5,862.664,0.250491,825.917,857.657,0.248972,831.294,857.299,0.261091,783.889,846.946,0.231002,778.789,841.638,0.24713,810.231,841.65,0.214482],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0040.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0040.json deleted file mode 100644 index d5507c2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0040.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.344,568.22,0.573226,699.853,563.053,0.53219,689.281,542.075,0.51236,731.274,563.116,0.302507,662.941,526.248,0.439697,699.773,647.088,0.669397,584.162,547.268,0.613913,720.822,773.27,0.662373,484.259,521.039,0.589939,715.579,889.035,0.657498,447.312,447.476,0.541599,547.272,799.596,0.613183,463.117,747.128,0.638094,520.951,957.43,0.66242,326.476,873.172,0.677298,568.458,1073.14,0.653893,258.141,994.18,0.621254,652.428,584.143,0.65113,731.34,494.698,0.544335,557.738,1120.42,0.600364,578.812,1115.2,0.639508,578.892,1083.57,0.531285,221.191,1025.81,0.528621,200.313,1015.11,0.543677,263.391,1015.16,0.55271],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[789.1,531.502,0.341505,799.579,526.186,0.363232,0,0,0,815.302,526.188,0.332921,0,0,0,831.126,568.221,0.423494,778.712,562.943,0.395448,831.15,615.588,0.387803,773.217,605.044,0.342721,810.192,573.709,0.35571,768.149,657.794,0.261063,820.61,662.948,0.39828,778.735,657.773,0.397748,820.738,762.764,0.352761,783.926,757.517,0.310955,825.985,846.871,0.302847,809.987,831.126,0.2651,815.145,557.713,0.276152,0,0,0,820.542,862.723,0.250986,826.056,857.665,0.247088,836.37,857.354,0.254945,789.053,852.21,0.222818,783.832,846.968,0.237304,810.207,846.958,0.212135],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0041.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0041.json deleted file mode 100644 index c720531..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0041.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.362,568.372,0.545786,699.889,568.174,0.513252,689.274,552.556,0.4999,736.482,563.11,0.302447,662.977,526.405,0.431487,699.79,647.144,0.660121,589.312,547.339,0.579879,720.82,773.377,0.653587,479.057,520.97,0.532551,720.732,894.224,0.646087,447.376,442.242,0.472727,547.284,794.426,0.606684,457.991,747.135,0.625442,520.959,957.405,0.646606,326.398,873.198,0.665399,568.458,1073.19,0.640984,242.405,994.131,0.597646,652.474,589.375,0.62751,736.558,494.735,0.52301,557.716,1120.42,0.5808,578.779,1115.21,0.618497,578.887,1088.77,0.519177,205.567,1025.75,0.532717,189.781,1009.91,0.551208,252.843,1009.93,0.513564],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.625,526.387,0.380248,804.922,521.163,0.402132,783.862,521.151,0.325276,815.405,526.166,0.358783,0,0,0,831.198,568.236,0.448876,778.677,562.992,0.427271,831.198,615.64,0.413864,773.157,605.129,0.363808,810.198,573.656,0.376543,768.076,657.735,0.274901,820.602,668.156,0.425631,778.644,662.916,0.42139,820.747,762.773,0.386606,783.828,757.544,0.338485,825.979,846.865,0.329386,804.917,831.161,0.279854,815.185,557.802,0.309188,0,0,0,815.512,862.689,0.274026,825.944,857.646,0.269745,836.386,857.312,0.276302,783.88,852.256,0.239157,778.752,847.008,0.251759,810.128,852.028,0.224286],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0042.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0042.json deleted file mode 100644 index 97fe2a3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0042.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.426,573.509,0.560009,705.015,568.293,0.507109,689.346,557.841,0.5221,736.564,568.255,0.246234,668.266,531.524,0.427071,699.7,647.129,0.668326,589.357,547.324,0.612638,720.742,773.313,0.645949,484.18,520.858,0.607399,725.922,889.062,0.656505,447.527,442.101,0.536742,542.018,799.599,0.610253,457.933,747.128,0.635817,520.977,962.589,0.657376,321.194,868.105,0.678458,573.47,1073.15,0.641879,226.555,999.366,0.633615,652.41,589.332,0.644347,736.578,499.907,0.549152,557.79,1120.36,0.576297,578.81,1115.16,0.610455,578.919,1083.58,0.520089,189.819,1020.48,0.526213,179.219,1004.66,0.546614,226.629,1020.46,0.533654],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.619,526.375,0.37294,804.927,521.136,0.394985,0,0,0,815.43,526.133,0.357958,0,0,0,831.165,568.183,0.437881,778.662,562.918,0.419068,831.147,615.573,0.408261,768.158,605.071,0.362355,810.168,573.706,0.361052,762.939,657.73,0.2802,820.58,662.969,0.423679,778.65,657.783,0.419905,820.798,762.717,0.381491,783.848,757.495,0.335775,825.999,841.767,0.330559,804.893,831.116,0.282274,815.198,557.694,0.302147,0,0,0,820.658,862.655,0.267569,831.172,857.582,0.266868,831.254,852.304,0.279848,789.063,852.229,0.243517,783.794,847.011,0.258602,810.044,846.972,0.230081],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0043.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0043.json deleted file mode 100644 index 72b55d4..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0043.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.344,578.738,0.473568,699.856,568.489,0.447062,689.203,563.061,0.447997,731.323,568.307,0.250428,668.19,536.739,0.385722,699.697,647.159,0.632608,589.367,547.344,0.545271,720.848,773.422,0.60539,484.094,520.828,0.540828,726.049,894.195,0.603867,457.836,441.983,0.485512,536.83,799.676,0.580716,457.87,747.116,0.589825,520.972,962.615,0.603627,316.052,868.09,0.636982,573.48,1073.19,0.577829,226.506,988.929,0.586528,652.397,594.605,0.599685,736.606,500.032,0.491102,557.826,1120.35,0.530158,578.804,1115.19,0.56062,578.938,1088.76,0.459175,189.847,1020.5,0.50415,173.981,999.486,0.517593,226.577,1004.7,0.478033],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.668,526.262,0.354534,810.071,520.995,0.365646,794.328,521.01,0.286547,815.508,521.063,0.334624,0,0,0,831.204,563.171,0.423024,778.69,562.941,0.426195,831.17,610.534,0.392288,773.171,605.08,0.361255,810.193,573.694,0.361107,762.883,657.72,0.269853,820.565,662.903,0.408738,778.685,657.73,0.409544,820.757,762.73,0.353963,783.894,752.38,0.313203,825.916,846.917,0.311572,810.043,831.198,0.269075,815.168,552.509,0.293542,0,0,0,820.56,862.732,0.250544,826.021,857.665,0.248359,831.189,857.336,0.258574,789.156,852.234,0.232941,783.924,847.002,0.24739,810.13,846.974,0.218726],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0044.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0044.json deleted file mode 100644 index bee24a9..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0044.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.304,578.872,0.494748,704.934,573.563,0.464238,689.172,563.16,0.475369,736.534,568.363,0.21976,663.005,536.819,0.379417,699.73,647.174,0.635185,589.332,552.482,0.547271,726,773.356,0.620697,479.021,515.815,0.518104,731.177,889.097,0.61792,705.025,857.512,0.0659295,542.04,794.396,0.594575,457.866,741.897,0.605266,521.065,962.579,0.625435,315.943,867.976,0.653422,573.496,1078.24,0.605628,221.307,988.913,0.609684,652.338,599.797,0.582829,736.573,505.247,0.475844,557.84,1120.37,0.551164,578.839,1115.2,0.579625,578.917,1088.79,0.479616,189.833,1025.62,0.511965,168.775,1004.65,0.52265,221.308,999.486,0.492838],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.762,526.224,0.321548,810.014,521.009,0.331703,794.37,520.993,0.254663,815.476,521.096,0.303465,0,0,0,831.244,563.165,0.395435,778.756,562.889,0.393803,831.151,615.588,0.379135,773.249,605.147,0.346376,810.195,573.632,0.351736,768.007,657.769,0.260364,820.646,662.947,0.383073,778.789,657.765,0.386542,820.841,762.717,0.326374,789.062,757.547,0.286251,826.035,846.982,0.288927,804.947,831.268,0.248209,815.196,552.461,0.277984,0,0,0,820.609,862.808,0.230261,831.176,862.723,0.230282,831.281,857.46,0.244899,789.119,852.272,0.215677,783.923,852.083,0.229986,810.126,852.083,0.206579],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0045.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0045.json deleted file mode 100644 index 0bcaea2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0045.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.474,578.911,0.486139,705.107,573.568,0.435527,694.34,568.162,0.463267,0,0,0,668.213,536.82,0.396515,694.606,647.074,0.607529,589.317,552.484,0.512591,725.949,773.382,0.55998,478.956,515.788,0.490665,731.276,894.288,0.568808,468.365,442.041,0.422888,531.623,794.364,0.563011,452.7,746.992,0.57119,520.971,957.412,0.573198,310.751,867.97,0.586944,573.459,1073.17,0.545968,215.973,988.95,0.530189,652.348,594.625,0.588721,741.796,505.229,0.474265,557.795,1120.35,0.497719,578.775,1115.18,0.525389,578.947,1083.61,0.427965,179.229,1015.22,0.428821,158.207,999.357,0.475908,210.869,1009.9,0.432916],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.765,526.255,0.313339,809.969,521.02,0.324921,794.303,521.018,0.255758,815.471,521.065,0.299312,0,0,0,836.368,563.117,0.390066,778.687,562.964,0.411195,831.233,610.569,0.36989,773.211,605.207,0.339736,810.224,573.683,0.349009,762.898,662.922,0.259573,820.636,662.966,0.386442,778.766,657.771,0.390673,820.911,762.729,0.33689,789.059,757.541,0.295855,831.124,846.921,0.300691,809.993,831.155,0.259114,815.188,552.504,0.276171,0,0,0,820.804,862.742,0.238855,836.468,862.628,0.2416,831.291,857.377,0.255486,789.192,852.225,0.226749,783.931,847.009,0.23971,810.176,846.961,0.213559],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0046.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0046.json deleted file mode 100644 index 3b8c3ff..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0046.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.41,578.864,0.513417,705.002,573.551,0.461759,689.315,568.151,0.493259,736.544,568.388,0.210651,663.038,541.97,0.40183,694.643,647.169,0.64627,589.306,547.302,0.565527,731.18,773.37,0.621431,478.934,515.751,0.568005,736.44,894.283,0.626492,473.598,436.92,0.495436,531.592,794.394,0.593229,452.676,741.91,0.603025,520.984,957.464,0.597673,310.744,862.824,0.633777,573.515,1073.06,0.583203,205.625,994.122,0.577912,647.306,599.793,0.605816,736.555,510.457,0.506455,557.792,1120.31,0.531952,578.802,1115.14,0.56437,584.106,1078.32,0.457859,158.326,1004.72,0.445159,153.023,994.122,0.504414,205.576,1015.19,0.486697],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[794.342,526.434,0.302865,804.793,521.14,0.314191,0,0,0,815.438,521.131,0.292506,0,0,0,831.214,563.164,0.378928,783.81,562.945,0.375362,831.162,610.57,0.356155,773.313,605.159,0.328742,810.184,573.766,0.312606,768.049,657.748,0.258491,820.681,662.909,0.364581,783.892,657.739,0.371534,820.922,757.578,0.307664,789.082,752.331,0.275877,826.08,846.838,0.278788,804.874,825.934,0.249438,815.145,552.533,0.272802,0,0,0,820.791,862.639,0.2229,836.447,857.628,0.225391,831.24,857.328,0.241984,789.149,852.083,0.217716,783.878,846.87,0.231615,810.081,841.741,0.206587],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0047.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0047.json deleted file mode 100644 index 969861f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0047.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.432,578.906,0.522617,705.075,573.608,0.458196,689.351,568.176,0.497341,736.554,573.483,0.192312,663.041,541.997,0.394575,699.659,647.198,0.65243,584.12,547.304,0.587078,731.2,773.427,0.633344,478.885,515.689,0.585991,736.516,894.299,0.64658,473.766,436.965,0.530553,531.532,789.199,0.60382,452.658,741.859,0.611882,520.962,957.422,0.621033,310.757,862.775,0.642181,573.494,1073.05,0.619879,210.727,988.913,0.602125,647.262,599.802,0.621823,736.564,510.452,0.521138,557.848,1120.35,0.565462,578.88,1115.14,0.599636,578.941,1078.33,0.488291,163.542,1004.74,0.455068,153.056,994.087,0.513372,205.597,1009.93,0.502815],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.53,526.354,0.311906,804.838,521.106,0.32634,0,0,0,815.459,521.114,0.302216,0,0,0,831.218,568.124,0.401942,778.717,562.894,0.388165,831.222,615.623,0.371641,773.192,605.149,0.33156,810.235,578.779,0.320288,762.921,657.726,0.271128,820.678,662.976,0.38845,778.793,657.747,0.397341,820.876,762.718,0.338949,783.931,752.373,0.308575,826.001,846.87,0.30224,804.909,826.038,0.260404,815.2,552.513,0.282226,0,0,0,820.749,862.698,0.235691,836.406,857.628,0.239296,831.132,857.332,0.254257,789.185,852.218,0.229158,783.893,846.979,0.242086,810.101,846.897,0.217805],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0048.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0048.json deleted file mode 100644 index 970889a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0048.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.534,584.016,0.485736,710.303,573.644,0.417959,694.404,568.22,0.475907,0,0,0,668.193,542.031,0.396072,694.592,647.107,0.63447,584.097,552.482,0.55021,726.108,773.372,0.609641,473.756,515.638,0.546842,736.521,894.294,0.617567,478.842,436.96,0.505211,526.38,794.347,0.590442,452.585,741.848,0.591965,515.833,957.425,0.599398,310.712,862.783,0.611934,573.48,1073.07,0.597053,210.808,983.765,0.579503,647.242,599.784,0.58447,736.58,515.61,0.492668,557.815,1120.35,0.536052,578.822,1115.14,0.572324,584.036,1078.33,0.474658,179.218,1009.98,0.446136,158.209,994.13,0.495943,210.755,999.503,0.482207],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.603,526.316,0.310228,804.906,521.069,0.322186,0,0,0,815.545,521.051,0.29724,0,0,0,831.253,563.145,0.403546,778.718,562.888,0.399853,831.239,615.593,0.370592,773.204,605.168,0.345209,815.211,578.83,0.319283,762.937,657.745,0.279856,820.646,662.919,0.392006,778.759,657.69,0.399249,820.897,757.634,0.340004,783.939,752.379,0.304832,825.946,841.777,0.303257,804.796,826.053,0.257235,815.246,552.458,0.281148,0,0,0,820.806,862.711,0.23623,836.446,857.604,0.240904,826.007,857.289,0.256326,794.293,852.257,0.227928,783.899,846.993,0.242073,804.945,846.935,0.218363],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0049.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0049.json deleted file mode 100644 index 1c6f828..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0049.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[694.321,589.293,0.505405,809.987,521.126,0.335004,689.203,568.414,0.495281,0,0,0,657.802,547.268,0.411877,694.625,647.146,0.642056,584.045,547.277,0.563985,726.076,773.357,0.622524,473.722,510.55,0.550169,736.624,894.333,0.640501,478.93,441.996,0.512406,526.394,794.393,0.602587,447.507,741.859,0.611459,515.819,957.452,0.621964,310.78,862.785,0.636374,568.461,1073.06,0.62534,210.821,988.888,0.583245,647.148,599.872,0.589526,736.613,515.672,0.494253,557.855,1120.37,0.573857,578.856,1115.12,0.607789,578.823,1078.35,0.501168,179.247,1015.18,0.463283,158.207,994.216,0.506708,210.795,1004.69,0.492116],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.655,526.394,0.32043,699.896,578.846,0.461552,789.066,526.17,0.261829,815.55,521.158,0.302571,0,0,0,831.221,568.122,0.422228,778.746,562.959,0.41071,831.271,610.557,0.388035,773.238,605.167,0.352969,815.192,578.771,0.338502,762.942,657.724,0.289323,820.658,662.978,0.413082,778.776,657.762,0.414762,820.857,762.708,0.37503,783.95,757.477,0.330824,825.97,841.759,0.326746,804.832,831.107,0.274682,815.263,552.602,0.292184,0,0,0,820.816,862.699,0.256498,836.422,857.59,0.260429,826.039,857.254,0.276882,794.366,857.338,0.244457,783.966,852.119,0.2571,804.965,846.988,0.233987],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0050.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0050.json deleted file mode 100644 index b591ded..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0050.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.264,589.336,0.50835,699.776,578.904,0.468078,689.136,568.464,0.496913,0,0,0,657.754,547.304,0.410731,694.573,647.154,0.653107,584.061,542.065,0.597014,726.104,773.372,0.642121,473.621,510.481,0.585992,736.691,894.266,0.666947,484.156,436.946,0.551438,526.349,789.158,0.617605,447.419,741.824,0.62707,520.867,957.426,0.642234,310.757,867.905,0.665377,568.481,1073.13,0.644255,210.793,994.283,0.617598,647.066,599.869,0.59692,736.565,515.698,0.503038,557.777,1120.43,0.587408,578.821,1115.2,0.624483,578.873,1083.57,0.520314,179.256,1020.48,0.487022,158.172,1004.62,0.528289,210.81,1020.44,0.52436],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.678,526.386,0.336316,810.034,521.115,0.353082,794.323,521.128,0.275713,815.563,521.147,0.315221,0,0,0,831.188,568.146,0.436897,778.68,562.967,0.420192,831.217,615.571,0.390783,773.184,605.152,0.368906,815.233,578.771,0.333471,762.885,657.713,0.305354,820.633,662.905,0.415782,778.721,657.713,0.417212,820.813,757.565,0.378222,783.893,752.3,0.329266,831.144,841.648,0.317751,804.804,826.023,0.27289,815.247,557.677,0.297563,0,0,0,825.997,857.542,0.252774,841.612,857.432,0.258046,831.193,852.189,0.272306,794.389,852.203,0.245229,783.995,846.97,0.255656,809.983,846.92,0.23248],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0051.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0051.json deleted file mode 100644 index 3023fc5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0051.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.294,594.509,0.485086,699.849,584.009,0.418321,689.172,573.513,0.4758,0,0,0,657.73,552.511,0.404062,694.542,647.139,0.655961,578.917,542.017,0.595467,726.085,773.399,0.646747,468.431,510.43,0.566619,741.753,894.302,0.66577,484.249,436.941,0.512043,526.334,789.157,0.620639,447.344,741.852,0.633422,520.972,957.454,0.647037,310.759,868.042,0.663101,573.518,1073.1,0.648112,210.853,1004.68,0.628043,642.007,599.807,0.582966,736.615,515.701,0.501428,557.797,1120.37,0.593555,578.877,1115.17,0.629001,584.057,1083.5,0.51295,179.208,1020.42,0.486691,158.233,1004.62,0.52729,215.991,1025.73,0.547573],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.805,526.367,0.357301,810.1,521.121,0.373314,794.389,521.13,0.296434,820.538,521.144,0.33101,0,0,0,831.202,568.182,0.457317,778.63,563.018,0.446063,831.279,615.62,0.405493,773.15,605.218,0.398743,815.297,578.828,0.343742,762.925,657.747,0.333687,820.632,662.953,0.433445,778.672,657.751,0.434013,820.833,757.579,0.412893,783.883,752.33,0.362564,826.065,841.608,0.34957,804.822,826.007,0.301902,815.279,557.752,0.326588,0,0,0,831.171,857.512,0.28181,841.741,857.381,0.29045,831.122,852.082,0.30116,799.598,852.241,0.267145,789.103,846.982,0.274432,804.912,846.882,0.255778],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0052.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0052.json deleted file mode 100644 index 656d77e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0052.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.243,589.314,0.471838,699.8,578.799,0.423905,689.089,568.424,0.460162,0,0,0,652.552,552.491,0.392592,694.555,647.136,0.655906,578.837,542.011,0.60661,731.203,773.418,0.65091,463.233,510.459,0.575648,741.773,894.298,0.671103,484.184,442.123,0.520983,526.315,789.099,0.626441,447.305,741.845,0.63829,521.057,957.416,0.644081,315.849,868.082,0.672385,573.514,1073.09,0.644772,221.324,1004.67,0.643693,641.984,599.86,0.582667,731.308,515.737,0.475702,557.813,1120.35,0.588341,578.879,1115.15,0.615596,584.022,1078.37,0.503039,189.85,1025.65,0.500945,173.99,1004.77,0.512872,226.464,1025.69,0.558738],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.781,526.385,0.304995,810.055,521.149,0.316166,799.551,521.113,0.245573,815.586,526.111,0.294694,0,0,0,831.182,568.158,0.416938,778.748,562.98,0.393246,831.18,615.582,0.374148,773.249,605.17,0.348439,815.219,578.83,0.325192,762.79,657.655,0.281706,820.661,657.79,0.395287,783.802,657.685,0.402759,820.836,757.518,0.352426,784.034,747.127,0.316029,831.208,841.679,0.30341,804.811,825.972,0.269008,815.259,557.71,0.287137,0,0,0,826.062,857.623,0.238429,841.716,857.497,0.246671,831.237,852.206,0.261583,799.566,852.183,0.243005,789.1,846.944,0.254912,810.021,846.826,0.232345],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0053.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0053.json deleted file mode 100644 index e4d3d70..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0053.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[689.157,584.159,0.553285,699.688,578.757,0.49899,683.955,568.409,0.539994,736.558,573.557,0.166323,652.438,547.344,0.439462,694.55,647.183,0.664113,578.829,541.971,0.618399,731.179,773.344,0.653888,463.094,510.427,0.585244,741.797,894.199,0.674931,484.235,442.121,0.529617,526.392,789.134,0.626331,447.33,741.796,0.644095,521.089,957.374,0.652918,315.958,873.16,0.680709,573.592,1073.03,0.65539,226.618,1004.75,0.646728,641.948,599.897,0.608392,731.3,515.708,0.50871,557.798,1120.29,0.594405,578.848,1115.11,0.621108,584.168,1078.33,0.520347,200.254,1031.01,0.51072,184.516,1020.38,0.524337,231.747,1025.76,0.547609],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.597,531.484,0.307286,809.966,526.144,0.315129,789.1,526.24,0.250948,815.552,526.16,0.293803,0,0,0,831.164,568.207,0.425427,778.748,562.97,0.392876,831.15,615.594,0.385815,773.257,605.174,0.348956,810.243,573.765,0.337286,762.847,657.723,0.278858,820.671,662.909,0.403842,783.812,657.73,0.410218,820.857,757.595,0.370964,789.08,752.33,0.326263,831.186,836.515,0.316409,804.818,825.904,0.28166,815.295,557.737,0.292656,0,0,0,831.232,857.547,0.2438,846.866,857.422,0.254098,831.202,852.117,0.270525,799.596,852.186,0.250864,789.1,846.946,0.262823,804.966,841.706,0.23793],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0054.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0054.json deleted file mode 100644 index 6e4739e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0054.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[683.995,594.494,0.501868,694.548,578.904,0.470708,678.672,568.467,0.482928,710.278,578.842,0.169355,647.293,547.346,0.405352,694.498,647.172,0.659348,573.676,541.984,0.610497,731.196,773.282,0.65072,457.908,510.496,0.571244,741.831,889.06,0.673078,484.318,442.058,0.522328,526.336,789.179,0.626298,442.265,741.87,0.644782,521.045,957.322,0.66231,321.135,873.199,0.679337,573.619,1073.05,0.659703,237.021,1015.15,0.626853,641.804,599.929,0.596616,720.834,515.724,0.490704,557.767,1120.32,0.601589,578.837,1115.16,0.633607,589.318,1078.37,0.525729,200.356,1036.22,0.512284,189.721,1020.46,0.534908,242.29,1030.96,0.538608],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.648,526.354,0.299568,810.029,521.096,0.307333,794.336,521.07,0.24562,815.545,521.167,0.283034,0,0,0,831.156,568.144,0.399054,778.696,562.905,0.375382,831.146,615.591,0.365142,773.283,605.115,0.324274,810.245,578.756,0.32277,762.828,657.678,0.254993,820.657,657.805,0.375833,778.822,657.696,0.383591,820.862,757.542,0.324955,789.097,752.28,0.289181,831.158,836.519,0.279899,804.842,825.831,0.257848,815.21,552.623,0.276336,0,0,0,831.203,857.598,0.214299,846.876,857.478,0.225982,831.183,852.169,0.236488,799.607,852.129,0.224854,789.119,846.872,0.236747,809.982,841.596,0.214138],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0055.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0055.json deleted file mode 100644 index 53d97a6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0055.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[684.015,589.411,0.467977,694.558,578.886,0.437503,678.702,568.457,0.446022,705.093,578.792,0.153988,647.236,547.343,0.393651,694.482,647.076,0.659876,573.564,541.997,0.597012,726.029,773.217,0.653973,452.597,515.609,0.585984,741.826,888.984,0.677279,484.245,442.223,0.499105,531.457,789.079,0.622094,447.372,741.86,0.644037,521.041,952.157,0.665691,321.325,873.221,0.672658,573.609,1073.07,0.661849,258.09,1015.22,0.609173,636.687,599.853,0.589412,726.048,515.708,0.448704,557.781,1120.34,0.599202,578.875,1115.18,0.629593,589.29,1083.53,0.521443,226.577,1046.7,0.515686,215.972,1025.76,0.517293,263.31,1031.01,0.537494],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.692,526.382,0.315572,810.073,521.125,0.326622,794.393,521.101,0.263567,815.533,526.1,0.300364,0,0,0,826.035,568.225,0.43756,778.659,563.019,0.410087,831.143,615.622,0.387995,773.274,605.231,0.347873,810.231,578.766,0.344367,762.816,657.703,0.259331,820.629,662.925,0.405394,778.703,657.752,0.410539,820.846,757.621,0.360426,784.016,752.356,0.317301,831.147,836.522,0.303171,804.927,825.921,0.279005,815.212,557.738,0.289318,0,0,0,831.279,857.564,0.232189,846.877,857.436,0.243565,831.172,852.156,0.255026,804.816,852.214,0.247499,794.351,846.976,0.254819,810.04,841.722,0.235327],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0056.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0056.json deleted file mode 100644 index 75db911..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0056.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[673.518,589.385,0.447697,694.378,578.824,0.445055,662.981,568.409,0.437371,705.111,573.657,0.151758,647.048,547.318,0.388665,694.447,642.006,0.640086,573.512,542.084,0.5606,726.061,768.144,0.638538,447.453,515.704,0.54614,741.856,883.855,0.658087,484.192,442.291,0.44447,526.353,783.875,0.61881,447.321,741.803,0.62807,521.042,952.105,0.647014,331.645,878.52,0.650019,573.609,1073.06,0.643679,268.715,1025.76,0.625403,636.626,605.019,0.560421,715.505,515.771,0.423866,557.748,1120.29,0.571907,578.836,1115.15,0.60682,589.28,1083.52,0.505502,268.525,1062.55,0.51314,237.109,1052.05,0.512103,268.68,1041.43,0.524901],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.803,526.359,0.323648,810.145,521.124,0.334584,799.559,521.092,0.27368,820.5,521.143,0.299182,789.093,521.048,0.128586,831.193,568.16,0.42346,778.638,563.062,0.416231,831.18,615.673,0.380608,773.227,610.262,0.354727,815.198,578.801,0.33579,762.829,657.732,0.271325,820.684,662.919,0.400601,778.807,657.764,0.402046,820.859,757.617,0.356517,789.088,757.467,0.312749,831.262,841.665,0.29758,809.985,826.014,0.269194,815.207,557.757,0.289137,0,0,0,836.392,857.595,0.233002,846.914,857.467,0.244722,831.252,852.19,0.253985,804.815,852.234,0.242883,794.378,847.002,0.249551,810.11,846.837,0.230614],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0057.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0057.json deleted file mode 100644 index 1e6d1c6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0057.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[678.703,589.355,0.395349,694.417,578.776,0.383181,663.04,568.38,0.385181,699.874,573.528,0.137936,647.197,547.343,0.388152,694.408,641.944,0.547209,573.62,552.468,0.498677,725.983,768.107,0.513553,447.495,515.776,0.477715,741.762,888.93,0.517835,484.06,452.558,0.435556,526.23,783.813,0.559337,447.521,741.913,0.551373,521.046,952.075,0.54214,342.198,888.946,0.534288,573.565,1073.01,0.536094,274.041,1036.24,0.525975,636.734,599.868,0.543231,715.572,515.768,0.394823,557.712,1115.22,0.458559,578.749,1115.08,0.479485,589.318,1078.33,0.414208,268.746,1072.92,0.414863,252.85,1062.59,0.399733,274.033,1057.22,0.443379],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.863,526.349,0.313239,810.201,521.114,0.320468,799.652,521.094,0.264336,820.494,521.14,0.297668,778.634,526.202,0.156747,836.395,563.152,0.399651,778.533,568.127,0.460627,831.29,610.538,0.36387,773.195,610.446,0.38066,810.235,578.759,0.341151,757.63,662.878,0.275714,820.646,662.93,0.402193,778.764,657.785,0.402012,820.878,762.696,0.3619,789.066,757.5,0.319698,831.194,841.712,0.309806,804.894,826.021,0.280512,815.186,557.747,0.296089,0,0,0,831.193,862.649,0.241047,841.774,857.529,0.250871,831.218,852.225,0.261035,799.677,852.244,0.250226,794.316,847.018,0.257494,810.045,846.853,0.233352],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0058.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0058.json deleted file mode 100644 index 580ccfa..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0058.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[668.236,589.365,0.41405,689.378,578.777,0.410854,657.704,568.398,0.413732,699.798,573.476,0.140444,647.021,547.275,0.397629,689.318,641.84,0.550912,573.477,552.502,0.505706,726.001,768.036,0.522831,447.416,515.834,0.476607,741.754,883.809,0.522674,478.883,452.618,0.413452,526.224,778.678,0.579903,452.597,741.862,0.561966,521.039,947.029,0.539154,352.634,889.104,0.536191,573.544,1073.06,0.542773,294.934,1046.75,0.504558,631.436,599.869,0.583035,710.279,515.685,0.443421,552.597,1115.27,0.466222,573.704,1115.15,0.490818,589.296,1083.5,0.419356,284.413,1088.86,0.429325,268.512,1073.18,0.441251,294.922,1062.41,0.428349],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.912,526.302,0.318658,810.236,521.082,0.327234,799.694,521.06,0.271056,820.492,521.112,0.299364,783.824,526.144,0.170284,831.282,563.165,0.406188,773.453,568.158,0.481901,831.267,610.561,0.367852,773.191,610.484,0.389609,810.215,573.708,0.336648,757.543,662.921,0.277893,820.609,662.975,0.40455,778.657,662.905,0.405711,820.864,762.703,0.36037,789.106,757.551,0.318248,831.265,841.729,0.31196,810.07,831.133,0.289056,815.155,557.771,0.305317,0,0,0,836.399,862.649,0.243241,846.909,857.54,0.254133,836.379,852.268,0.26247,804.844,857.346,0.255348,794.443,852.138,0.261707,810.178,846.925,0.242641],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0059.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0059.json deleted file mode 100644 index 6381bb8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0059.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[652.451,594.59,0.508744,683.94,584.128,0.444608,647.28,573.481,0.494142,694.583,578.848,0.178451,636.619,542.009,0.387265,689.314,641.865,0.656129,568.286,536.748,0.616478,726.009,762.901,0.640205,442.214,520.865,0.621893,741.804,878.522,0.670534,468.481,457.859,0.514257,531.477,778.629,0.629657,447.424,741.76,0.645997,521.016,946.963,0.672028,352.795,899.436,0.673866,573.592,1073.05,0.67068,315.827,1062.39,0.67631,620.917,605.026,0.591781,699.866,515.676,0.481944,557.749,1120.36,0.59431,578.855,1115.18,0.63318,589.285,1083.51,0.528363,310.63,1094.06,0.559695,279.139,1078.35,0.561928,315.929,1067.81,0.59179],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.716,526.372,0.309951,810.087,521.114,0.319353,799.581,521.119,0.254102,815.518,521.154,0.29069,794.341,521.057,0.118982,825.984,568.175,0.426039,778.67,563.052,0.396856,826.029,615.65,0.378935,773.362,610.312,0.348108,810.168,573.723,0.328463,757.618,657.789,0.252879,820.668,662.903,0.388149,783.84,657.792,0.386003,820.921,762.694,0.336274,789.122,757.541,0.299959,831.268,841.732,0.285473,810.091,831.101,0.261715,815.166,557.751,0.285399,0,0,0,836.518,862.642,0.222962,847.005,857.542,0.236403,831.213,852.305,0.247077,809.991,857.302,0.240298,799.653,852.12,0.248005,810.149,846.894,0.227111],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0060.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0060.json deleted file mode 100644 index 3d31922..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0060.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[652.621,584.175,0.418649,684.04,578.733,0.392671,652.376,568.265,0.410712,694.567,573.6,0.177979,636.698,541.962,0.34729,689.318,636.742,0.64714,568.248,536.763,0.588514,725.997,762.838,0.639115,442.149,520.956,0.564851,741.767,878.491,0.656911,463.21,457.871,0.42461,526.39,778.569,0.628105,447.393,741.754,0.636853,521.06,946.984,0.673916,358.051,899.462,0.661688,573.59,1073.08,0.67522,326.442,1067.65,0.686285,626.105,599.816,0.566201,699.833,515.677,0.430045,552.59,1120.39,0.603865,578.81,1115.21,0.64157,584.166,1083.59,0.536296,316.068,1109.82,0.585379,294.973,1099.34,0.561117,331.75,1073.1,0.580165],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[794.393,526.399,0.24997,804.899,521.154,0.250894,789.181,521.165,0.188052,815.496,521.143,0.252642,773.295,521.11,0.0749639,825.953,568.149,0.376028,778.734,563.072,0.341917,825.936,615.75,0.347075,773.378,610.369,0.302926,810.073,578.766,0.289288,757.577,662.997,0.234854,820.656,668.137,0.342445,783.835,662.975,0.341202,820.928,762.849,0.298964,789.189,757.642,0.25749,831.23,846.98,0.262078,810.12,831.278,0.237224,815.167,557.69,0.260631,0,0,0,831.209,862.882,0.201927,846.866,862.713,0.209766,831.242,857.437,0.225746,804.873,857.411,0.206298,799.622,852.222,0.214629,810.232,852.083,0.201481],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0061.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0061.json deleted file mode 100644 index 5d83ac0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0061.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.325,584.132,0.532302,678.654,578.737,0.475224,647.106,568.284,0.517404,694.471,573.634,0.236784,631.333,536.81,0.399699,689.205,636.747,0.656737,563.109,536.742,0.612699,725.959,762.802,0.638742,436.979,521.003,0.597703,741.827,878.469,0.659925,463.112,457.918,0.481318,531.456,778.55,0.63484,447.395,741.865,0.648946,521.099,946.933,0.675933,373.783,904.897,0.635163,573.564,1073.13,0.673139,347.433,1073,0.681648,620.842,599.843,0.61134,699.708,515.627,0.504265,552.571,1120.41,0.602491,578.776,1120.27,0.639397,584.079,1088.82,0.53872,342.166,1125.64,0.618131,315.89,1115.17,0.634007,352.715,1083.53,0.580661],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.638,526.454,0.289022,810.028,526.1,0.295643,794.377,526.133,0.234341,815.503,526.148,0.276134,778.615,526.187,0.111027,831.158,568.142,0.395105,778.654,563.145,0.398047,825.977,615.717,0.368601,773.273,610.353,0.344566,810.116,578.775,0.315059,757.617,662.962,0.26371,820.677,662.976,0.387014,783.823,662.896,0.387615,825.855,757.618,0.338249,789.243,752.377,0.293283,836.41,841.711,0.289108,810.14,825.942,0.271047,815.192,557.85,0.285255,0,0,0,831.26,862.631,0.225864,846.851,857.559,0.235053,836.439,852.278,0.247003,804.853,852.21,0.233475,799.593,846.984,0.241928,815.19,841.69,0.223831],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0062.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0062.json deleted file mode 100644 index 3d87718..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0062.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.153,584.08,0.519762,668.188,573.663,0.443594,641.964,568.276,0.501519,694.334,573.566,0.241164,626.093,536.849,0.40969,689.161,636.693,0.663537,563.008,536.736,0.62016,720.84,762.772,0.645078,436.814,521.065,0.606032,741.786,873.298,0.671576,452.683,468.485,0.515693,531.544,778.569,0.633104,447.371,747.064,0.654922,526.151,946.895,0.674346,389.516,920.593,0.65073,573.551,1073.1,0.667492,363.304,1078.27,0.638704,615.601,599.835,0.621634,699.734,510.506,0.494312,552.536,1120.43,0.59709,573.704,1120.3,0.631234,584.047,1088.79,0.529286,363.302,1141.29,0.556328,342.171,1125.69,0.585642,368.595,1088.85,0.547562],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.802,526.355,0.322205,810.149,521.107,0.332805,799.614,521.115,0.261966,815.599,521.162,0.299992,778.613,526.18,0.125355,831.165,568.136,0.426578,778.623,563.077,0.426371,826.023,615.688,0.391821,773.266,610.254,0.36741,810.229,573.728,0.334827,762.829,662.868,0.271539,820.639,662.963,0.41707,778.746,662.894,0.419022,825.87,757.569,0.378752,789.208,752.369,0.329253,836.456,841.611,0.314194,810.123,825.952,0.288997,815.264,557.776,0.308326,0,0,0,836.521,857.579,0.24924,846.981,857.441,0.260022,836.438,852.169,0.273371,804.882,852.172,0.256946,799.582,846.954,0.264115,810.198,841.721,0.245475],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0063.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0063.json deleted file mode 100644 index 65f9bd8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0063.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.058,578.923,0.496034,662.886,573.556,0.436921,641.872,568.17,0.465524,689.304,568.466,0.250028,626.083,536.715,0.376542,689.067,631.441,0.649402,557.85,536.758,0.600258,720.757,757.636,0.627917,436.795,526.161,0.56878,741.767,873.22,0.652976,442.21,473.696,0.491966,531.587,773.467,0.630214,447.424,747.01,0.646026,526.233,946.901,0.666439,394.769,925.807,0.665481,573.573,1073.14,0.654794,389.544,1094.03,0.635889,610.442,594.649,0.621496,694.589,510.495,0.471169,557.717,1120.46,0.593403,578.817,1120.32,0.624799,584.033,1088.84,0.524816,389.505,1141.38,0.558731,352.771,1136.09,0.554998,394.711,1109.84,0.575472],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.649,526.398,0.301562,810.046,521.138,0.310626,799.574,521.141,0.234171,815.525,521.177,0.295853,794.357,521.124,0.105194,831.197,563.191,0.410563,778.725,563.119,0.413752,825.961,615.698,0.380845,773.356,610.322,0.357649,810.19,573.75,0.325202,762.922,662.995,0.273361,820.697,662.944,0.405659,783.886,657.795,0.403538,825.869,757.589,0.351368,794.374,752.358,0.307322,836.452,841.698,0.296893,810.176,825.99,0.282398,815.241,557.78,0.286826,0,0,0,831.233,857.667,0.236306,841.741,857.529,0.242948,836.496,852.253,0.253496,804.853,852.206,0.245598,799.589,846.986,0.254058,815.22,841.742,0.232972],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0064.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0064.json deleted file mode 100644 index d453330..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0064.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[647.244,584.046,0.494491,663.026,573.556,0.410444,647.019,568.224,0.470025,689.268,568.4,0.170666,620.941,536.718,0.404099,683.953,631.356,0.648322,557.706,531.6,0.604786,720.728,757.562,0.631392,426.407,526.211,0.608378,741.816,868.019,0.658757,442.131,468.431,0.505714,536.752,778.526,0.627229,447.467,752.245,0.650047,526.287,946.896,0.661975,400.083,931.078,0.66766,573.545,1073.08,0.655535,394.91,1083.58,0.642491,610.38,589.409,0.638533,694.604,505.283,0.49572,557.803,1120.41,0.605179,578.868,1115.22,0.627142,578.866,1083.6,0.527431,394.965,1141.41,0.587784,373.796,1130.94,0.554865,400.143,1099.37,0.549864],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[794.409,526.45,0.305407,804.915,521.169,0.309956,789.146,526.151,0.240495,815.476,521.191,0.298931,0,0,0,831.159,563.166,0.414359,778.637,563.124,0.420897,825.917,615.702,0.382068,773.322,610.358,0.360233,810.171,573.75,0.333869,757.653,668.125,0.262327,820.656,662.964,0.415334,783.818,662.901,0.40923,825.848,762.716,0.364262,794.342,757.529,0.317856,836.482,846.845,0.302,815.25,831.258,0.285863,815.208,557.782,0.290111,0,0,0,831.268,862.774,0.234259,846.867,857.638,0.242044,836.514,857.307,0.251399,810.022,857.396,0.242573,804.833,852.223,0.250684,815.335,847.03,0.234795],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0065.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0065.json deleted file mode 100644 index b8b6c39..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0065.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[642.055,578.897,0.435152,657.655,573.468,0.395412,636.745,563.177,0.411387,673.477,562.981,0.178357,615.731,531.592,0.414423,683.887,631.311,0.50434,552.533,536.857,0.463701,720.668,757.525,0.454122,426.317,526.4,0.422958,741.724,868.091,0.45179,436.837,484.094,0.387054,526.272,778.551,0.595481,452.727,757.552,0.571196,521.111,946.869,0.56671,410.691,936.323,0.505493,568.324,1073.17,0.504374,415.86,1104.58,0.489144,605.207,594.615,0.630362,694.416,505.155,0.483521,547.322,1120.42,0.461495,573.585,1115.23,0.458175,573.649,1088.85,0.39729,426.349,1151.98,0.501821,394.874,1151.73,0.489219,436.817,1115.02,0.456825],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.676,526.367,0.292501,810.089,521.12,0.292231,799.571,521.142,0.234027,815.512,521.124,0.294384,0,0,0,831.262,563.109,0.394462,773.413,568.246,0.478884,826.101,610.518,0.357705,773.249,615.726,0.401823,810.183,573.662,0.321753,762.785,673.453,0.269642,820.624,662.947,0.408564,778.793,662.917,0.40211,825.904,757.598,0.351789,794.364,757.509,0.312791,841.626,841.72,0.302673,815.212,831.17,0.285115,815.107,557.738,0.28303,0,0,0,836.434,862.681,0.235304,846.944,857.572,0.244905,841.64,852.3,0.256988,804.954,857.322,0.249997,804.782,852.148,0.257518,815.242,846.946,0.239261],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0066.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0066.json deleted file mode 100644 index e4741c4..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0066.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[641.829,578.84,0.573832,652.437,568.447,0.526627,631.45,563.118,0.537527,678.727,573.501,0.19108,605.201,531.497,0.456994,678.763,626.136,0.647751,531.555,531.539,0.618214,715.494,747.123,0.640982,415.793,531.549,0.603396,741.747,862.855,0.671893,415.861,494.723,0.56894,536.798,778.694,0.631578,447.407,762.737,0.668848,531.471,946.909,0.669044,426.323,941.505,0.665229,573.468,1073.07,0.657385,436.748,1109.92,0.641974,599.927,594.589,0.63246,684.013,500.024,0.49899,557.723,1120.42,0.614355,578.803,1115.19,0.624501,578.776,1083.6,0.533583,436.785,1157.14,0.566999,400.22,1151.86,0.568668,436.944,1120.39,0.56083],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.695,526.326,0.357211,810.129,521.08,0.368113,794.422,521.084,0.305387,815.591,521.136,0.32627,783.879,521.056,0.157824,831.208,563.148,0.451302,778.6,563.152,0.46805,825.951,615.664,0.412981,773.376,610.431,0.391336,810.196,573.648,0.358869,767.977,668.229,0.273596,820.656,663.015,0.454238,778.76,662.959,0.442641,825.919,757.606,0.396404,794.338,757.527,0.346337,841.643,841.689,0.325192,815.206,831.199,0.303258,815.153,557.768,0.337315,768.04,489.483,0.392504,836.481,862.681,0.256592,846.993,857.541,0.266777,841.648,852.27,0.274144,804.953,857.408,0.264549,799.673,852.216,0.269555,815.251,846.982,0.251049],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0067.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0067.json deleted file mode 100644 index 8c2d018..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0067.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[631.478,573.599,0.397867,647.193,568.278,0.367271,620.922,562.926,0.362527,657.668,557.781,0.213662,610.244,526.389,0.407355,673.463,620.938,0.492306,536.783,531.489,0.474896,710.344,747.004,0.457183,405.37,547.201,0.400356,741.717,862.732,0.456058,421.164,499.933,0.397531,526.289,778.687,0.596182,452.703,768.026,0.577999,526.2,946.932,0.582104,442.247,946.799,0.573752,568.149,1073.13,0.522584,447.397,1115.16,0.518074,599.892,589.389,0.632382,668.22,489.539,0.463264,552.551,1120.42,0.477038,573.524,1115.18,0.473756,568.286,1088.87,0.436649,447.504,1162.45,0.495536,431.621,1157.21,0.434697,452.689,1125.68,0.428339],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.689,526.296,0.317712,810.148,521.051,0.323777,794.454,521.076,0.259172,815.593,521.083,0.308662,747.019,531.532,0.171219,831.231,563.107,0.413642,773.414,568.205,0.486942,826.1,610.456,0.379091,773.22,615.732,0.405597,810.117,573.622,0.335415,762.809,678.692,0.283497,820.64,662.984,0.42391,778.751,662.917,0.417549,825.927,757.62,0.369648,794.382,757.53,0.330086,841.751,841.696,0.308448,815.304,836.35,0.292044,815.131,557.676,0.305672,773.312,489.376,0.348548,841.698,862.654,0.236717,852.109,857.528,0.247318,841.715,852.301,0.258348,810.1,857.42,0.250405,804.895,852.262,0.256798,815.286,852.05,0.2415],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0068.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0068.json deleted file mode 100644 index a237670..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0068.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[636.575,568.412,0.433078,647.193,563.083,0.401428,620.936,552.602,0.380746,647.235,547.3,0.195656,605.064,526.273,0.429068,668.166,620.806,0.492255,531.45,536.727,0.477234,710.273,741.809,0.466241,400.26,547.347,0.397959,736.723,857.605,0.462231,405.448,499.997,0.407473,531.48,778.748,0.570092,452.754,768.136,0.589424,526.228,947.039,0.578077,447.457,946.922,0.571345,563.136,1078.29,0.52129,452.771,1120.27,0.531349,599.836,589.307,0.628646,657.748,484.283,0.482727,552.456,1125.56,0.473172,573.487,1115.27,0.473993,563.172,1099.3,0.433948,452.717,1172.87,0.502355,436.953,1162.48,0.469268,468.46,1125.72,0.447491],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.722,526.284,0.338728,810.177,521.043,0.347111,794.435,521.066,0.287411,815.608,521.077,0.319574,768.061,526.24,0.182142,831.205,563.088,0.420867,773.383,568.211,0.500479,831.128,610.39,0.37467,773.186,615.753,0.415718,810.114,573.615,0.334405,762.813,678.755,0.289014,820.649,662.935,0.419668,778.733,662.888,0.414694,825.923,757.619,0.368005,789.198,757.521,0.332095,841.643,841.63,0.304613,815.211,831.242,0.287353,815.121,557.703,0.319349,773.427,484.348,0.349242,836.389,862.643,0.243839,846.942,857.492,0.251015,841.637,852.235,0.259718,810.004,857.413,0.256944,799.676,852.227,0.260484,815.233,847.029,0.240504],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0069.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0069.json deleted file mode 100644 index ed0d749..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0069.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[626.139,568.383,0.379471,646.955,563.044,0.359236,615.578,552.592,0.347725,647.253,552.497,0.197168,599.822,526.206,0.39723,657.705,610.507,0.493176,526.251,536.773,0.487391,710.339,731.429,0.478053,405.275,552.437,0.397196,741.817,852.252,0.460996,400.236,500.048,0.405909,531.577,778.745,0.561978,452.787,768.198,0.579854,526.234,947.026,0.593913,452.731,952.09,0.576681,563.069,1078.42,0.550719,468.432,1125.68,0.539229,594.613,584.137,0.602139,652.434,484.135,0.469481,547.294,1125.71,0.474412,568.38,1120.37,0.488142,568.239,1104.56,0.487686,457.845,1183.45,0.503514,442.074,1178.11,0.48511,484.085,1146.53,0.46516],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.82,526.221,0.361485,810.193,520.989,0.367614,799.616,521.001,0.30111,820.548,521.038,0.331375,773.349,521.081,0.18497,831.242,563.145,0.456892,773.446,568.212,0.520089,831.139,610.403,0.394343,773.285,620.865,0.449626,810.166,573.648,0.348429,762.852,678.733,0.307738,820.664,668.144,0.448631,778.751,662.961,0.437913,825.885,757.641,0.404271,789.168,757.503,0.365946,841.761,841.633,0.32843,815.341,831.205,0.316927,815.16,557.672,0.350333,794.315,484.326,0.351333,831.229,862.677,0.264665,841.76,857.529,0.267912,846.904,852.279,0.283102,804.957,857.396,0.266854,804.866,852.173,0.272378,815.376,847.001,0.264244],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0070.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0070.json deleted file mode 100644 index 43fbbbb..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0070.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[620.928,568.247,0.433248,641.893,562.853,0.396216,610.478,547.272,0.389696,647.124,541.99,0.183732,589.288,521.035,0.415524,652.567,610.361,0.531878,521.008,536.75,0.519039,710.211,731.223,0.521132,400.148,557.766,0.425016,741.851,846.935,0.498096,394.97,515.669,0.438518,541.983,783.948,0.569104,452.646,773.352,0.599819,531.503,952.123,0.609643,457.867,952.124,0.59971,568.167,1083.53,0.572056,478.953,1130.8,0.552726,584.162,578.914,0.604258,647.193,484.105,0.482642,542.056,1130.92,0.479771,568.385,1120.49,0.503181,573.474,1104.61,0.500987,468.397,1183.5,0.497017,447.359,1178.25,0.492527,489.469,1146.57,0.461268],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.714,526.27,0.382896,810.162,521.033,0.387268,794.427,521.036,0.33647,820.534,521.092,0.327217,778.576,520.987,0.191963,831.191,563.169,0.459389,773.475,568.201,0.506721,826.057,610.447,0.397788,773.402,615.74,0.436829,810.242,573.676,0.34632,762.85,678.706,0.291918,820.643,668.203,0.454975,778.754,663.025,0.441273,825.884,757.618,0.421093,794.414,757.53,0.37833,846.903,841.645,0.348343,815.338,836.377,0.345877,810.249,557.743,0.358892,794.401,484.35,0.353254,831.275,862.725,0.278869,846.9,857.581,0.283486,846.943,857.287,0.301703,810.05,857.475,0.27811,804.902,852.235,0.283773,815.409,852.115,0.289011],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0071.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0071.json deleted file mode 100644 index f561b8d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0071.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[615.574,563.183,0.4937,636.647,557.723,0.409388,610.292,542.043,0.45413,652.423,536.787,0.173742,578.872,520.958,0.431517,652.572,605.18,0.650226,515.705,531.571,0.65022,710.199,726.048,0.650909,400.185,557.704,0.571146,741.872,841.655,0.655573,394.697,515.827,0.583935,562.935,789.189,0.62595,452.625,773.39,0.656253,542.06,957.361,0.641102,457.96,952.232,0.657372,568.343,1078.35,0.633128,484.286,1136.17,0.636838,578.909,578.857,0.632273,647.183,478.94,0.506867,552.471,1130.96,0.529691,573.614,1120.48,0.557733,573.543,1099.35,0.530527,484.132,1193.84,0.597952,457.956,1188.7,0.591779,500.005,1151.82,0.524722],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.628,526.338,0.357945,810.045,521.095,0.36245,794.374,521.091,0.304659,815.58,521.14,0.310163,794.364,520.95,0.14743,831.136,563.137,0.4426,778.737,563.157,0.449874,825.914,610.504,0.389385,778.539,610.516,0.382232,810.203,573.638,0.34415,762.899,673.431,0.255025,820.674,662.984,0.423329,783.811,662.883,0.411783,825.877,762.679,0.37622,794.423,757.478,0.339534,841.764,846.864,0.300327,815.319,836.438,0.292018,815.139,557.761,0.31685,789.105,489.372,0.317914,831.159,862.854,0.240776,841.723,862.687,0.24394,841.778,857.437,0.258263,810.029,857.479,0.245535,804.836,852.23,0.250261,815.44,852.144,0.241775],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0072.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0072.json deleted file mode 100644 index 4a0909f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0072.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[605.209,563.039,0.488038,626.172,552.521,0.408111,599.877,536.699,0.44073,636.696,526.228,0.191421,573.569,515.784,0.451316,647.218,605.011,0.589624,510.543,531.609,0.558873,705.057,715.585,0.560345,399.967,563.005,0.506615,746.995,831.221,0.558473,389.558,521.016,0.520402,552.533,789.147,0.586248,457.956,773.481,0.60774,536.729,952.242,0.612048,473.638,962.594,0.60664,563.155,1078.34,0.579814,494.782,1136.16,0.56647,573.646,573.665,0.66131,641.906,473.59,0.516941,552.479,1130.86,0.458715,568.441,1120.4,0.487874,568.326,1099.37,0.50434,489.405,1194.02,0.539468,468.381,1193.84,0.533817,515.744,1146.64,0.477363],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.679,526.323,0.361547,810.109,521.078,0.366356,794.386,521.084,0.31523,815.599,521.124,0.309523,783.833,520.963,0.168923,831.146,563.129,0.434734,778.581,563.141,0.467113,825.954,610.466,0.375996,773.37,615.587,0.408315,810.174,573.661,0.333359,752.405,673.481,0.2816,820.613,662.932,0.425773,778.736,657.786,0.423334,820.88,757.552,0.378466,789.131,752.299,0.355676,841.722,841.671,0.30779,810.184,836.357,0.313821,810.251,557.755,0.310887,794.343,484.382,0.306541,831.241,862.737,0.251419,846.927,857.586,0.255017,841.665,857.315,0.264645,810.012,857.412,0.255124,799.69,852.193,0.257115,815.27,852.146,0.263188],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0073.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0073.json deleted file mode 100644 index 54597e3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0073.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[599.878,562.904,0.534102,615.562,547.226,0.45944,589.387,531.456,0.512849,641.819,526.361,0.196174,568.312,515.63,0.486621,647.173,594.669,0.656938,505.136,531.6,0.639815,704.957,710.232,0.650698,394.821,568.241,0.597156,747.163,820.813,0.655628,379.006,526.383,0.574295,562.935,789.141,0.639459,457.843,778.537,0.649988,547.251,957.374,0.648698,473.679,967.897,0.654152,568.304,1073.11,0.625206,505.22,1136.18,0.651429,568.448,573.685,0.647637,631.454,468.447,0.533435,557.795,1125.73,0.507908,578.767,1120.3,0.542328,573.469,1088.81,0.509488,489.509,1199.16,0.603993,473.67,1193.92,0.615856,520.868,1146.69,0.539984],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.611,526.332,0.32907,810.064,521.101,0.331292,789.217,521.09,0.281204,815.589,521.139,0.289017,794.358,520.967,0.124921,831.151,563.104,0.409619,778.664,563.07,0.427215,820.795,615.596,0.370335,773.352,610.497,0.362312,810.106,573.656,0.315424,752.304,673.393,0.260186,820.658,657.8,0.397528,778.759,657.728,0.390173,825.86,762.726,0.346708,789.183,757.524,0.312082,846.919,846.937,0.286878,815.302,841.675,0.283476,815.161,557.755,0.279976,794.315,484.381,0.267195,826.014,862.882,0.245747,841.754,862.7,0.241601,846.928,857.478,0.24442,810.049,857.573,0.231946,804.852,857.341,0.232815,815.422,852.314,0.237547],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0074.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0074.json deleted file mode 100644 index 7c2b065..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0074.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[594.518,552.514,0.54804,610.32,531.529,0.516007,578.866,526.197,0.559261,631.443,526.157,0.236502,562.955,510.446,0.495428,647.056,589.425,0.659404,489.453,541.99,0.627851,699.808,699.702,0.675566,373.803,578.854,0.555698,752.345,815.321,0.664716,357.976,547.309,0.522417,562.978,794.361,0.633548,457.848,778.701,0.637928,552.594,957.401,0.629953,478.964,967.859,0.659801,568.242,1073.08,0.593519,515.65,1136.13,0.647965,568.294,573.68,0.647647,610.493,452.724,0.555694,557.813,1125.69,0.467607,573.631,1120.28,0.505839,568.428,1083.61,0.479642,499.905,1199.2,0.590786,478.96,1193.98,0.601893,526.173,1146.66,0.513447],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.687,526.328,0.356752,810.135,521.088,0.361688,794.376,521.074,0.311029,820.506,521.14,0.308838,789.148,520.953,0.147448,831.154,563.121,0.427358,778.696,563.068,0.439593,820.856,610.562,0.383147,773.368,610.479,0.380579,810.12,573.686,0.322494,752.446,668.267,0.272056,820.651,657.779,0.411615,778.752,657.744,0.401337,825.864,762.727,0.37548,783.983,757.575,0.34296,841.672,847.008,0.301374,804.953,846.881,0.289986,815.185,557.789,0.300082,799.615,484.379,0.281364,820.769,867.968,0.269017,841.686,862.81,0.259063,841.644,857.522,0.259955,794.378,862.671,0.244604,783.895,857.483,0.249486,810.075,857.342,0.250686],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0075.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0075.json deleted file mode 100644 index 83881a1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0075.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[584.164,547.316,0.518312,605.076,526.376,0.483508,573.657,526.161,0.52364,626.144,520.957,0.205768,552.586,505.278,0.457562,641.898,589.278,0.668368,484.209,536.779,0.633299,704.964,694.529,0.67731,373.77,578.843,0.557364,757.618,810.086,0.662032,342.284,568.402,0.550092,563.089,794.338,0.640829,457.997,778.715,0.635117,552.561,957.346,0.626575,484.075,973.119,0.65823,568.194,1073.14,0.572246,520.935,1136.16,0.64593,563.023,573.571,0.6337,605.196,447.438,0.556233,557.85,1130.93,0.45081,573.587,1120.35,0.483919,568.385,1088.78,0.463105,500.036,1199.3,0.577264,484.129,1194.01,0.589335,531.464,1151.79,0.494213],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.678,526.297,0.36587,810.139,521.06,0.367432,794.374,521.039,0.318727,820.519,521.127,0.305129,789.154,520.936,0.159042,831.111,563.138,0.43739,778.69,563.068,0.449166,820.839,610.576,0.384017,773.397,610.453,0.382965,810.183,573.635,0.331596,757.559,668.259,0.262389,820.543,662.976,0.418347,778.656,662.987,0.410258,825.878,762.753,0.390844,783.947,762.738,0.353757,841.702,852.047,0.31513,810.036,846.989,0.306487,815.171,557.788,0.318805,804.782,484.382,0.299311,815.47,868.058,0.275302,831.142,868.018,0.257727,846.958,857.615,0.272942,789.097,862.749,0.260783,783.804,857.531,0.266154,810.164,857.423,0.256474],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0076.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0076.json deleted file mode 100644 index 2e004b3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0076.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[573.484,536.765,0.586448,589.264,521.156,0.550198,563.152,520.986,0.589399,610.514,520.838,0.345521,536.753,505.192,0.44957,641.801,584.136,0.674214,478.963,542.077,0.632603,705.088,694.384,0.668246,368.606,589.335,0.585885,762.904,799.641,0.651908,342.158,573.698,0.5936,568.191,799.634,0.650362,463.177,789.137,0.63447,552.518,967.909,0.616898,484.202,978.379,0.661745,563.075,1078.29,0.532057,526.203,1130.92,0.604933,562.986,573.534,0.647156,594.613,442.235,0.586729,557.806,1130.9,0.3813,568.436,1120.39,0.417094,568.283,1094.08,0.437303,505.263,1199.29,0.542173,489.377,1193.97,0.538448,541.994,1146.53,0.446421],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.678,526.341,0.365498,810.149,521.1,0.370253,794.384,521.082,0.315112,820.578,521.152,0.313068,789.154,520.985,0.145449,831.192,563.145,0.43395,778.764,563.068,0.445629,825.918,610.561,0.385719,773.45,610.366,0.389634,810.224,573.669,0.343648,757.691,663.002,0.259886,820.609,662.947,0.418022,778.762,662.965,0.405762,825.858,762.79,0.386513,789.085,762.73,0.35298,836.51,847.002,0.304816,810.09,846.975,0.304382,815.234,557.776,0.332528,804.8,489.412,0.311906,815.282,862.859,0.278303,820.738,862.874,0.26192,846.904,857.584,0.265191,783.876,857.622,0.254704,778.717,857.439,0.259955,810.209,857.419,0.248479],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0077.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0077.json deleted file mode 100644 index 79aad29..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0077.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[568.429,531.611,0.508006,584.032,521.059,0.479166,563.021,520.979,0.502094,605.12,510.526,0.260376,526.388,505.3,0.422936,636.548,578.893,0.63992,468.421,557.704,0.582505,710.263,689.174,0.63698,358.095,599.853,0.524984,768.12,778.671,0.631221,326.474,578.806,0.485062,568.283,804.818,0.624788,473.651,799.628,0.616482,557.736,962.711,0.577574,489.555,978.431,0.651461,563.153,1073.08,0.50287,526.186,1141.3,0.620603,552.509,568.43,0.613792,584.049,442.166,0.549701,563.095,1125.67,0.3756,573.577,1115.15,0.389887,568.351,1083.54,0.415645,505.25,1204.45,0.544237,489.44,1194.08,0.546861,542.049,1146.7,0.462266],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.72,526.316,0.386839,810.145,521.073,0.384951,794.427,521.053,0.338126,820.539,521.147,0.299403,789.133,520.952,0.182404,831.11,563.16,0.455177,778.692,563.086,0.474995,820.797,615.681,0.392977,773.471,610.484,0.436385,810.188,573.623,0.333726,768.107,662.927,0.305827,820.612,668.147,0.441279,783.882,668.185,0.427442,825.871,767.911,0.41576,789.203,762.819,0.391857,831.244,852.126,0.332717,804.914,852.165,0.337292,815.179,557.766,0.371056,804.839,489.392,0.346626,820.806,867.938,0.280548,831.257,862.79,0.264101,836.405,857.626,0.272378,789.111,862.697,0.266441,783.805,857.535,0.274987,810.036,857.601,0.266197],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0078.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0078.json deleted file mode 100644 index f93ecba..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0078.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[563.07,526.253,0.599438,573.538,515.826,0.567055,547.248,515.748,0.574665,599.813,510.389,0.320816,521.037,500.003,0.467354,626.208,573.7,0.675235,463.172,557.705,0.638124,710.256,683.892,0.641396,358.02,605.115,0.592344,778.54,773.352,0.658047,321.196,573.702,0.582436,568.404,804.923,0.660003,473.658,804.878,0.653167,557.764,973.15,0.600243,489.558,983.677,0.672723,563.087,1073.08,0.500335,526.203,1141.34,0.626372,542.077,568.339,0.634889,573.48,436.894,0.602187,563.015,1120.47,0.390404,573.511,1115.1,0.417622,568.322,1078.38,0.408218,505.248,1204.49,0.542165,489.417,1194.09,0.546476,542.018,1151.78,0.463817],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.647,526.303,0.370267,810.112,521.065,0.367891,794.349,521.049,0.322769,820.524,521.126,0.29551,794.328,520.93,0.163233,826.049,563.157,0.436027,778.689,563.082,0.446918,820.667,615.727,0.389342,778.447,610.537,0.397736,810.155,573.661,0.321391,773.348,657.749,0.274533,820.545,668.269,0.411342,783.824,673.409,0.398266,820.78,768.098,0.375341,789.154,767.909,0.344204,831.131,857.435,0.277336,794.435,852.176,0.276108,815.155,557.754,0.347648,799.701,489.373,0.324042,820.804,873.273,0.244682,836.383,873.226,0.225482,831.192,862.837,0.224775,778.621,862.729,0.227436,773.382,857.566,0.239229,799.643,857.529,0.221889],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0079.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0079.json deleted file mode 100644 index a10a956..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0079.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[547.341,526.184,0.566943,568.177,515.712,0.554532,526.406,515.631,0.569401,589.275,500.052,0.370063,515.676,494.778,0.451513,626.071,573.666,0.675332,457.836,557.804,0.645868,710.292,662.936,0.629561,352.826,610.437,0.59554,778.737,757.55,0.641665,315.873,594.651,0.614404,568.435,810.073,0.66582,473.649,804.904,0.658486,562.925,978.308,0.616756,489.438,983.726,0.688229,563.085,1072.98,0.506406,526.176,1141.31,0.636485,536.744,568.315,0.634187,563.034,431.564,0.59285,563.01,1125.58,0.407725,573.493,1115.06,0.424946,568.272,1073.09,0.409284,505.247,1204.48,0.554376,489.431,1199.11,0.558243,536.836,1146.7,0.474683],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.655,526.398,0.313849,810.105,521.158,0.321286,794.42,521.14,0.263229,820.497,526.086,0.287537,804.854,521.1,0.118853,831.118,568.132,0.408964,783.865,563.182,0.403558,815.388,620.912,0.401977,778.483,610.497,0.274961,810.049,573.748,0.314658,789.104,599.831,0.155917,820.481,668.256,0.374981,783.843,668.182,0.352059,820.509,768.096,0.320656,789.094,762.79,0.262898,815.467,857.49,0.276093,783.892,846.917,0.196627,815.264,562.915,0.285,799.642,489.366,0.249005,810.121,868.026,0.212751,815.414,868.076,0.217488,815.324,862.747,0.219925,768.124,857.559,0.158004,768.03,857.326,0.160384,783.817,852.208,0.160401],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0080.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0080.json deleted file mode 100644 index 9e3b8f6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0080.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.345,526.186,0.538089,552.496,515.694,0.496967,520.961,515.638,0.528049,573.626,500.005,0.400471,500.013,499.913,0.38775,615.666,568.433,0.678895,447.323,562.966,0.658874,720.751,652.426,0.623906,347.508,610.394,0.622389,789.207,736.599,0.638737,300.178,599.79,0.608715,573.519,810.054,0.656097,473.708,810.058,0.654934,563.112,978.426,0.633238,489.504,988.896,0.680277,568.201,1073.04,0.525095,521.075,1141.42,0.649198,526.329,568.273,0.631345,541.988,431.599,0.565578,563.07,1125.71,0.438071,573.654,1115.2,0.453461,568.361,1073.09,0.418361,505.183,1199.31,0.595765,489.404,1194.03,0.59912,531.62,1151.89,0.488314],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.578,531.461,0.29519,810.057,526.14,0.305483,794.32,526.128,0.251802,820.492,526.163,0.277326,804.864,521.111,0.107014,831.256,568.119,0.3717,778.778,568.112,0.386293,0,0,0,773.417,610.482,0.265718,804.947,578.792,0.307595,783.847,589.398,0.158062,820.542,673.439,0.335079,783.924,668.233,0.313035,820.697,768.028,0.272096,778.583,762.722,0.193883,815.54,857.346,0.239727,762.788,846.906,0.153007,815.257,563.024,0.274054,799.577,489.401,0.233409,810.092,867.929,0.189346,820.541,868.049,0.189246,815.383,857.652,0.202148,752.415,857.487,0.12083,0,0,0,762.866,857.26,0.124493],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0081.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0081.json deleted file mode 100644 index 0a4ee86..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0081.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[520.909,521.072,0.603281,531.474,510.457,0.567542,510.397,510.49,0.562181,568.276,494.768,0.520455,484.289,494.703,0.360568,610.389,568.239,0.679102,442.089,563.038,0.67046,720.781,641.978,0.621519,352.639,615.604,0.619503,799.659,720.819,0.594289,284.445,605.194,0.616746,573.591,810.096,0.65665,478.809,810.182,0.65939,568.275,978.378,0.651064,489.482,983.719,0.695784,568.361,1067.82,0.532797,521.048,1141.37,0.646133,521.099,568.201,0.639578,520.977,431.576,0.605345,563.112,1120.5,0.466915,573.718,1115.14,0.479216,568.475,1067.79,0.406151,505.207,1199.29,0.592822,484.325,1194.02,0.59611,531.587,1151.87,0.484143],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.71,526.362,0.260048,810.182,521.154,0.272858,794.447,521.092,0.21918,820.588,521.163,0.24771,810.003,520.948,0.0770242,836.406,563.097,0.32028,778.743,562.969,0.33371,0,0,0,773.182,610.359,0.214446,809.989,573.743,0.293319,778.452,594.627,0.119343,815.543,663.03,0.28595,778.711,662.932,0.257373,820.66,757.65,0.233802,747.128,741.828,0.131125,815.565,852.069,0.213873,736.703,826.005,0.116634,815.302,557.837,0.230648,804.869,484.243,0.215828,815.475,862.69,0.170626,820.78,862.685,0.174708,815.329,857.434,0.182081,0,0,0,0,0,0,741.908,836.503,0.0892658],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0082.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0082.json deleted file mode 100644 index a89644e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0082.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[510.534,526.191,0.557814,521.065,515.654,0.555775,494.661,515.696,0.524589,562.928,499.911,0.492367,478.997,494.784,0.264872,605.17,563.091,0.673772,436.955,563.09,0.670624,705.103,620.858,0.594845,342.184,620.895,0.625986,810.094,694.431,0.601668,273.821,615.62,0.624725,573.653,810.183,0.656939,478.894,815.359,0.663674,568.339,983.609,0.647523,494.649,988.931,0.695291,568.434,1067.84,0.517708,521.034,1141.43,0.645152,520.97,568.215,0.643354,510.517,436.761,0.585377,563.054,1125.6,0.437871,578.757,1115.17,0.454334,573.59,1067.69,0.396405,505.202,1204.47,0.602164,489.398,1194.09,0.602789,531.549,1151.89,0.46928],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.778,526.356,0.206209,810.17,521.194,0.216597,794.409,521.185,0.178336,820.531,521.176,0.199795,804.81,520.859,0.0688618,831.273,562.975,0.267148,778.585,562.83,0.262993,0,0,0,762.901,605.282,0.16239,0,0,0,773.147,578.973,0.0840512,820.634,663.024,0.229899,778.789,663.068,0.20854,825.863,752.378,0.18406,783.909,757.604,0.15421,820.801,852.041,0.180697,804.84,841.702,0.147068,815.157,557.836,0.191839,799.725,484.263,0.194739,815.327,862.84,0.156511,820.748,862.878,0.154971,825.869,857.443,0.156316,783.835,857.604,0.112982,778.679,857.429,0.118048,810.076,852.283,0.115275],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0083.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0083.json deleted file mode 100644 index acfe681..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0083.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[505.184,521.114,0.537132,515.836,510.475,0.536341,484.229,510.565,0.51008,542.068,489.533,0.487552,468.384,494.813,0.338475,599.886,557.835,0.654703,431.613,568.294,0.671929,725.988,610.348,0.599243,331.777,636.602,0.622695,815.455,683.86,0.577686,268.553,626.105,0.593131,578.809,815.366,0.651762,484.079,815.488,0.662406,568.373,988.926,0.634332,494.74,994.096,0.683947,568.393,1073,0.425328,521.11,1141.42,0.635013,515.705,563.13,0.63766,494.702,431.614,0.575581,563.127,1125.61,0.372239,578.822,1115.16,0.379549,573.567,1067.69,0.31715,505.22,1204.5,0.585438,489.406,1194.09,0.592175,536.72,1151.82,0.466415],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.811,526.346,0.188779,810.091,521.189,0.19472,804.828,521.211,0.132136,820.496,521.167,0.198011,0,0,0,836.36,562.977,0.27151,789.246,557.755,0.243898,0,0,0,773.39,604.946,0.155093,0,0,0,778.435,578.952,0.0873566,820.646,657.803,0.240574,789.121,657.801,0.210575,825.874,762.718,0.192927,794.338,757.645,0.178695,820.914,852.289,0.184544,810.243,846.994,0.183305,815.343,557.694,0.204697,804.856,489.362,0.185468,810.095,862.849,0.14296,815.463,862.921,0.140785,831.207,862.553,0.146837,783.936,857.664,0.129025,783.903,857.464,0.134312,815.366,857.314,0.135778],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0084.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0084.json deleted file mode 100644 index cb128bb..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0084.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[489.515,526.203,0.546398,510.425,515.625,0.546928,478.862,515.77,0.52289,526.287,494.646,0.519016,452.679,505.237,0.295249,589.384,557.703,0.641026,426.298,568.382,0.668632,720.747,599.835,0.579325,331.676,641.976,0.617827,820.651,652.394,0.567132,273.827,641.851,0.58304,578.821,815.373,0.652589,484.103,815.531,0.664905,568.416,988.985,0.650386,494.705,994.172,0.68577,573.512,1067.82,0.456784,526.176,1141.4,0.618978,510.459,568.196,0.650286,478.989,436.867,0.576331,563.139,1120.48,0.409989,578.845,1115.13,0.424427,578.773,1062.46,0.351284,505.241,1204.48,0.576112,489.446,1194.07,0.577191,536.802,1146.7,0.457812],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.698,526.208,0.119283,810.021,521.037,0.11969,804.959,521.164,0.0727668,815.359,520.892,0.138773,0,0,0,820.815,557.725,0.211806,794.433,547.338,0.184284,0,0,0,773.487,605.042,0.148321,0,0,0,778.663,578.958,0.0707541,815.596,657.748,0.240668,799.627,657.865,0.205317,820.542,757.61,0.230069,804.909,757.623,0.205147,820.758,852.172,0.220546,815.263,846.904,0.213118,815.211,542.054,0.193387,804.9,484.354,0.177227,804.972,862.882,0.163207,815.389,862.929,0.166678,825.99,862.566,0.178171,783.981,862.583,0.139519,783.991,857.531,0.142569,815.5,857.311,0.151364],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0085.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0085.json deleted file mode 100644 index 8c269dd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0085.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[479.036,526.262,0.606101,494.691,515.632,0.598805,463.16,515.799,0.57673,520.966,494.664,0.548596,442.286,505.279,0.337088,578.889,552.566,0.640507,410.615,573.666,0.679944,705.072,578.859,0.595415,321.245,647.263,0.657756,820.719,631.415,0.562707,242.372,652.408,0.595605,584.028,815.49,0.645084,484.224,820.674,0.66079,573.472,994.139,0.651128,494.744,994.262,0.676177,573.506,1073.07,0.455524,521.124,1146.54,0.627967,499.98,568.268,0.653325,468.423,436.942,0.587688,563.145,1125.59,0.401076,584.034,1115.19,0.41938,573.663,1067.8,0.341129,505.214,1204.54,0.576053,489.392,1199.13,0.58102,536.747,1151.8,0.469714],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.859,526.205,0.224522,810.098,520.942,0.219367,804.963,520.977,0.170013,815.304,520.88,0.215405,804.891,520.877,0.130108,820.57,562.896,0.334698,810.114,557.79,0.299688,0,0,0,773.357,610.335,0.178019,0,0,0,747.078,673.427,0.196018,815.375,657.709,0.332329,804.887,662.912,0.313846,815.473,752.412,0.316615,810.17,752.369,0.304387,820.688,852.118,0.297846,815.477,841.774,0.276277,815.206,552.5,0.285367,804.826,484.347,0.266413,804.907,862.921,0.200416,815.273,867.908,0.208427,825.898,862.58,0.234483,789.147,862.78,0.180379,789.185,862.653,0.180511,820.595,857.408,0.197944],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0086.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0086.json deleted file mode 100644 index 043ceb2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0086.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[473.567,526.343,0.629123,484.123,515.724,0.6417,452.616,520.884,0.61979,515.674,499.925,0.597031,436.894,510.515,0.281908,573.705,557.721,0.640505,405.449,578.772,0.687465,694.612,573.503,0.551537,321.313,652.497,0.669101,820.622,605.164,0.448324,237.076,668.145,0.627804,589.274,815.432,0.645526,489.42,820.655,0.666164,573.498,994.197,0.66268,494.737,994.22,0.68019,573.626,1078.27,0.452961,526.147,1141.41,0.635362,494.728,568.281,0.661975,452.736,442.194,0.576525,568.255,1130.85,0.41108,589.382,1115.21,0.423937,578.865,1072.99,0.349219,505.19,1204.54,0.586655,489.387,1199.14,0.591802,536.809,1146.65,0.4763],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[810.042,521.012,0.3396,815.259,515.854,0.32671,799.716,515.827,0.300786,815.577,520.917,0.264502,794.346,515.79,0.216471,831.185,563.028,0.438691,778.623,563.051,0.447194,857.444,610.341,0.376392,773.198,610.303,0.328921,0,0,0,757.534,662.916,0.286258,820.734,673.45,0.459093,789.123,673.535,0.450074,825.943,762.877,0.439902,810.046,762.883,0.429072,825.991,852.178,0.393586,815.234,846.918,0.391746,810.114,552.48,0.401819,804.948,484.162,0.378783,820.667,867.917,0.309429,831.137,867.94,0.307236,831.181,862.637,0.325693,799.671,867.976,0.312408,789.113,862.816,0.31686,815.303,857.503,0.321452],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0087.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0087.json deleted file mode 100644 index 91c1bdb..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0087.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[457.926,531.587,0.601134,473.703,520.876,0.618152,442.197,521.05,0.618647,505.262,505.16,0.570487,426.289,515.765,0.256996,573.508,547.298,0.633321,405.259,584.02,0.683665,694.507,568.18,0.521429,326.402,657.784,0.657347,694.49,683.943,0.193213,231.898,683.967,0.6557,589.266,815.339,0.639969,489.402,820.636,0.670559,573.514,994.123,0.647652,494.708,994.206,0.680247,578.795,1078.33,0.496078,526.177,1141.44,0.636342,489.448,568.393,0.656373,442.128,447.397,0.579214,568.416,1136.2,0.445894,599.769,1120.46,0.457221,584.023,1078.27,0.410095,505.222,1204.48,0.596193,489.381,1194.09,0.59586,542.028,1146.63,0.485138],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[810.001,526.074,0.257402,815.276,520.891,0.250854,799.569,520.879,0.224045,820.682,521.08,0.210703,789.224,520.967,0.138841,841.716,563.112,0.354661,778.662,568.151,0.362676,857.461,605.113,0.326579,768.104,610.33,0.251585,815.483,573.692,0.476018,762.79,668.175,0.24775,820.812,673.406,0.387387,789.098,678.645,0.384362,820.871,762.785,0.359187,804.91,762.865,0.344423,825.944,846.993,0.301489,815.244,836.464,0.31342,810.215,552.582,0.265873,804.952,484.197,0.246991,815.45,862.813,0.233768,825.935,862.852,0.233885,831.214,857.478,0.249566,794.375,862.645,0.229649,783.976,857.542,0.238509,815.363,852.246,0.245616],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0088.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0088.json deleted file mode 100644 index c127fea..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0088.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[447.457,531.616,0.624522,463.198,520.851,0.636169,436.812,521.057,0.62063,499.965,500.028,0.573832,410.651,520.884,0.178141,573.495,547.337,0.633998,400.165,589.339,0.688784,694.45,552.492,0.459581,321.284,678.713,0.665546,694.467,683.921,0.159605,231.76,689.362,0.655078,589.299,815.332,0.640306,489.398,820.626,0.669776,573.505,994.131,0.661353,494.702,994.109,0.692101,573.678,1094.12,0.527324,526.177,1141.39,0.640601,489.38,568.379,0.650063,431.645,447.442,0.555214,568.388,1146.7,0.4723,599.755,1130.89,0.483447,578.833,1099.35,0.432042,505.279,1204.41,0.59763,484.338,1194.03,0.59552,542.007,1146.65,0.495349],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.582,521.087,0.209097,810.199,515.727,0.20905,784.033,515.788,0.195386,820.752,515.829,0.203554,783.793,520.762,0.061099,857.369,563.038,0.244243,778.656,563.242,0.248742,862.62,610.281,0.226847,773.224,620.86,0.210459,857.286,647.194,0.206111,762.825,668.289,0.201165,825.905,673.47,0.244846,783.888,678.693,0.242959,825.923,767.898,0.246352,804.777,767.962,0.233669,826.095,852.136,0.223383,815.22,841.692,0.228663,815.327,552.481,0.226742,794.472,479.039,0.219737,815.324,862.897,0.194561,825.861,862.945,0.190554,836.444,857.568,0.19399,794.313,862.611,0.172553,783.942,857.497,0.182025,815.489,852.307,0.178803],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0089.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0089.json deleted file mode 100644 index 021c38a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0089.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[442.163,536.844,0.604734,452.686,520.99,0.621312,431.511,526.159,0.584293,489.474,505.25,0.573115,405.395,520.929,0.177375,568.277,547.294,0.62515,400.037,594.638,0.692897,684.007,536.822,0.519865,321.234,689.089,0.684391,705.024,678.653,0.113908,226.607,694.605,0.664578,589.273,815.379,0.639267,484.306,820.701,0.667059,573.469,994.261,0.658633,494.723,994.268,0.678221,573.681,1104.61,0.536047,526.219,1141.41,0.635564,484.128,568.416,0.638942,426.282,452.69,0.541907,568.268,1157.14,0.473786,594.582,1146.56,0.471762,578.937,1104.61,0.438664,505.278,1204.47,0.602073,484.316,1194.05,0.594882,542.087,1146.62,0.487508],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[804.916,520.841,0.325659,815.228,510.441,0.301564,799.609,510.456,0.299871,820.56,510.444,0.240582,804.948,515.81,0.163958,841.74,557.782,0.414648,778.637,563.142,0.469802,873.183,568.48,0.339607,778.643,615.586,0.382476,799.634,526.244,0.413739,768.118,662.996,0.28005,820.83,673.435,0.454156,789.141,678.641,0.449725,825.939,762.862,0.435739,804.969,762.894,0.426323,826.077,846.974,0.38156,815.281,841.721,0.398328,810.199,542.034,0.372189,799.644,478.857,0.263928,820.62,862.859,0.298909,831.135,862.85,0.294956,836.378,857.518,0.320551,799.716,862.813,0.302574,789.203,862.645,0.31095,815.391,857.412,0.32956],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0090.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0090.json deleted file mode 100644 index 6819b67..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0090.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[436.908,552.562,0.593753,447.357,526.168,0.614252,415.834,526.395,0.560729,484.161,510.519,0.570739,400.203,526.205,0.154951,568.184,547.342,0.623995,399.964,599.896,0.687692,678.717,531.533,0.556809,321.285,689.3,0.702261,778.697,531.567,0.445285,226.679,705.094,0.64483,589.315,815.357,0.6373,484.324,820.706,0.667847,568.429,994.234,0.663971,494.679,999.417,0.675532,573.654,1115,0.589099,526.154,1146.61,0.651416,478.937,573.606,0.643331,410.592,457.906,0.543793,563.12,1162.41,0.483513,589.304,1151.92,0.484268,578.915,1115.06,0.47249,505.295,1209.69,0.600245,484.299,1199.19,0.597093,541.984,1151.81,0.492924],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[810.076,520.869,0.3525,815.328,510.482,0.322849,804.946,510.497,0.311005,820.761,510.454,0.262032,815.297,515.882,0.166449,836.501,562.994,0.449221,778.788,563.034,0.468803,826.013,610.382,0.401882,778.725,610.421,0.378477,0,0,0,768.065,662.92,0.267321,820.706,673.397,0.465776,783.976,673.483,0.452865,825.907,762.818,0.427473,804.891,762.849,0.416286,826.042,846.919,0.373411,815.247,836.467,0.384389,815.177,542.073,0.389166,804.951,478.895,0.278554,820.585,862.792,0.299032,831.133,862.789,0.295361,831.269,857.453,0.312773,799.675,862.701,0.290983,789.152,857.562,0.298482,815.362,852.272,0.312075],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0091.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0091.json deleted file mode 100644 index d880ebf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0091.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[436.766,552.597,0.566213,442.181,526.222,0.585065,405.482,531.485,0.530933,478.857,515.635,0.559974,400.103,526.273,0.150636,563.089,547.334,0.614052,394.936,605.054,0.684071,678.728,526.266,0.607578,326.413,694.469,0.700492,778.625,521.065,0.495498,231.753,726.089,0.640142,589.387,815.339,0.63854,489.396,820.684,0.664812,568.356,994.24,0.673032,489.554,999.453,0.675093,573.559,1115.04,0.60452,521.09,1146.69,0.649057,473.706,573.618,0.636113,405.284,463.227,0.539805,562.992,1167.72,0.488762,584.113,1157.22,0.497532,578.797,1115.12,0.489936,510.378,1209.69,0.601576,484.245,1199.21,0.604715,536.752,1151.93,0.487874],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[810.136,531.639,0.306867,815.338,526.379,0.280192,810.078,526.331,0.287227,820.752,531.519,0.222408,815.319,526.259,0.147507,826.083,568.437,0.434414,783.883,573.474,0.434558,825.987,615.597,0.371089,778.554,631.33,0.354385,0,0,0,768.105,673.405,0.277977,820.664,673.519,0.437623,783.991,678.742,0.431742,825.867,757.68,0.401431,804.882,762.79,0.38817,826.018,846.876,0.345069,815.228,831.236,0.355405,810.172,563.177,0.37791,810.119,494.771,0.24296,820.605,862.732,0.287166,831.142,862.721,0.280853,831.206,857.384,0.289368,804.842,862.624,0.27588,789.198,857.474,0.280116,815.34,852.132,0.287642],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0092.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0092.json deleted file mode 100644 index ba19567..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0092.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[426.405,562.952,0.595697,436.963,526.367,0.60247,405.294,536.765,0.547869,473.594,515.716,0.589371,399.957,531.58,0.126352,557.822,552.517,0.61294,394.819,605.202,0.683781,673.488,526.191,0.618061,326.434,699.686,0.689621,783.836,520.951,0.51326,226.686,736.629,0.65662,589.388,815.356,0.640549,489.482,820.75,0.660342,568.328,994.2,0.673308,489.512,1004.64,0.670275,573.601,1120.3,0.610088,526.141,1146.67,0.649424,473.621,578.76,0.640571,400.016,468.462,0.553582,557.703,1188.63,0.485864,578.769,1173,0.488891,584.015,1120.38,0.494803,510.453,1209.74,0.607159,484.309,1199.25,0.609619,536.813,1151.9,0.473853],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[799.689,541.972,0.311035,810.086,531.55,0.28446,804.859,526.376,0.273932,820.527,536.737,0.238564,815.471,515.719,0.155814,831.277,568.348,0.463258,778.783,568.406,0.462648,831.163,610.498,0.383539,778.471,626.127,0.372798,0,0,0,768.016,673.428,0.298313,820.67,673.524,0.46166,783.924,678.742,0.456263,820.886,762.748,0.424552,804.808,762.783,0.405703,826.013,846.935,0.368844,815.217,836.45,0.376599,810.203,563.156,0.422439,804.838,505.16,0.269632,815.526,862.805,0.299616,825.99,862.824,0.295924,831.244,857.46,0.308352,799.609,862.708,0.288144,789.108,857.582,0.295709,815.348,852.248,0.306677],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0093.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0093.json deleted file mode 100644 index 4607136..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0093.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[431.52,563.004,0.562616,436.929,531.449,0.557157,405.271,542.035,0.500413,468.351,515.715,0.557931,394.821,536.785,0.131295,557.787,552.513,0.604418,394.762,610.324,0.672929,668.191,526.223,0.583052,326.51,699.805,0.670997,773.316,510.45,0.498105,226.65,741.94,0.647175,589.348,815.398,0.636139,489.434,820.79,0.654059,568.246,994.219,0.667201,489.54,1004.63,0.664419,573.541,1120.44,0.60666,521.105,1146.66,0.643375,468.458,578.786,0.635943,394.835,473.65,0.533966,552.459,1193.9,0.492956,573.555,1183.48,0.502492,578.899,1125.62,0.493265,510.509,1209.7,0.598862,484.307,1199.2,0.604417,536.764,1151.92,0.464689],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[794.422,526.269,0.367614,804.953,520.99,0.366161,794.329,521,0.306255,820.559,521.033,0.320564,799.628,510.53,0.151813,831.286,563.172,0.472202,773.52,568.184,0.468566,831.25,610.513,0.44495,773.342,615.753,0.381352,0,0,0,762.881,673.398,0.296903,820.766,673.459,0.467874,783.834,678.686,0.452563,825.919,762.738,0.43097,799.665,762.756,0.413151,831.122,846.958,0.383452,815.21,831.263,0.382747,810.168,557.757,0.437315,799.618,473.725,0.339038,820.614,862.788,0.321748,826.073,862.817,0.322522,836.393,857.489,0.327249,799.592,862.711,0.301552,783.989,857.514,0.305826,815.327,852.173,0.307328],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0094.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0094.json deleted file mode 100644 index db4cf3f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0094.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[421.133,563.034,0.560707,436.797,531.537,0.549603,400.135,547.242,0.513166,463.121,515.749,0.555971,394.703,547.261,0.132972,552.591,547.295,0.603102,394.763,610.309,0.673965,668.199,521.15,0.622623,326.518,699.88,0.660635,699.823,678.626,0.0972349,231.832,752.339,0.644349,589.279,815.377,0.637353,484.296,820.792,0.655446,568.276,999.356,0.661892,489.505,999.522,0.668009,568.416,1136.18,0.607334,521.127,1146.66,0.655779,468.427,578.792,0.628982,394.66,473.701,0.522543,542.038,1199.31,0.511738,568.437,1194.04,0.534358,573.692,1146.58,0.485774,510.495,1209.7,0.58854,484.333,1199.18,0.599658,536.747,1157.08,0.469117],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[794.361,515.678,0.347801,799.722,505.223,0.306309,799.684,505.189,0.257793,815.397,510.43,0.248214,794.403,510.356,0.181975,831.167,562.889,0.452027,773.527,562.89,0.462867,831.144,610.443,0.414001,778.59,610.496,0.378799,768.174,510.5,0.545543,762.848,673.376,0.282813,820.707,673.544,0.458673,783.812,678.759,0.448832,825.934,762.865,0.422949,804.804,762.858,0.413804,826.072,846.995,0.374966,815.207,836.449,0.378348,810.222,536.74,0.469325,794.48,457.835,0.40579,820.616,862.803,0.310629,831.171,862.825,0.307474,836.387,857.503,0.316363,799.664,862.793,0.302205,789.111,862.614,0.306501,815.328,852.262,0.311145],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0095.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0095.json deleted file mode 100644 index c519cee..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0095.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[410.677,563.009,0.575027,431.577,531.53,0.553001,400.017,547.23,0.531689,457.893,515.754,0.560703,394.765,542.031,0.142022,547.318,542.09,0.607335,394.72,610.279,0.678834,662.932,521.087,0.645161,326.534,704.969,0.662104,762.867,499.994,0.589351,231.932,757.547,0.640878,584.149,815.407,0.639048,484.268,825.879,0.653113,563.134,999.435,0.654161,489.48,1004.65,0.675938,568.43,1151.83,0.644037,521.08,1146.67,0.662251,463.215,578.765,0.630595,389.552,473.715,0.52473,531.524,1204.57,0.536831,568.291,1199.33,0.548655,578.752,1157.26,0.528197,505.241,1204.57,0.586069,484.215,1199.13,0.604605,531.64,1157.14,0.466273],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[783.821,521.072,0.344706,789.176,515.739,0.322441,778.672,515.714,0.242268,815.289,515.723,0.293199,778.563,510.426,0.110274,831.18,562.913,0.436934,773.46,563.061,0.455555,826.066,610.407,0.416715,773.424,615.611,0.3611,0,0,0,767.954,673.428,0.292769,820.715,673.499,0.454645,783.837,678.725,0.44362,825.907,762.847,0.420064,799.653,762.868,0.406567,831.153,852.125,0.374266,815.211,836.456,0.370436,810.075,547.289,0.423195,778.683,463.109,0.35362,820.624,862.89,0.31714,831.165,862.915,0.314272,836.459,857.587,0.318963,794.454,862.765,0.295384,783.981,862.579,0.300357,815.363,857.311,0.302562],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0096.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0096.json deleted file mode 100644 index 8f5d930..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0096.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[410.554,563.03,0.564381,426.335,531.547,0.529994,394.957,547.246,0.505728,452.7,515.745,0.551429,389.616,536.792,0.113417,547.293,541.993,0.609922,394.678,610.266,0.674177,662.934,521.078,0.661294,331.639,705.055,0.650816,757.541,494.702,0.623519,231.939,762.791,0.640774,584.127,815.401,0.636291,484.268,825.892,0.646155,563.013,999.44,0.653105,489.445,1004.74,0.669115,568.313,1157.22,0.643953,521.106,1146.54,0.651463,463.171,573.674,0.63393,384.31,473.707,0.51097,521.133,1214.98,0.561396,562.964,1209.76,0.556386,573.567,1178.16,0.542748,505.15,1204.45,0.551298,484.235,1193.95,0.580807,536.752,1151.89,0.450188],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[778.603,526.383,0.315683,783.82,520.991,0.300612,778.601,526.237,0.190956,810.181,520.916,0.276643,794.365,521.103,0.057847,826.024,563.13,0.434251,778.528,568.17,0.439737,825.992,610.541,0.400665,773.449,620.826,0.34578,0,0,0,762.897,673.483,0.290592,820.605,673.536,0.449972,783.825,678.734,0.443867,820.86,762.805,0.403154,799.594,762.81,0.380697,826.071,846.958,0.348219,810.239,831.254,0.347056,809.971,557.779,0.390208,778.509,473.583,0.29011,820.533,862.8,0.290268,826.05,862.819,0.287384,836.394,857.454,0.296603,794.372,862.574,0.262872,783.929,857.424,0.270605,815.37,852.146,0.278655],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0097.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0097.json deleted file mode 100644 index 00f8b07..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0097.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[410.595,562.99,0.565221,426.371,531.494,0.54136,399.927,542.079,0.51459,452.705,515.699,0.54761,389.531,536.814,0.131071,542.087,542.012,0.602562,394.666,610.288,0.670316,662.911,521.145,0.656414,331.668,705.056,0.656361,752.372,494.663,0.629454,237.043,762.878,0.642642,584.026,815.38,0.63804,484.257,825.869,0.649312,557.807,1004.65,0.645045,489.415,1004.74,0.667884,568.187,1162.42,0.633946,521.044,1141.38,0.643578,463.133,573.663,0.630614,384.317,473.648,0.513247,521.042,1215.03,0.560933,557.8,1214.95,0.549806,568.423,1183.43,0.549182,505.141,1199.34,0.539476,484.241,1193.92,0.566225,531.583,1151.84,0.447353],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[778.684,526.372,0.312569,783.885,520.994,0.297205,778.661,526.156,0.208103,810.244,521.005,0.252785,794.414,520.941,0.0690365,826.027,563.108,0.413308,778.508,568.177,0.434032,825.972,610.513,0.3841,778.53,620.839,0.344569,0,0,0,767.972,673.454,0.279965,820.617,678.644,0.43288,783.861,678.761,0.432579,820.868,762.798,0.38811,799.64,762.844,0.367739,826.061,846.976,0.337449,815.187,831.293,0.33712,804.968,557.776,0.388686,778.563,473.753,0.286398,815.509,862.801,0.278749,826.004,862.82,0.275888,836.395,857.438,0.288367,794.345,862.584,0.253723,783.933,857.449,0.262001,815.395,852.163,0.273594],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0098.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0098.json deleted file mode 100644 index fbc0c36..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0098.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[410.556,562.939,0.579066,426.311,526.385,0.561604,394.905,542.026,0.535466,452.575,510.558,0.556438,384.328,531.567,0.132387,536.844,536.825,0.608488,389.571,605.209,0.668823,662.912,526.269,0.645891,331.647,705.01,0.657131,747.041,494.669,0.635891,237.095,762.901,0.644541,578.89,815.406,0.639088,484.11,825.898,0.649502,557.712,999.538,0.634222,489.385,1004.75,0.655957,563.102,1167.62,0.635954,521.102,1141.4,0.628165,457.955,573.609,0.627312,379.075,473.594,0.508916,520.949,1225.43,0.567723,557.707,1220.28,0.559874,568.368,1183.5,0.549374,505.177,1204.48,0.516344,484.292,1193.97,0.546374,536.749,1151.83,0.420173],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[778.599,536.721,0.211849,778.862,526.235,0.204291,778.492,536.776,0.123366,810.225,526.114,0.190221,0,0,0,831.109,563.112,0.291079,778.62,568.202,0.316439,820.865,610.525,0.301555,773.483,620.963,0.262424,0,0,0,762.886,678.624,0.240665,820.636,673.45,0.327653,783.937,678.714,0.328978,820.896,762.759,0.30064,799.592,762.826,0.286221,831.138,846.977,0.260882,815.159,831.307,0.272255,810.043,562.903,0.263912,778.513,484.187,0.182259,815.442,862.699,0.221051,825.984,862.763,0.215714,836.508,857.431,0.228006,789.172,857.504,0.19657,783.885,857.305,0.204388,815.458,852.159,0.214788],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0099.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0099.json deleted file mode 100644 index db151e1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam2_json/cam02.0099.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[405.254,557.815,0.622474,415.835,526.33,0.598424,394.75,536.796,0.580279,447.453,510.523,0.577298,384.309,531.481,0.143704,536.728,542.006,0.622282,389.572,605.203,0.687924,657.76,526.347,0.641752,331.639,704.944,0.671332,741.811,494.714,0.637578,237.119,762.825,0.654529,578.807,815.386,0.651193,484.101,825.88,0.657022,557.702,1004.62,0.643233,484.289,1004.77,0.663581,562.967,1167.67,0.629649,521.025,1141.35,0.640776,452.755,573.564,0.644168,379.034,468.377,0.536682,515.809,1230.69,0.578899,552.523,1230.67,0.571876,568.227,1188.62,0.532252,505.167,1204.54,0.514235,484.231,1194,0.542976,531.557,1146.69,0.425679],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]},{"person_id":[-1],"pose_keypoints_2d":[778.788,536.741,0.253939,784.037,526.365,0.243258,778.728,531.623,0.182939,815.33,526.45,0.216181,0,0,0,826.041,568.158,0.331865,778.593,568.356,0.359152,825.895,610.551,0.315624,778.41,626.148,0.28395,0,0,0,762.882,678.591,0.253576,820.559,673.533,0.350518,783.825,678.765,0.356274,820.834,757.668,0.323556,794.453,762.812,0.304651,826.07,846.934,0.281025,810.213,836.382,0.286671,810.003,563.148,0.315718,778.818,499.97,0.213276,815.485,862.692,0.238382,825.994,862.74,0.232289,836.404,857.38,0.245884,789.188,857.542,0.216829,783.884,857.383,0.224671,815.386,852.18,0.236553],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0000.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0000.json deleted file mode 100644 index 110e2fa..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0000.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[568.281,526.287,0.214981,568.386,515.742,0.283199,0,0,0,594.558,515.751,0.703814,663.004,510.541,0.189791,599.772,631.342,0.765537,736.591,610.489,0.753384,563.047,799.575,0.740273,778.645,752.325,0.697353,515.726,946.801,0.777168,726.029,831.166,0.637687,610.331,894.268,0.744486,699.713,889.009,0.785316,557.735,1052.04,0.759364,668.275,1078.32,0.78825,557.753,1199.23,0.714115,699.875,1272.8,0.749689,641.947,573.57,0.69057,578.928,442.088,0.634196,494.674,1188.72,0.571083,505.166,1199.24,0.641957,568.431,1225.53,0.743071,652.41,1257.07,0.532984,668.197,1257.03,0.46813,720.803,1293.92,0.694864],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0001.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0001.json deleted file mode 100644 index b70da03..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0001.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[563.073,531.484,0.196152,568.186,520.863,0.265353,0,0,0,578.938,515.743,0.700812,657.633,515.668,0.202733,589.349,631.437,0.73016,731.256,615.59,0.734084,557.732,799.579,0.707619,778.579,747.114,0.691431,510.485,946.795,0.767454,725.964,820.721,0.628642,605.12,894.241,0.728322,694.577,888.972,0.784537,547.237,1051.96,0.746797,668.263,1078.29,0.767779,552.581,1199.19,0.715916,699.867,1272.77,0.752001,636.599,573.601,0.687842,573.64,442.086,0.642987,489.543,1193.84,0.557551,499.97,1199.29,0.631126,568.413,1225.51,0.759446,652.38,1257.02,0.541459,663.008,1251.83,0.470169,720.785,1293.89,0.691174],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0002.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0002.json deleted file mode 100644 index c1a17ad..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0002.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[557.796,536.763,0.156541,562.967,520.993,0.20338,0,0,0,573.649,515.793,0.659229,647.201,510.539,0.221806,584.05,631.439,0.727646,715.574,610.344,0.728745,542.08,799.577,0.664574,778.511,741.848,0.710484,505.228,946.813,0.745402,715.515,815.506,0.646322,599.887,889.005,0.716445,694.452,883.742,0.789945,542.011,1051.94,0.723187,668.177,1078.31,0.762682,557.722,1199.16,0.705556,699.846,1267.61,0.744322,626.119,573.544,0.672478,568.423,442.211,0.601328,494.658,1188.77,0.54011,505.154,1199.27,0.617036,573.486,1225.46,0.743695,652.422,1257.04,0.541497,663.04,1251.85,0.472077,720.778,1293.84,0.685632],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0003.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0003.json deleted file mode 100644 index 236ec1a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0003.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[547.267,536.841,0.105175,552.552,520.993,0.136414,0,0,0,568.422,515.822,0.666604,641.966,515.672,0.250099,573.673,636.578,0.763431,710.311,610.332,0.75065,531.535,799.682,0.704494,773.386,736.654,0.72631,499.92,946.85,0.741081,710.321,810.184,0.634733,594.662,888.986,0.728431,689.341,883.708,0.793185,531.591,1052,0.742498,662.981,1073.15,0.77422,557.776,1199.13,0.719338,699.866,1267.52,0.747223,620.829,573.513,0.683086,568.302,442.193,0.597143,494.69,1193.84,0.544452,505.171,1199.28,0.624818,573.518,1220.28,0.753636,652.48,1257.03,0.553268,668.232,1251.87,0.484704,720.777,1288.66,0.699259],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0004.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0004.json deleted file mode 100644 index ab91a28..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0004.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.345,531.495,0.182068,531.513,520.906,0.224901,0,0,0,563.138,520.899,0.724305,636.612,515.698,0.230502,573.51,636.632,0.82349,699.825,605.197,0.821271,526.284,810.045,0.786563,773.318,731.241,0.739754,489.5,946.856,0.788275,705.007,799.662,0.648687,594.659,883.826,0.78861,689.291,878.507,0.849015,526.371,1051.96,0.805203,662.911,1078.26,0.831079,557.808,1194.02,0.760393,704.962,1267.53,0.795832,610.39,573.565,0.735394,557.749,442.164,0.624347,494.674,1193.85,0.582362,505.199,1199.27,0.663914,573.555,1215.06,0.775835,652.492,1257.03,0.581851,668.258,1251.87,0.516768,725.967,1288.65,0.743925],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0005.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0005.json deleted file mode 100644 index e9d1c76..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0005.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.231,542.066,0.125387,526.198,521.019,0.163555,0,0,0,552.52,520.951,0.686473,626.088,510.459,0.266465,568.307,636.672,0.805037,699.695,605.197,0.82441,521.105,810.139,0.78968,768.131,726.015,0.728472,484.276,946.877,0.78141,699.738,789.149,0.67099,594.552,883.797,0.786743,689.207,878.464,0.843794,526.346,1046.81,0.802786,657.759,1073.12,0.833079,557.765,1194.05,0.760137,704.964,1262.34,0.795159,605.096,573.565,0.730977,542.051,442.162,0.629746,489.524,1193.88,0.586184,505.157,1199.33,0.661699,573.544,1220.24,0.791066,652.444,1251.86,0.578796,668.232,1251.82,0.508195,725.974,1288.63,0.750129],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0006.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0006.json deleted file mode 100644 index c5f71f5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0006.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[515.792,557.779,0.107545,515.786,526.163,0.143221,0,0,0,531.536,520.938,0.667226,615.582,510.424,0.282927,562.952,636.679,0.776205,694.505,605.134,0.807382,520.941,810.118,0.784503,767.98,715.561,0.714859,484.153,946.894,0.753851,694.594,778.671,0.655702,589.345,883.778,0.768306,689.123,873.302,0.813223,526.287,1046.76,0.793956,657.727,1073.07,0.819944,557.791,1194.04,0.762458,699.859,1262.32,0.783597,599.778,573.588,0.704798,526.361,442.162,0.620251,494.669,1193.89,0.570409,505.201,1199.33,0.646586,573.549,1220.25,0.793292,652.43,1251.88,0.572832,668.201,1251.83,0.500393,720.835,1288.59,0.735513],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0007.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0007.json deleted file mode 100644 index 07ab631..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0007.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[505.245,552.552,0.148875,505.256,521.046,0.198019,0,0,0,526.195,520.891,0.716972,605.029,510.437,0.226978,547.274,636.695,0.748514,689.216,605.02,0.781429,515.765,810.163,0.793273,762.852,705.015,0.724947,478.9,952.097,0.758457,689.327,773.379,0.627058,589.375,878.571,0.751861,684.028,868.07,0.781799,526.213,1036.31,0.793107,652.561,1067.87,0.808105,557.819,1194.03,0.760053,699.85,1257.05,0.773476,584.098,573.529,0.698323,520.955,442.065,0.64641,489.514,1193.86,0.57138,505.168,1199.33,0.645059,573.57,1220.24,0.787216,652.364,1251.78,0.5844,662.991,1246.61,0.508264,725.983,1288.54,0.723092],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0008.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0008.json deleted file mode 100644 index af5bd7d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0008.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[505.178,547.277,0.181721,500.005,520.964,0.242522,0,0,0,520.93,520.901,0.760736,594.54,510.418,0.200905,531.528,641.891,0.79731,683.883,599.854,0.809775,510.529,810.21,0.82375,757.555,699.737,0.75115,473.597,946.945,0.753368,684.002,757.649,0.61503,584.12,883.706,0.793449,683.945,868.052,0.813474,526.204,1041.46,0.824955,652.557,1067.89,0.852292,557.817,1194.02,0.771027,699.794,1257,0.806556,578.767,573.559,0.741196,510.451,436.94,0.68851,489.517,1193.89,0.605192,505.16,1199.34,0.677242,573.568,1220.24,0.795569,652.406,1251.82,0.58613,668.198,1251.75,0.514016,720.757,1283.38,0.743977],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0009.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0009.json deleted file mode 100644 index 038cf9f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0009.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[494.755,557.808,0.174478,489.556,521.097,0.240656,0,0,0,515.654,521.053,0.682813,578.926,510.508,0.171722,526.205,641.969,0.710664,668.221,594.674,0.71862,505.19,810.19,0.740443,747.123,694.465,0.71948,463.128,952.111,0.696235,668.227,741.863,0.56967,578.782,883.693,0.705258,678.665,867.994,0.703689,521.131,1036.28,0.732574,652.497,1067.81,0.745597,557.759,1194,0.706031,699.818,1251.83,0.708004,573.461,573.658,0.689818,494.735,442.243,0.645641,489.447,1188.76,0.544858,500,1199.29,0.609838,573.531,1220.22,0.734769,652.427,1251.8,0.516025,668.199,1246.65,0.442025,720.795,1283.33,0.655793],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0010.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0010.json deleted file mode 100644 index 0f21483..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0010.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[484.213,563.031,0.151088,484.12,526.206,0.203115,0,0,0,499.925,526.164,0.674569,573.474,510.442,0.247623,520.912,647.142,0.766004,652.532,589.402,0.744474,494.692,815.456,0.758159,736.576,689.279,0.729964,452.761,957.389,0.727381,652.395,731.202,0.530672,573.664,878.498,0.746421,668.217,862.799,0.737011,526.198,1036.26,0.771445,652.493,1067.7,0.800475,557.799,1194.06,0.725395,699.837,1251.75,0.74708,563.059,573.622,0.676837,484.254,447.335,0.646912,489.491,1188.77,0.577216,500.025,1199.29,0.632191,573.548,1220.3,0.749432,652.413,1251.77,0.53784,668.185,1246.6,0.465387,720.819,1283.26,0.687657],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0011.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0011.json deleted file mode 100644 index 33860fb..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0011.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[468.444,568.249,0.124942,468.408,526.282,0.160304,0,0,0,484.228,526.214,0.66437,568.201,510.524,0.28616,515.68,647.278,0.763817,652.348,594.538,0.746449,484.262,820.717,0.763921,731.322,689.14,0.69505,447.476,962.622,0.731425,641.931,710.274,0.38665,573.537,878.536,0.745976,662.908,862.771,0.732591,526.166,1036.23,0.772571,652.411,1062.52,0.806702,557.782,1194.02,0.728255,699.855,1246.56,0.752325,547.327,573.69,0.650694,478.84,447.442,0.637954,489.495,1188.72,0.588234,500.016,1199.24,0.642344,573.532,1220.26,0.751365,652.407,1246.63,0.543533,668.188,1246.54,0.469021,725.988,1278.06,0.687785],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0012.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0012.json deleted file mode 100644 index 23c80d7..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0012.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[452.738,568.231,0.0901144,452.661,531.578,0.122762,0,0,0,478.923,526.35,0.657392,557.805,515.661,0.304018,505.218,652.408,0.70199,647.052,589.377,0.703486,478.952,820.802,0.712755,731.313,683.95,0.669016,447.39,967.889,0.708265,647.132,689.193,0.291021,568.366,878.478,0.706137,657.644,862.711,0.688106,526.155,1031.11,0.732891,647.284,1057.28,0.758741,557.805,1193.96,0.716938,704.994,1241.37,0.723968,531.603,578.797,0.660446,468.348,447.423,0.650124,489.472,1188.67,0.581771,500.019,1199.21,0.631463,573.541,1215.06,0.732917,647.225,1246.62,0.532752,657.807,1246.48,0.452384,731.219,1272.77,0.662188],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0013.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0013.json deleted file mode 100644 index 6e993eb..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0013.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[452.628,573.549,0.0664158,447.357,536.786,0.0847737,0,0,0,473.618,531.503,0.623213,547.279,510.544,0.320758,499.888,652.471,0.684849,641.831,589.406,0.699159,473.594,825.946,0.684626,731.269,678.659,0.624672,442.177,973.09,0.71076,647.103,699.737,0.262959,568.279,873.302,0.691251,657.639,862.637,0.677575,521.133,1030.98,0.723352,647.24,1051.97,0.740072,557.794,1193.93,0.702365,704.966,1236.01,0.711379,526.377,578.844,0.661461,457.97,447.452,0.636013,489.426,1188.66,0.565557,499.986,1199.2,0.618914,573.544,1215,0.716455,652.361,1246.61,0.546308,662.999,1246.45,0.462692,726.074,1251.79,0.663086],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0014.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0014.json deleted file mode 100644 index 789a7e1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0014.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[442.107,568.338,0.0744204,436.949,536.821,0.112052,0,0,0,457.974,536.772,0.624268,526.322,515.669,0.286732,489.451,652.536,0.660753,631.327,589.362,0.670984,458.013,831.176,0.646606,726.066,657.792,0.598782,442.017,978.294,0.694796,647.178,678.695,0.264498,563.107,873.308,0.65295,652.419,857.511,0.64878,521.113,1030.96,0.689193,647.133,1041.52,0.704079,562.922,1193.94,0.678512,699.876,1225.53,0.666712,521.043,584.031,0.675995,447.377,452.744,0.655788,489.42,1188.63,0.570768,500.008,1199.18,0.615822,573.58,1215,0.687563,652.397,1246.49,0.495764,668.155,1241.28,0.423104,726.037,1241.35,0.661262],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0015.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0015.json deleted file mode 100644 index 2f4774c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0015.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[431.569,573.558,0.107561,431.609,552.554,0.145271,0,0,0,447.477,552.536,0.64122,521.048,520.952,0.283413,479.005,668.177,0.660188,615.662,594.59,0.671136,452.61,836.44,0.671689,726.006,652.414,0.591558,436.843,978.437,0.690497,636.702,662.961,0.221944,563.079,873.286,0.652707,652.415,857.467,0.646775,521.111,1025.76,0.685529,641.99,1030.97,0.69957,557.817,1193.92,0.680048,699.812,1209.72,0.671312,515.713,589.313,0.674462,436.941,473.594,0.645953,489.418,1183.54,0.557397,499.995,1199.14,0.60152,573.522,1209.81,0.687925,652.41,1241.27,0.538469,663.024,1236.1,0.462446,720.81,1235.98,0.665591],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0016.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0016.json deleted file mode 100644 index 03f8e3f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0016.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[426.322,578.839,0.085194,426.329,563.007,0.11101,0,0,0,442.161,557.813,0.636642,515.703,521.033,0.299484,473.587,673.487,0.649986,610.389,594.626,0.662268,447.332,846.901,0.664277,720.697,647.114,0.585269,431.643,983.627,0.663974,631.458,636.716,0.191211,563.082,873.241,0.6398,652.393,857.383,0.632254,521.058,1025.8,0.677358,642.011,1025.73,0.686194,557.836,1193.95,0.673373,699.676,1199.19,0.681646,510.374,589.406,0.664648,426.365,473.699,0.604918,489.415,1188.63,0.56153,500.002,1199.17,0.602513,573.543,1214.94,0.681394,652.425,1230.76,0.489235,668.208,1225.51,0.422252,710.34,1225.54,0.646078],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0017.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0017.json deleted file mode 100644 index 2f453ce..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0017.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[405.441,573.662,0.0757659,405.44,563.049,0.107804,0,0,0,442.053,563.121,0.621359,510.481,531.487,0.290227,457.949,678.763,0.673422,610.281,594.667,0.68145,442.038,852.151,0.686829,699.828,641.901,0.574216,426.35,983.713,0.68411,610.448,641.884,0.177163,562.99,873.213,0.669666,647.286,857.387,0.664606,520.98,1025.77,0.719036,647.05,1015.24,0.717889,562.937,1193.91,0.72671,694.503,1188.71,0.734465,505.176,599.879,0.651026,410.654,484.286,0.577105,484.293,1188.6,0.626543,499.982,1199.18,0.663986,573.555,1209.8,0.733511,652.39,1209.68,0.494051,668.2,1199.32,0.438037,705.004,1209.71,0.680385],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0018.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0018.json deleted file mode 100644 index dc1317c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0018.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[400.041,573.565,0.088964,400.021,562.997,0.127695,0,0,0,426.336,563.076,0.61025,500.003,526.25,0.289432,447.453,689.117,0.684616,599.854,594.564,0.66958,436.765,857.426,0.682674,699.713,636.706,0.531046,415.786,983.693,0.669577,594.578,641.969,0.159358,562.941,873.237,0.655415,647.185,847.002,0.645215,520.896,1025.65,0.696977,641.994,1004.74,0.697591,557.802,1193.94,0.704061,689.3,1172.98,0.711606,489.531,599.814,0.654428,400.152,478.943,0.621427,484.228,1188.66,0.615633,494.768,1199.22,0.644016,573.553,1214.99,0.721115,652.399,1199.19,0.478731,668.224,1193.97,0.433095,694.615,1194.01,0.689188],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0019.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0019.json deleted file mode 100644 index 586cac3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0019.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[394.883,584.136,0.0737686,394.925,573.488,0.101019,0,0,0,410.581,568.335,0.635946,489.447,526.322,0.329289,442.067,689.264,0.698244,594.561,594.639,0.653725,426.352,862.69,0.680749,694.58,620.986,0.496607,405.406,988.921,0.689264,599.859,615.648,0.143519,557.819,873.209,0.641509,647.159,846.922,0.630289,520.871,1025.6,0.689376,647.061,999.481,0.686647,557.848,1193.88,0.69224,689.192,1167.67,0.702155,484.14,605.075,0.655188,400.058,484.266,0.634996,484.19,1183.51,0.618358,499.928,1199.17,0.645144,573.555,1209.79,0.717588,647.235,1188.7,0.452657,663.018,1183.47,0.407912,694.475,1193.86,0.685044],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0020.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0020.json deleted file mode 100644 index a4e1fd5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0020.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[394.79,578.906,0.0735894,394.824,568.343,0.106287,0,0,0,405.292,568.369,0.6516,484.181,526.35,0.316206,436.936,689.327,0.688623,584.128,594.666,0.656633,415.852,862.779,0.667247,694.408,610.445,0.438806,405.268,988.94,0.694145,636.541,563.11,0.221669,557.73,868.061,0.627921,647.057,836.444,0.625116,520.849,1025.6,0.678088,647.072,994.093,0.681718,557.857,1193.92,0.685268,689.166,1157.15,0.693076,478.863,605.103,0.649511,394.834,484.261,0.629068,484.179,1183.53,0.607818,499.934,1199.19,0.634482,573.584,1214.99,0.708357,647.195,1183.42,0.432421,662.968,1178.12,0.39187,694.456,1183.41,0.660889],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0021.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0021.json deleted file mode 100644 index d838f90..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0021.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[394.734,589.382,0.0823506,394.751,573.639,0.114477,0,0,0,400.044,573.683,0.659376,473.695,531.618,0.317601,436.834,694.475,0.687367,573.57,599.873,0.673399,405.386,862.855,0.671622,694.355,605.005,0.54158,400.132,988.967,0.710223,631.328,557.836,0.383176,552.589,868.007,0.633217,641.856,831.224,0.627506,515.792,1020.45,0.676568,647.099,983.655,0.673809,557.794,1193.87,0.685258,689.149,1146.68,0.695656,463.243,610.434,0.644304,384.298,494.712,0.624459,484.171,1188.6,0.609625,499.904,1199.2,0.631791,573.538,1214.94,0.705998,647.15,1167.66,0.429761,662.901,1162.37,0.393684,694.448,1167.67,0.657161],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0022.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0022.json deleted file mode 100644 index 03bb581..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0022.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[384.314,599.825,0.129947,389.465,578.904,0.176109,0,0,0,400.022,578.874,0.672979,468.374,541.991,0.253049,431.588,694.602,0.685989,568.433,599.921,0.676936,405.288,868.056,0.695409,689.282,599.811,0.549775,400.016,989.034,0.727839,626.064,536.857,0.414902,552.534,868.009,0.63497,636.682,831.152,0.63132,515.774,1020.41,0.681345,647.122,978.401,0.676397,557.837,1193.85,0.691734,689.145,1141.33,0.695268,463.12,615.584,0.642877,373.761,500.032,0.610246,484.188,1183.51,0.611789,499.924,1199.17,0.636312,573.561,1209.81,0.710488,647.041,1157.22,0.438959,657.632,1151.97,0.405273,694.447,1157.22,0.67115],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0023.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0023.json deleted file mode 100644 index 55ea352..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0023.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[379.029,605.157,0.0597027,373.788,589.303,0.082265,0,0,0,394.783,589.275,0.629955,457.963,547.295,0.298603,421.072,699.821,0.675475,563.151,605.056,0.677041,400.169,873.206,0.706582,689.108,599.777,0.600632,394.915,988.984,0.740069,620.958,526.417,0.499187,547.253,867.968,0.631684,631.421,825.975,0.634915,515.728,1020.52,0.68399,647.133,967.922,0.670494,557.79,1188.76,0.687714,689.172,1125.6,0.707317,457.85,620.896,0.632938,363.293,505.255,0.592109,484.177,1188.61,0.609277,499.915,1199.2,0.632887,573.512,1209.73,0.707633,647.225,1151.78,0.445596,662.918,1146.53,0.414698,694.454,1146.65,0.675361],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0024.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0024.json deleted file mode 100644 index bda1943..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0024.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[384.314,610.347,0.0605508,0,0,0,0,0,0,389.591,589.379,0.602363,452.694,552.561,0.342491,415.805,705.001,0.68694,563.006,605.086,0.701389,400.062,873.18,0.725837,673.516,599.75,0.611419,394.791,989.013,0.737916,615.658,526.197,0.533887,542.025,868.022,0.657573,631.34,825.969,0.657281,515.647,1020.53,0.713309,647.152,957.445,0.684298,557.758,1188.78,0.718608,689.15,1115.12,0.720301,452.589,620.923,0.652072,358.067,510.445,0.578912,484.182,1188.64,0.637684,499.906,1199.21,0.662786,573.515,1209.77,0.735491,647.16,1130.82,0.459548,657.737,1120.44,0.437834,694.418,1130.91,0.674531],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0025.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0025.json deleted file mode 100644 index cc78563..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0025.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[405.319,615.632,0.0817519,379.057,594.618,0.0867545,0,0,0,384.368,599.904,0.599314,452.609,563.067,0.374623,410.543,710.263,0.717881,557.766,610.265,0.718962,399.994,878.431,0.748732,668.265,589.366,0.631229,394.722,994.142,0.74027,615.592,520.881,0.584024,536.719,867.987,0.692191,620.942,820.758,0.684779,510.454,1020.51,0.742308,647.15,952.133,0.708272,557.762,1188.73,0.737695,689.16,1109.8,0.71634,447.427,626.22,0.642514,357.981,515.713,0.569624,484.146,1188.7,0.656633,499.904,1199.25,0.681571,573.528,1209.75,0.75687,647.114,1125.6,0.493847,657.638,1120.32,0.468742,694.465,1120.43,0.691614],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0026.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0026.json deleted file mode 100644 index 774b4d1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0026.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,373.789,605.094,0.0546464,0,0,0,379.013,605.144,0.618161,442.218,563.055,0.446387,405.358,715.452,0.707226,552.463,605.211,0.693834,394.91,878.545,0.733956,668.26,589.26,0.618817,389.549,999.393,0.706956,615.749,515.833,0.540152,531.546,868.012,0.67047,620.902,820.732,0.676795,505.29,1025.63,0.710864,647.191,946.899,0.705499,557.766,1188.78,0.712919,689.307,1094.05,0.696584,442.241,631.392,0.65377,352.653,515.821,0.622759,484.166,1188.74,0.640551,499.956,1199.29,0.660364,573.538,1209.79,0.737074,647.224,1115.09,0.520011,657.689,1109.79,0.493619,699.673,1115.02,0.689261],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0027.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0027.json deleted file mode 100644 index 91da26a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0027.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,368.546,605.189,0.599573,442.061,563.126,0.431443,400.171,720.773,0.688741,536.819,610.268,0.661399,394.822,883.744,0.703277,662.996,584.084,0.593007,389.467,999.355,0.685736,610.525,515.726,0.49502,531.467,868.074,0.62899,620.86,820.737,0.640867,505.246,1025.73,0.666628,647.223,941.625,0.666612,557.806,1193.88,0.675067,694.446,1078.34,0.673862,442.096,631.477,0.639794,347.414,515.823,0.62247,479.058,1188.76,0.614197,499.937,1199.33,0.629411,573.591,1214.94,0.698698,652.463,1109.78,0.485232,662.959,1099.33,0.458507,699.865,1109.74,0.650855],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0028.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0028.json deleted file mode 100644 index d90e5e7..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0028.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[389.556,641.908,0.0626118,358.059,610.391,0.0712859,0,0,0,363.306,610.358,0.602529,436.819,568.292,0.430499,400.118,725.964,0.70327,531.582,610.319,0.686179,394.785,883.818,0.718043,657.797,578.789,0.612304,384.247,999.475,0.687179,610.461,510.519,0.51228,526.304,868.081,0.658053,615.648,820.722,0.659962,505.159,1025.7,0.687473,647.141,936.339,0.656046,557.811,1193.87,0.699854,694.509,1067.79,0.704269,436.911,636.677,0.634228,336.974,526.192,0.606555,479.046,1188.79,0.633444,499.954,1204.43,0.64571,573.595,1209.79,0.718976,662.899,1099.28,0.467814,673.491,1088.75,0.454011,705.007,1083.53,0.633211],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0029.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0029.json deleted file mode 100644 index 7d81f51..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0029.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[389.529,641.947,0.0776451,0,0,0,0,0,0,358.002,615.596,0.61992,426.369,568.332,0.431194,400.042,731.283,0.681527,526.212,610.282,0.664899,394.698,889.068,0.692348,652.408,573.698,0.626657,379.043,999.436,0.660386,605.212,510.37,0.507251,526.365,868.071,0.618505,615.657,820.616,0.635271,505.207,1025.69,0.654032,647.07,925.83,0.613335,557.836,1193.91,0.665905,699.664,1062.54,0.670957,431.682,641.866,0.635979,326.522,526.34,0.628396,484.122,1188.8,0.592652,499.995,1204.41,0.608775,573.62,1214.95,0.680845,662.972,1078.27,0.458055,678.672,1073.01,0.456286,715.459,1073.12,0.616577],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0030.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0030.json deleted file mode 100644 index 791149e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0030.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,352.804,615.728,0.585726,426.299,568.415,0.450047,394.92,731.393,0.670411,521.08,610.308,0.6779,394.661,889.011,0.682929,652.327,573.572,0.635824,373.845,999.476,0.656521,605.064,499.951,0.53922,526.26,868.099,0.620648,615.562,820.635,0.634295,505.205,1025.72,0.658256,647.089,915.283,0.612352,557.854,1193.93,0.671058,699.671,1052.01,0.654547,431.544,641.927,0.61963,326.449,526.387,0.594366,484.127,1188.78,0.587032,499.989,1199.34,0.603136,573.63,1209.81,0.683222,668.155,1072.99,0.476481,678.702,1067.75,0.471471,710.329,1067.69,0.631842],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0031.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0031.json deleted file mode 100644 index ba1a3d7..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0031.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,352.766,620.977,0.550699,415.839,573.582,0.417636,394.875,736.563,0.67042,521.029,610.382,0.672043,389.62,894.27,0.676188,641.935,573.505,0.638309,373.759,1004.66,0.662723,594.625,489.476,0.487689,526.211,868.052,0.620785,610.337,815.496,0.633372,505.17,1025.75,0.64537,641.99,904.828,0.618047,562.932,1193.94,0.668091,699.713,1036.26,0.658653,426.336,647.123,0.600539,321.266,542.027,0.548892,484.135,1193.81,0.584596,499.995,1204.42,0.598071,573.665,1209.79,0.679315,657.739,1062.48,0.503443,668.212,1052.07,0.487942,715.55,1057.32,0.625606],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0032.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0032.json deleted file mode 100644 index da4d957..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0032.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,352.678,631.334,0.549165,410.607,573.59,0.405259,394.837,736.556,0.6677,520.906,610.389,0.663098,389.567,899.493,0.655699,641.81,573.475,0.631063,368.564,1009.89,0.659016,589.389,484.343,0.494306,526.188,868.081,0.620726,610.285,815.44,0.630384,500.031,1025.78,0.641134,641.99,899.619,0.614422,562.934,1193.93,0.668792,699.794,1030.88,0.661263,421.134,647.164,0.611731,321.166,552.492,0.556316,484.146,1193.84,0.582911,500.016,1204.44,0.59475,573.673,1209.78,0.678713,662.973,1051.97,0.496279,673.478,1041.53,0.489238,720.776,1046.79,0.60885],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0033.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0033.json deleted file mode 100644 index 2d9de58..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0033.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,342.312,631.439,0.532162,405.301,573.571,0.388818,394.791,736.612,0.649637,515.652,610.4,0.653878,384.361,899.589,0.629056,636.594,568.355,0.57776,368.502,1009.97,0.646312,578.789,484.084,0.465033,526.254,867.99,0.614827,605.218,815.32,0.624921,499.906,1025.78,0.643649,636.712,894.173,0.570527,562.918,1193.91,0.659873,699.656,1015.18,0.635059,415.804,647.134,0.608318,315.995,557.729,0.562129,484.106,1193.83,0.58313,499.967,1204.42,0.594294,573.656,1209.78,0.674829,673.463,1036.27,0.469008,683.925,1031.02,0.467439,710.332,1030.95,0.573845],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0034.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0034.json deleted file mode 100644 index c9c0ee7..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0034.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[336.967,662.977,0.0706588,0,0,0,0,0,0,342.259,641.913,0.525025,405.255,578.837,0.340098,394.814,736.653,0.648264,510.43,610.472,0.662033,389.442,899.442,0.636571,626.082,568.209,0.607135,363.291,1015.22,0.649797,573.537,478.933,0.468965,526.185,867.92,0.619148,605.167,810.198,0.630481,494.71,1025.68,0.644513,641.777,889.039,0.59635,557.834,1193.88,0.663771,699.761,1009.87,0.654824,410.656,652.477,0.594733,315.856,568.212,0.560398,484.108,1193.81,0.587877,499.933,1199.35,0.597656,573.637,1209.76,0.678823,673.501,1031.09,0.493863,683.912,1030.9,0.491046,720.702,1025.64,0.594947],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0035.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0035.json deleted file mode 100644 index 352ae9d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0035.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[336.982,668.191,0.0762234,331.762,652.458,0.0810406,0,0,0,336.965,647.059,0.518025,399.99,578.889,0.33697,394.703,741.862,0.646283,505.16,610.468,0.647067,384.245,899.61,0.6392,620.838,568.229,0.589351,358.133,1015.24,0.666419,568.457,478.98,0.452779,521.129,862.853,0.624331,605.058,810.126,0.627802,494.648,1025.79,0.653121,636.661,883.78,0.585727,557.829,1193.92,0.666937,699.758,994.271,0.647401,405.452,652.555,0.59861,310.617,568.339,0.549179,484.1,1193.86,0.58809,499.959,1204.45,0.597638,573.651,1209.77,0.687006,678.715,1025.64,0.47263,684,1020.4,0.468599,720.72,1015.22,0.579589],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0036.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0036.json deleted file mode 100644 index 14df8ea..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0036.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,331.785,652.43,0.05452,0,0,0,331.826,647.252,0.482807,400.032,589.305,0.329592,394.693,752.268,0.63929,499.952,615.59,0.634741,384.263,899.657,0.632512,610.461,563.003,0.570678,357.968,1020.51,0.664684,562.984,473.583,0.424492,526.186,862.799,0.615152,605.034,804.889,0.616305,489.533,1025.69,0.647311,636.549,878.5,0.538863,557.806,1193.89,0.654143,699.829,988.859,0.605637,405.462,657.757,0.586701,310.621,573.483,0.530179,484.091,1193.85,0.587667,499.958,1204.43,0.596321,573.634,1209.76,0.681603,683.923,1010,0.445685,689.17,1004.73,0.449397,720.801,1004.7,0.529384],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0037.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0037.json deleted file mode 100644 index dbcc13b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0037.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[326.512,673.459,0.0762695,326.503,657.719,0.0854027,0,0,0,331.788,652.364,0.478022,399.998,589.37,0.281285,394.724,752.303,0.643908,494.755,610.488,0.633178,379.087,904.797,0.628802,610.247,552.546,0.457932,352.834,1025.58,0.68189,547.247,463.143,0.400284,526.19,862.733,0.614508,604.987,799.611,0.607227,489.499,1025.7,0.641166,631.386,873.307,0.48482,557.809,1193.86,0.650215,699.858,978.445,0.548656,405.447,662.966,0.578892,300.232,573.633,0.496138,484.087,1193.86,0.583947,499.974,1204.44,0.588716,573.629,1209.71,0.670697,683.956,999.393,0.401221,689.226,994.211,0.402339,720.761,989.061,0.487874],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0038.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0038.json deleted file mode 100644 index a3ff8d2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0038.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[331.727,689.213,0.0909199,0,0,0,0,0,0,326.476,652.451,0.481954,389.568,589.351,0.274214,394.66,757.508,0.632068,484.302,610.506,0.634275,379.074,910.118,0.624325,605.039,552.549,0.474703,352.733,1025.64,0.687087,531.565,452.805,0.420114,526.166,862.636,0.622771,599.776,794.353,0.602167,489.524,1025.64,0.663581,631.443,868.055,0.481746,557.788,1193.86,0.657287,704.993,973.075,0.544697,405.261,662.924,0.578802,284.405,573.695,0.501502,484.093,1193.84,0.578298,499.998,1204.42,0.580107,573.591,1209.7,0.667432,683.916,988.98,0.411857,689.172,988.801,0.413511,726.049,983.707,0.495375],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0039.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0039.json deleted file mode 100644 index 6a279b0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0039.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,321.228,657.737,0.464954,379.015,594.593,0.239132,389.599,757.568,0.606527,479.001,610.452,0.562623,378.981,920.566,0.598231,594.647,542.091,0.437713,347.575,1030.87,0.676526,526.294,452.769,0.431849,526.27,857.492,0.565357,599.846,783.945,0.562667,489.532,1025.62,0.628469,626.104,862.664,0.425022,557.796,1193.81,0.627401,699.806,952.227,0.484213,400.045,668.269,0.533953,273.926,578.946,0.449195,479.013,1188.8,0.556866,499.98,1199.33,0.544921,573.593,1204.53,0.632672,683.981,983.693,0.334521,689.235,983.5,0.327282,720.802,978.285,0.433336],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0040.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0040.json deleted file mode 100644 index 3922f27..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0040.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[321.277,689.247,0.149345,321.204,678.69,0.16353,0,0,0,321.175,657.712,0.53343,368.641,599.793,0.257909,389.584,757.606,0.617398,478.891,610.451,0.608342,373.842,915.323,0.592006,578.919,536.8,0.506856,347.495,1030.89,0.683208,515.816,447.486,0.450262,526.257,857.452,0.580417,599.827,783.873,0.587865,489.508,1025.61,0.613357,615.61,857.366,0.392502,557.856,1188.73,0.614201,699.708,941.769,0.453995,399.959,668.265,0.591423,273.898,584.105,0.560315,484.092,1188.7,0.534711,505.154,1199.25,0.522612,573.646,1204.45,0.618381,683.855,978.303,0.33742,684.04,967.896,0.331713,720.69,957.318,0.398404],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0041.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0041.json deleted file mode 100644 index 7ea08da..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0041.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[315.947,689.277,0.102601,310.721,673.497,0.117696,0,0,0,315.962,657.676,0.510749,368.58,594.642,0.225503,389.523,757.594,0.611078,473.647,610.359,0.595713,373.789,925.821,0.591369,578.798,531.553,0.503217,347.444,1031.03,0.678434,510.49,447.402,0.430671,526.269,857.429,0.571046,599.784,778.712,0.582188,489.487,1025.68,0.5968,605.16,841.649,0.384797,562.912,1188.77,0.599474,694.635,936.263,0.424832,394.851,668.221,0.561784,273.797,584.111,0.528933,479.038,1188.7,0.528462,505.12,1199.26,0.506238,573.663,1204.45,0.596031,689.166,952.234,0.322732,694.353,952.065,0.323765,710.335,941.678,0.3771],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0042.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0042.json deleted file mode 100644 index 951e5cd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0042.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[310.733,694.438,0.128431,310.662,678.667,0.148937,0,0,0,315.984,657.752,0.504014,363.399,599.872,0.201428,389.49,762.829,0.60324,468.429,610.362,0.565638,368.612,931.074,0.59616,573.604,531.497,0.457244,342.236,1036.22,0.686607,494.774,447.392,0.400045,526.246,857.391,0.550735,599.754,778.655,0.557002,489.533,1025.73,0.618154,605.059,836.383,0.372574,557.853,1193.85,0.628066,694.615,920.546,0.405324,394.793,673.471,0.538296,268.584,589.369,0.487457,479.048,1188.79,0.543661,505.145,1199.36,0.528624,573.619,1204.55,0.629005,694.444,946.936,0.319892,694.603,946.778,0.314964,715.422,936.278,0.359991],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0043.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0043.json deleted file mode 100644 index ca577ad..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0043.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[315.939,694.505,0.111498,310.713,683.976,0.130409,0,0,0,315.926,662.947,0.504765,368.487,599.871,0.199521,389.461,762.811,0.612504,468.355,610.265,0.576958,373.757,931.042,0.608339,568.269,526.433,0.475241,342.255,1036.26,0.686819,484.321,447.314,0.425619,526.272,852.224,0.562454,599.751,778.583,0.573609,489.53,1025.58,0.62825,605.001,831.137,0.389423,557.831,1193.91,0.632946,694.477,910.031,0.420781,394.801,673.513,0.549903,263.411,599.808,0.487099,479.051,1188.79,0.550656,505.131,1204.42,0.535733,573.592,1209.71,0.63079,694.379,946.875,0.335445,694.463,941.778,0.328601,710.24,925.79,0.357369],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0044.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0044.json deleted file mode 100644 index f03530a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0044.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[315.895,689.266,0.0829999,305.469,678.688,0.0950326,0,0,0,310.765,668.189,0.46666,363.302,605.043,0.217602,384.315,762.877,0.612029,463.096,610.326,0.594885,368.613,936.197,0.60682,562.919,526.314,0.477818,337.063,1036.23,0.685828,478.784,447.297,0.428572,526.238,852.241,0.576911,594.624,778.57,0.587538,489.544,1025.63,0.640161,599.892,831.155,0.393151,557.836,1193.96,0.650306,694.671,910.036,0.437036,394.703,678.757,0.556758,263.384,599.833,0.478291,484.09,1193.85,0.558867,505.132,1204.48,0.549292,573.587,1209.75,0.649345,689.235,946.829,0.333174,694.349,941.722,0.323842,720.696,925.828,0.377633],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0045.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0045.json deleted file mode 100644 index d9f0c3d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0045.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[310.641,689.296,0.1731,310.637,678.717,0.195554,0,0,0,315.955,668.246,0.500215,358.067,605.19,0.15301,384.273,762.899,0.601474,452.577,605.159,0.555255,368.603,936.209,0.617392,547.337,521.144,0.46806,337.04,1036.29,0.67644,457.94,442.104,0.412703,526.318,852.192,0.552269,594.587,773.395,0.559232,489.496,1025.61,0.614403,599.746,825.936,0.373706,557.825,1193.92,0.622025,694.535,904.716,0.440902,389.549,683.925,0.539487,258.132,605.099,0.472558,484.086,1193.83,0.538953,505.136,1204.45,0.519636,573.588,1209.71,0.618608,689.219,941.697,0.312027,694.375,941.536,0.307753,710.347,910.072,0.367375],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0046.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0046.json deleted file mode 100644 index b5683ec..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0046.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[316.003,699.713,0.088426,0,0,0,0,0,0,315.807,678.776,0.428853,357.945,610.458,0.165901,384.302,762.862,0.597801,447.322,610.381,0.586146,368.533,931.084,0.610299,526.378,520.999,0.508964,336.987,1036.31,0.679393,447.275,442.06,0.442364,526.266,846.936,0.552312,589.396,773.303,0.566482,494.683,1025.64,0.609836,594.6,825.848,0.375592,557.812,1193.9,0.626956,694.454,899.612,0.444722,389.467,684.038,0.539945,258.173,610.387,0.412251,484.13,1193.84,0.547051,505.189,1204.44,0.532,573.555,1204.59,0.624808,689.289,941.662,0.32083,694.389,941.514,0.315243,710.225,904.866,0.374177],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0047.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0047.json deleted file mode 100644 index e34814d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0047.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[315.941,694.469,0.0876526,310.702,683.975,0.10166,0,0,0,315.874,678.713,0.42705,357.967,610.474,0.158958,384.292,768.071,0.605849,447.398,605.169,0.609947,368.488,930.983,0.608911,526.18,515.711,0.621401,331.803,1036.22,0.687274,431.661,436.864,0.609075,526.298,846.975,0.565444,594.512,773.284,0.572113,494.761,1025.7,0.581337,594.614,825.977,0.38069,557.845,1193.81,0.59752,694.405,904.74,0.46982,389.497,684.011,0.530724,263.394,605.085,0.412251,484.093,1188.74,0.528628,505.167,1199.3,0.503186,573.581,1204.51,0.593372,673.427,941.46,0.311803,678.662,936.362,0.301811,705.102,910.15,0.396322],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0048.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0048.json deleted file mode 100644 index b6d5963..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0048.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[310.653,683.964,0.102662,310.633,678.694,0.122148,0,0,0,310.749,678.699,0.457682,352.836,610.516,0.173491,384.218,768.121,0.613593,442.11,610.291,0.618832,363.32,931.08,0.629541,521.031,515.73,0.63537,331.751,1036.29,0.69561,426.298,436.903,0.621707,526.38,841.725,0.566208,589.383,768.124,0.579947,499.895,1025.67,0.613247,594.512,825.955,0.380174,562.927,1193.84,0.634734,694.323,899.643,0.508012,384.306,684.028,0.53757,258.151,605.149,0.441581,484.107,1188.8,0.550023,505.197,1199.36,0.538904,573.631,1204.54,0.629079,668.281,941.404,0.338275,673.447,936.311,0.334343,705.019,910.05,0.429492],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0049.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0049.json deleted file mode 100644 index 8ea2ad5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0049.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[300.222,678.737,0.0947094,300.227,673.446,0.112416,0,0,0,310.682,673.478,0.441711,347.527,615.577,0.166398,378.981,762.903,0.607069,442.034,605.128,0.622873,363.251,931.044,0.629644,515.743,515.743,0.650696,326.543,1041.46,0.695183,410.616,442.086,0.626863,526.332,841.657,0.573434,594.512,768.075,0.577524,499.926,1020.48,0.618979,589.327,825.895,0.394702,562.944,1193.83,0.636105,689.236,899.541,0.529359,379.059,684.011,0.537037,247.648,605.069,0.434076,484.12,1188.79,0.563458,505.242,1199.35,0.557413,573.642,1204.52,0.640693,662.957,941.432,0.370706,663.032,936.316,0.363846,699.828,904.863,0.459633],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0050.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0050.json deleted file mode 100644 index 86783dc..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0050.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[300.149,684.025,0.0972748,294.947,678.701,0.104476,0,0,0,305.438,673.446,0.374796,336.991,610.475,0.123636,373.845,762.783,0.602668,436.861,605.147,0.595178,363.224,930.971,0.622854,515.696,515.814,0.497672,326.498,1041.5,0.68971,405.301,442.123,0.438712,526.368,836.399,0.56652,594.518,768.106,0.584902,499.897,1020.38,0.58123,578.772,825.912,0.367498,562.924,1188.76,0.596783,684.021,899.633,0.424038,379.008,683.965,0.524726,242.332,605.138,0.376298,479.05,1188.68,0.536376,505.206,1199.26,0.512636,573.635,1204.48,0.593567,657.692,941.508,0.300535,657.742,936.431,0.285975,694.618,904.921,0.393025],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0051.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0051.json deleted file mode 100644 index 5716ac5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0051.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[284.453,678.708,0.0775783,0,0,0,0,0,0,310.644,668.243,0.345338,352.675,610.457,0.132604,368.548,757.605,0.578786,436.785,605.048,0.586109,358.141,925.784,0.615397,505.306,515.685,0.473514,326.466,1041.46,0.691346,400.001,442.274,0.450553,526.271,831.13,0.57174,589.383,768.038,0.590157,499.921,1020.42,0.579672,573.506,825.965,0.363109,557.829,1193.84,0.57925,668.263,899.638,0.401946,373.847,678.736,0.510761,242.345,599.855,0.357164,479.042,1188.64,0.517932,505.137,1199.24,0.485688,573.552,1204.58,0.56872,652.487,941.51,0.307066,652.495,941.414,0.294955,689.324,910.059,0.39163],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0052.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0052.json deleted file mode 100644 index fa6e2fd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0052.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[336.991,762.853,0.0730492,0,0,0,0,0,0,300.212,668.173,0.243632,336.947,610.258,0.0779602,373.764,757.62,0.533431,426.312,610.283,0.475879,357.985,925.86,0.611394,505.26,515.772,0.416599,326.398,1036.26,0.682665,399.923,447.529,0.414184,526.383,815.5,0.499861,589.377,767.984,0.465459,499.938,1015.16,0.553242,578.76,831.299,0.32758,557.762,1193.83,0.541666,657.858,904.953,0.347022,373.774,689.139,0.461353,231.828,610.302,0.238805,479.02,1188.7,0.498745,500.008,1199.28,0.459193,573.473,1204.59,0.532619,647.127,941.754,0.269414,647.051,941.616,0.265541,689.052,925.765,0.322446],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0053.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0053.json deleted file mode 100644 index d4a555c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0053.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.935,683.988,0.0824289,279.127,673.438,0.093829,0,0,0,289.705,662.958,0.395936,326.492,610.301,0.113709,363.331,747.126,0.59558,426.325,599.811,0.56298,352.864,920.59,0.631919,500.018,515.591,0.436611,321.213,1041.52,0.693917,394.819,452.58,0.450614,526.312,825.884,0.569153,594.526,768.045,0.602033,499.904,1020.37,0.553709,568.4,836.539,0.380452,557.744,1193.86,0.53549,657.743,920.596,0.402563,363.257,678.673,0.510307,237.082,610.302,0.379702,479.026,1188.73,0.496688,499.989,1199.29,0.45305,573.462,1209.71,0.518772,631.468,946.746,0.317631,631.413,941.706,0.313932,684.023,936.389,0.397391],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0054.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0054.json deleted file mode 100644 index 4bda0e4..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0054.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.834,678.67,0.081217,273.871,662.961,0.0958936,0,0,0,279.242,657.733,0.43886,326.538,605.152,0.141742,363.226,747.046,0.601945,426.317,599.816,0.583411,352.819,925.769,0.625116,494.763,510.488,0.430363,321.202,1036.24,0.68043,389.635,452.787,0.441894,526.194,825.875,0.575912,589.305,768.084,0.606241,499.877,1020.37,0.517241,573.547,841.739,0.362571,557.763,1193.92,0.498881,647.32,931.099,0.390178,358.068,673.418,0.526592,231.87,605.041,0.428674,484.073,1188.77,0.471672,505.126,1199.35,0.425768,568.489,1209.74,0.479943,615.731,946.83,0.312129,615.756,946.727,0.309344,662.913,941.586,0.374998],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0055.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0055.json deleted file mode 100644 index 33e1349..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0055.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.94,673.462,0.087659,273.903,657.698,0.102091,0,0,0,279.209,652.579,0.457601,326.398,605.046,0.145752,358.011,741.8,0.612702,426.342,599.787,0.588367,352.86,915.34,0.626186,494.727,510.514,0.432747,321.15,1031.06,0.697863,389.571,457.928,0.444397,526.222,825.972,0.592404,594.509,768.085,0.617348,499.965,1015.26,0.532576,568.245,852.152,0.395304,557.748,1193.88,0.519689,642.027,941.524,0.450827,358.024,668.223,0.536219,231.767,599.805,0.455802,484.096,1188.75,0.478639,505.135,1199.33,0.436479,568.49,1209.73,0.49595,610.388,957.355,0.291684,610.401,952.197,0.305233,652.451,946.94,0.409793],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0056.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0056.json deleted file mode 100644 index e151012..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0056.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.392,647.225,0.0766497,268.618,647.14,0.0893923,0,0,0,279.166,652.461,0.436177,321.33,599.906,0.15795,357.977,736.599,0.604462,426.334,594.616,0.58421,352.798,915.256,0.632884,494.688,510.347,0.410029,316.107,1031,0.696975,389.484,463.12,0.431974,526.164,825.985,0.589212,594.522,768.127,0.617576,505.151,1020.39,0.600679,562.956,857.493,0.42562,557.769,1193.87,0.582982,641.782,947.01,0.468853,358.011,662.918,0.537804,226.528,589.351,0.446872,484.119,1188.78,0.521267,505.147,1199.35,0.493845,573.521,1209.75,0.567449,604.969,978.343,0.289254,605.052,973.07,0.309261,647.304,967.853,0.438965],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0057.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0057.json deleted file mode 100644 index f3b8506..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0057.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.615,657.713,0.0878351,268.626,647.194,0.104573,0,0,0,274.021,652.392,0.482497,321.216,599.817,0.164843,352.831,736.548,0.604805,421.101,589.37,0.586316,352.658,915.301,0.628446,489.475,505.263,0.414455,316.041,1025.79,0.708451,384.344,468.352,0.426548,521.103,825.985,0.591762,589.395,768.098,0.609105,505.183,1015.26,0.63538,557.736,857.393,0.448369,557.795,1193.92,0.626761,626.203,957.455,0.473066,352.787,657.682,0.546716,221.369,589.358,0.479001,484.132,1188.8,0.539718,500.019,1199.35,0.536473,573.528,1209.79,0.619792,589.407,988.969,0.288705,589.42,988.79,0.317356,641.921,978.365,0.453956],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0058.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0058.json deleted file mode 100644 index d343329..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0058.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.619,647.197,0.136758,263.396,636.673,0.15982,0,0,0,279.125,647.247,0.518358,321.18,594.667,0.165384,352.767,736.55,0.602647,415.825,589.418,0.602558,347.581,910.097,0.642729,484.313,510.383,0.512675,315.988,1025.75,0.713714,389.453,468.491,0.501737,520.99,825.909,0.599472,589.347,768.027,0.620071,505.134,1015.22,0.636719,552.528,857.566,0.478708,557.853,1193.94,0.636388,610.27,973.177,0.498082,347.542,652.508,0.578158,226.49,584.127,0.507591,484.171,1193.82,0.547861,505.22,1204.45,0.549272,573.589,1209.79,0.636279,573.72,999.427,0.298793,578.912,994.19,0.325276,615.773,983.743,0.477506],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0059.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0059.json deleted file mode 100644 index 369fdba..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0059.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[279.18,657.67,0.168973,273.939,641.906,0.192499,0,0,0,279.118,647.197,0.541532,321.182,589.328,0.165297,352.68,736.56,0.619694,415.832,584.156,0.617499,347.541,910.055,0.655111,484.323,505.287,0.526325,315.911,1025.62,0.71167,389.454,473.711,0.459404,520.987,825.98,0.597734,589.337,768.085,0.622469,505.145,1020.37,0.601564,547.247,862.756,0.470174,562.926,1193.89,0.603673,599.886,989.03,0.456478,347.546,652.526,0.57747,226.5,584.092,0.537353,484.137,1188.78,0.526951,505.231,1199.36,0.512414,573.618,1209.71,0.59178,568.175,1010.01,0.2635,568.455,1004.68,0.275541,610.418,1004.68,0.419784],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0060.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0060.json deleted file mode 100644 index d3acbfd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0060.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.874,662.944,0.209157,268.667,641.982,0.244878,0,0,0,279.179,647.039,0.561454,316.098,589.281,0.144785,352.659,731.368,0.628056,410.664,584.067,0.623343,347.535,899.658,0.669483,484.193,510.417,0.430117,315.84,1015.26,0.703375,384.282,473.691,0.422387,520.971,825.973,0.617275,589.301,768.145,0.635571,499.995,1015.24,0.626559,542.01,868.106,0.48015,562.935,1193.86,0.64467,578.9,1004.76,0.453492,352.661,652.493,0.575532,221.356,584.063,0.567669,484.12,1193.84,0.565732,505.255,1204.46,0.556189,573.608,1209.69,0.637967,557.847,1025.73,0.245918,563.079,1020.44,0.26242,599.936,1020.51,0.422887],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0061.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0061.json deleted file mode 100644 index 50e56c8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0061.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.901,652.477,0.174023,273.843,641.909,0.210436,0,0,0,279.151,641.928,0.540945,321.229,578.925,0.150338,347.559,731.209,0.615029,410.596,578.904,0.610448,347.383,899.597,0.653185,484.199,510.349,0.410897,310.707,1010.01,0.692733,384.242,478.853,0.422885,515.765,825.992,0.615584,584.159,773.285,0.624729,499.992,1020.4,0.610839,531.457,878.586,0.452759,562.92,1193.83,0.623356,557.769,1030.87,0.397295,352.657,652.392,0.563241,221.38,578.815,0.551455,484.173,1193.84,0.537266,510.373,1204.46,0.532742,573.582,1204.57,0.618161,0,0,0,0,0,0,568.323,1036.27,0.316682],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0062.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0062.json deleted file mode 100644 index 959b135..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0062.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.417,652.464,0.124787,263.373,641.912,0.159793,0,0,0,273.903,636.714,0.548634,316.015,578.766,0.152387,347.413,731.202,0.608042,405.428,578.93,0.62436,342.271,894.324,0.67022,484.232,515.638,0.424575,310.599,1009.9,0.688736,389.45,479.033,0.413094,515.679,831.211,0.61417,578.908,773.303,0.625401,505.207,1025.63,0.63774,521.108,894.304,0.430752,562.938,1193.88,0.652773,536.816,1046.83,0.397327,347.454,647.154,0.562291,221.282,573.614,0.541658,484.169,1193.88,0.563328,510.395,1204.52,0.564882,573.606,1209.72,0.650195,468.402,1151.85,0.229484,478.957,1130.89,0.217453,562.945,1072.95,0.291864],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0063.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0063.json deleted file mode 100644 index 496176d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0063.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.385,641.986,0.136227,263.319,636.645,0.163314,0,0,0,273.904,631.443,0.497143,315.839,573.57,0.131644,347.432,720.779,0.603751,410.542,578.93,0.606071,337.028,894.18,0.655762,484.363,520.878,0.376434,305.419,1004.7,0.676316,389.423,484.381,0.317716,515.702,826.023,0.600941,573.674,773.338,0.610207,505.17,1025.82,0.625826,510.426,904.774,0.381722,562.909,1193.92,0.63591,520.951,1072.97,0.33013,347.431,641.995,0.546527,221.272,573.497,0.525929,484.113,1193.93,0.552698,505.21,1204.55,0.550253,573.605,1209.77,0.637177,463.156,1151.88,0.233566,468.423,1136.13,0.216108,563,1141.42,0.176436],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0064.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0064.json deleted file mode 100644 index c1323c3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0064.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.625,647.139,0.163979,268.601,636.636,0.193533,0,0,0,279.198,626.151,0.509173,321.159,573.594,0.129108,347.468,715.452,0.619075,410.658,573.696,0.616213,331.826,883.78,0.657939,489.394,515.789,0.441239,300.199,999.37,0.676436,389.531,484.27,0.44712,515.62,826.025,0.616829,573.625,773.408,0.622557,499.911,1025.77,0.623856,489.496,904.767,0.368655,562.91,1193.92,0.643251,489.573,1041.52,0.322737,347.48,641.866,0.549797,221.345,568.331,0.525188,484.087,1193.87,0.563929,505.227,1204.55,0.561589,573.596,1209.8,0.647893,436.936,1083.55,0.244972,442.029,1073.04,0.243378,568.289,1178.2,0.14287],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0065.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0065.json deleted file mode 100644 index d8ca42b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0065.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.094,636.64,0.138412,252.849,620.922,0.163484,0,0,0,273.867,615.691,0.503287,315.89,568.315,0.144338,347.405,705.044,0.624196,410.629,573.692,0.607658,331.723,878.46,0.668295,484.214,520.9,0.347765,294.91,994.222,0.678652,310.644,957.325,0.0608063,510.38,826.028,0.615332,568.447,773.462,0.623106,499.902,1020.5,0.622508,479.037,904.828,0.39479,557.848,1188.79,0.639349,489.402,1062.56,0.420061,342.257,631.443,0.557208,221.289,563.03,0.542891,484.088,1193.88,0.580952,510.38,1204.58,0.571116,573.617,1209.69,0.661144,436.735,1078.38,0.353168,436.899,1072.97,0.358215,500.027,1078.26,0.256637],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0066.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0066.json deleted file mode 100644 index 0f78aac..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0066.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.427,636.605,0.148047,268.577,620.886,0.172946,0,0,0,274.011,615.591,0.501349,315.914,568.283,0.139804,342.258,704.954,0.634135,410.669,573.591,0.610415,331.755,868.085,0.68494,484.18,520.867,0.421891,284.435,989.012,0.675435,394.62,484.299,0.437001,505.204,831.183,0.601265,568.325,773.43,0.622915,494.782,1025.6,0.627757,478.904,915.352,0.401882,562.959,1193.84,0.650004,484.14,1067.77,0.480009,342.216,631.348,0.54947,221.364,562.951,0.53558,484.092,1193.88,0.588712,510.432,1209.68,0.585555,573.646,1204.57,0.681179,426.293,1078.31,0.430894,431.592,1072.94,0.439013,494.823,1083.57,0.308309],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0067.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0067.json deleted file mode 100644 index a10d6ac..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0067.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.378,626.174,0.175405,263.369,610.346,0.205472,0,0,0,274.001,610.309,0.507271,316.006,563.089,0.132334,347.399,699.764,0.642724,410.657,573.58,0.606333,331.717,868.007,0.692925,484.304,521.118,0.425638,284.433,983.675,0.681212,394.635,484.373,0.450786,500.021,825.997,0.620434,563.137,773.454,0.617818,494.766,1025.63,0.638201,478.974,931.117,0.448713,562.981,1188.75,0.660314,478.976,1073.03,0.550295,342.219,626.082,0.553419,221.332,552.476,0.514367,484.143,1193.87,0.601523,510.512,1204.57,0.602407,573.691,1204.49,0.703109,415.768,1083.58,0.526551,426.278,1073.09,0.533436,494.721,1104.56,0.380582],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0068.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0068.json deleted file mode 100644 index cebf1bf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0068.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.164,626.188,0.16774,258.087,605.133,0.211767,0,0,0,268.734,605.019,0.518291,315.95,557.642,0.109928,342.17,694.554,0.629387,405.388,568.428,0.594089,331.673,862.74,0.670743,489.49,526.221,0.442823,279.287,973.166,0.660736,394.686,489.416,0.446644,499.955,820.751,0.599664,562.95,773.359,0.587478,494.74,1025.64,0.629143,478.979,941.589,0.470447,563.021,1188.73,0.663691,473.643,1078.34,0.567367,336.935,615.628,0.567472,216.106,542.017,0.539815,484.096,1188.79,0.595931,510.473,1204.54,0.593681,578.759,1204.42,0.70474,400.203,1099.28,0.587513,410.616,1078.34,0.576706,489.399,1114.98,0.433649],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0069.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0069.json deleted file mode 100644 index 5b43923..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0069.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.153,615.666,0.231483,258.151,599.813,0.283659,0,0,0,273.993,594.665,0.570828,315.916,557.821,0.0979324,342.233,694.374,0.652915,410.552,568.398,0.612218,326.436,857.517,0.687738,499.957,526.286,0.426972,274.044,967.876,0.669272,394.802,489.436,0.419584,494.697,825.961,0.618491,562.938,778.712,0.601242,489.535,1025.59,0.641599,478.926,957.319,0.513289,563.013,1188.71,0.665329,463.205,1094.03,0.585089,336.994,610.438,0.586302,221.291,531.568,0.570749,478.927,1188.66,0.588272,510.385,1204.45,0.577839,578.746,1199.32,0.710137,400.027,1099.37,0.622331,405.376,1083.57,0.596442,484.097,1115.23,0.49239],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0070.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0070.json deleted file mode 100644 index 814a6ca..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0070.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.393,610.382,0.174536,263.31,594.54,0.216544,0,0,0,273.923,589.368,0.53698,315.983,536.758,0.107203,342.169,689.216,0.637891,415.889,568.3,0.618153,321.287,852.116,0.670901,500.044,526.376,0.412764,273.89,962.64,0.653833,394.89,494.808,0.393534,489.416,825.917,0.61274,557.787,778.706,0.587573,484.334,1020.48,0.644414,473.725,957.398,0.51673,562.967,1188.68,0.646801,452.722,1099.36,0.596857,342.175,605.189,0.582445,221.352,526.263,0.574972,473.682,1183.43,0.570079,505.127,1199.29,0.550724,573.701,1199.29,0.703603,394.945,1109.77,0.642585,405.299,1094.09,0.605288,473.724,1120.37,0.514558],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0071.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0071.json deleted file mode 100644 index 9efdb5c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0071.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.055,610.376,0.177473,252.902,594.594,0.222237,0,0,0,273.834,584.063,0.563201,315.941,531.605,0.0971,336.998,683.972,0.647981,421.087,568.266,0.6172,321.238,841.739,0.68309,515.758,526.232,0.405925,273.769,957.4,0.668408,394.838,500.002,0.42014,484.205,831.155,0.613486,547.307,783.937,0.575151,484.297,1025.6,0.645082,468.465,967.831,0.524286,562.996,1188.7,0.661606,447.465,1104.58,0.620034,337.004,605.125,0.586187,221.299,526.288,0.577699,478.955,1188.67,0.576423,510.419,1204.49,0.569845,578.753,1199.32,0.708274,394.858,1115.04,0.663879,400.102,1104.61,0.629691,468.382,1120.44,0.531457],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0072.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0072.json deleted file mode 100644 index 3aee1a1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0072.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[242.374,599.889,0.276586,242.373,578.842,0.348114,0,0,0,273.893,573.551,0.632302,326.408,526.263,0.0775402,336.928,673.401,0.638613,421.131,568.216,0.629939,321.209,825.889,0.705405,520.835,526.412,0.398244,268.628,946.959,0.685019,394.888,500.053,0.425651,478.852,826.025,0.625464,531.612,789.141,0.579799,484.182,1020.46,0.653749,468.388,978.361,0.573914,562.969,1188.66,0.665958,442.19,1109.92,0.65348,336.959,599.887,0.604489,221.256,520.967,0.620573,484.1,1188.74,0.575765,510.436,1204.47,0.567964,573.702,1199.26,0.703466,389.61,1120.38,0.656903,394.855,1115.01,0.649711,452.75,1125.73,0.547063],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0073.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0073.json deleted file mode 100644 index 6a680d2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0073.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[252.821,599.789,0.232533,242.453,573.727,0.298974,0,0,0,273.949,573.469,0.620477,331.73,521.045,0.0887216,336.974,662.906,0.643215,431.671,568.233,0.638445,316.107,820.697,0.722228,515.706,531.543,0.391481,268.504,941.527,0.70639,394.712,510.429,0.430101,463.19,831.225,0.618855,526.293,799.592,0.600246,484.094,1020.42,0.652024,457.935,978.42,0.592842,562.94,1188.67,0.667107,442.022,1115.14,0.684166,342.277,594.601,0.582444,226.518,515.759,0.622225,479.014,1188.79,0.590949,510.405,1204.51,0.578925,573.684,1199.27,0.70154,389.447,1125.63,0.619216,394.693,1115.23,0.627672,447.515,1136.08,0.582643],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0074.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0074.json deleted file mode 100644 index 35fcb3e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0074.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.331,589.415,0.291177,258.152,573.536,0.346582,0,0,0,279.188,568.257,0.580536,352.734,520.993,0.0742907,337.045,652.533,0.646053,436.772,568.196,0.628077,316.038,815.381,0.718667,520.897,542.001,0.378382,258.123,936.253,0.660436,394.886,515.596,0.416832,457.844,836.471,0.614413,520.957,804.873,0.608211,478.963,1020.42,0.643219,452.749,983.672,0.600756,562.951,1188.63,0.663233,436.912,1120.41,0.678461,347.542,589.376,0.585317,231.747,515.631,0.601789,478.953,1188.71,0.57753,505.22,1199.33,0.566034,573.691,1199.23,0.695978,384.298,1130.86,0.575178,389.604,1120.46,0.57762,447.403,1141.46,0.583172],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0075.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0075.json deleted file mode 100644 index db7b7ef..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0075.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.294,578.821,0.34491,258.113,568.221,0.398014,0,0,0,279.168,557.827,0.591299,337.027,515.826,0.0678068,336.998,647.253,0.65974,431.644,568.181,0.620811,315.902,810.084,0.699444,520.859,557.686,0.380079,242.395,920.558,0.650385,400.115,520.949,0.332163,447.399,836.444,0.623497,515.632,810.059,0.607504,478.834,1020.48,0.656841,447.475,988.86,0.599785,562.924,1183.5,0.65503,436.886,1125.62,0.667205,347.488,584.021,0.59829,231.745,499.944,0.625565,478.919,1188.66,0.594791,505.212,1199.29,0.585083,573.688,1199.16,0.701691,389.465,1136.11,0.541296,394.707,1125.65,0.544014,447.382,1146.64,0.57226],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0076.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0076.json deleted file mode 100644 index edb44fe..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0076.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.387,578.831,0.269738,258.141,563.133,0.315295,0,0,0,279.12,557.766,0.587172,326.537,510.511,0.0911002,336.928,647.05,0.671316,431.558,563.078,0.632999,310.734,794.392,0.695283,520.964,562.977,0.423273,231.97,904.785,0.696467,405.278,520.925,0.416309,442.153,836.408,0.635861,510.385,810.084,0.613844,473.699,1025.64,0.662778,447.309,988.928,0.597889,557.836,1183.48,0.671914,436.889,1125.72,0.67252,347.463,578.799,0.621196,231.822,489.478,0.625041,478.913,1188.64,0.613288,505.15,1199.28,0.605198,573.656,1199.16,0.712957,389.609,1141.33,0.514139,394.843,1130.85,0.514196,447.347,1146.72,0.579767],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0077.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0077.json deleted file mode 100644 index ab7e5b1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0077.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.415,573.604,0.266029,258.157,562.951,0.311481,0,0,0,274.045,542.059,0.595174,326.437,500.018,0.0957213,331.805,641.792,0.66502,426.393,557.768,0.615132,310.567,778.678,0.687156,520.959,568.301,0.398218,226.612,894.236,0.693159,405.353,521.172,0.343137,436.894,836.401,0.62734,499.989,810.105,0.598109,468.397,1025.63,0.647793,442.149,994.167,0.595497,557.851,1183.46,0.657085,436.766,1136.06,0.629947,342.32,573.562,0.627576,231.815,484.181,0.645984,484.107,1188.77,0.583515,510.406,1204.42,0.584821,573.656,1194.09,0.694705,389.583,1146.58,0.462139,394.795,1136.14,0.459702,442.214,1151.95,0.552733],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0078.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0078.json deleted file mode 100644 index ff19724..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0078.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.409,568.365,0.313944,258.152,547.266,0.354368,0,0,0,279.107,526.368,0.637472,321.324,500.03,0.100079,331.786,636.562,0.68922,426.38,552.578,0.626627,294.981,778.512,0.71517,520.94,578.867,0.421437,221.313,878.433,0.718353,405.331,773.342,0.0734919,431.622,831.158,0.637325,494.692,810.094,0.598204,457.929,1020.43,0.654217,436.854,988.976,0.599759,557.758,1183.4,0.646016,436.806,1130.9,0.640751,342.269,568.397,0.623187,231.823,478.898,0.649358,478.974,1188.73,0.582887,510.392,1199.3,0.583303,573.567,1194,0.689662,389.564,1146.65,0.497162,394.763,1136.19,0.492757,442.266,1151.9,0.561418],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0079.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0079.json deleted file mode 100644 index ec4162d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0079.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.5,557.823,0.387058,263.417,526.401,0.449268,0,0,0,284.471,521.08,0.629024,0,0,0,331.74,615.714,0.659792,426.356,552.584,0.60723,289.675,762.838,0.653513,515.82,589.364,0.461036,216.119,862.629,0.686605,436.869,584.121,0.155866,426.324,825.933,0.636466,489.39,810.072,0.599,452.573,1020.47,0.671211,431.548,989.018,0.578535,552.569,1178.18,0.634832,431.671,1130.9,0.638749,342.284,568.195,0.619781,237.137,473.623,0.630599,478.854,1188.69,0.573378,505.183,1199.21,0.577053,573.532,1193.85,0.67941,384.296,1146.64,0.496587,389.539,1136.19,0.489898,442.259,1151.87,0.556708],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0080.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0080.json deleted file mode 100644 index 170b672..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0080.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.655,557.777,0.334646,268.625,526.27,0.406819,0,0,0,284.396,521.041,0.666456,331.682,494.661,0.0856457,326.556,610.444,0.683854,426.322,557.849,0.631549,279.187,747.155,0.684752,521.026,599.886,0.440022,200.341,841.699,0.677524,442.013,594.652,0.137136,415.92,825.999,0.642621,484.135,810.164,0.601499,442.176,1020.52,0.689749,431.516,994.249,0.56399,547.239,1172.95,0.643392,431.634,1130.96,0.628019,342.295,568.182,0.645634,242.375,463.127,0.632592,484.176,1193.94,0.575528,510.484,1199.3,0.584887,568.397,1188.64,0.669357,384.288,1146.6,0.472003,389.553,1136.14,0.470232,442.238,1151.95,0.542337],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0081.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0081.json deleted file mode 100644 index 662c14f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0081.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.576,547.26,0.336247,268.539,526.153,0.41969,0,0,0,289.631,520.884,0.66346,342.198,489.445,0.0640558,326.529,599.919,0.679312,426.385,562.995,0.634739,273.854,736.522,0.665631,526.162,615.676,0.501186,184.511,825.946,0.66613,510.483,778.682,0.299635,405.401,825.896,0.647228,478.909,810.19,0.612255,436.801,1020.48,0.679999,431.512,999.374,0.579052,536.765,1167.75,0.644901,436.752,1136.11,0.615678,347.435,563.076,0.645484,247.586,457.899,0.620693,478.995,1194.06,0.566042,510.396,1204.44,0.573104,568.3,1183.5,0.652146,384.305,1146.6,0.470731,389.597,1136.15,0.463266,447.308,1157.07,0.517219],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0082.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0082.json deleted file mode 100644 index 6a59d46..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0082.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.639,542.03,0.287233,268.637,521.044,0.361825,0,0,0,284.452,515.803,0.663331,342.303,489.396,0.0742969,326.383,604.994,0.672283,431.6,568.177,0.65034,263.427,725.981,0.627892,531.481,626.203,0.489589,152.934,815.41,0.67328,515.673,783.814,0.389036,405.278,825.938,0.644309,478.855,815.355,0.613912,415.875,1020.48,0.667898,410.588,988.947,0.589633,526.369,1162.44,0.655862,436.752,1136.08,0.604309,347.46,563.076,0.643477,258.032,452.577,0.622438,478.892,1199.16,0.567748,505.272,1199.34,0.582354,563.095,1178.17,0.638532,384.252,1146.69,0.469677,389.537,1141.36,0.467011,447.338,1152,0.488043],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0083.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0083.json deleted file mode 100644 index 4c8a6c7..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0083.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.569,531.48,0.291385,268.579,520.893,0.370501,0,0,0,284.491,515.641,0.657335,347.437,489.404,0.078484,321.15,594.594,0.666046,431.64,568.232,0.65697,258.038,699.695,0.639167,526.356,636.677,0.497307,142.448,783.9,0.672233,515.603,783.934,0.364963,399.994,825.936,0.639296,473.598,815.363,0.619479,405.26,1020.46,0.678844,405.336,988.95,0.601924,521.079,1157.16,0.670685,431.652,1136.14,0.585295,347.406,562.973,0.63631,258.155,447.332,0.632659,478.839,1199.18,0.550822,505.182,1199.27,0.569224,552.557,1167.63,0.615235,384.28,1151.92,0.449648,389.519,1146.63,0.446756,447.355,1157.06,0.46171],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0084.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0084.json deleted file mode 100644 index 4e4a1c3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0084.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.659,526.294,0.331215,268.732,515.792,0.400845,0,0,0,289.721,510.542,0.658596,342.246,489.386,0.0671777,321.159,589.327,0.670146,431.633,568.258,0.663562,231.935,689.289,0.657412,521.092,641.961,0.527277,131.967,752.281,0.655999,515.793,783.886,0.296887,394.85,820.774,0.651288,468.43,815.308,0.619392,394.832,1009.98,0.67811,400.112,988.837,0.621391,515.621,1151.78,0.665649,436.76,1136.17,0.590611,342.315,562.954,0.642038,263.354,447.337,0.660937,457.857,1188.75,0.543688,484.144,1193.9,0.572775,531.478,1157.18,0.62567,379.035,1151.93,0.450265,389.428,1146.66,0.441408,447.458,1151.99,0.448789],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0085.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0085.json deleted file mode 100644 index 2841fd7..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0085.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.62,526.3,0.326077,268.667,515.789,0.398452,0,0,0,294.875,510.538,0.652636,342.242,494.735,0.0664211,315.998,584.043,0.673102,426.415,568.286,0.657942,226.45,678.737,0.612125,526.207,647.035,0.508517,105.691,731.361,0.626194,520.945,783.864,0.333756,394.657,820.658,0.639933,463.15,810.216,0.615869,389.461,1004.61,0.654274,400.174,983.588,0.625334,500.017,1146.53,0.656142,436.757,1130.88,0.58401,342.259,557.846,0.648738,263.384,447.323,0.655916,442.161,1183.4,0.528543,468.344,1188.64,0.555165,521.015,1157.05,0.647725,384.278,1151.82,0.432051,389.566,1146.55,0.424283,447.47,1151.81,0.417443],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0086.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0086.json deleted file mode 100644 index 5d65e2e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0086.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.732,526.261,0.259558,268.735,515.786,0.309066,0,0,0,289.701,510.502,0.628208,342.23,499.912,0.110131,315.876,578.808,0.669442,426.295,568.368,0.656989,221.193,652.551,0.621945,521.121,647.278,0.532234,100.403,699.719,0.621836,515.615,783.87,0.355779,384.237,820.684,0.629415,452.733,815.344,0.624141,373.762,999.504,0.629917,400.179,978.338,0.623811,489.394,1136.13,0.64372,436.933,1125.52,0.607097,342.133,557.83,0.655203,268.567,442.213,0.651449,436.791,1172.88,0.513404,452.681,1178.17,0.538356,515.647,1151.79,0.641451,389.564,1146.7,0.440546,394.765,1141.39,0.435106,457.872,1141.39,0.415042],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0087.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0087.json deleted file mode 100644 index f9368d0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0087.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.713,526.152,0.267167,268.758,515.705,0.319583,0,0,0,294.868,510.483,0.633108,347.495,494.716,0.103912,310.744,573.657,0.671725,421.119,568.449,0.657939,216.029,641.947,0.599263,520.973,657.684,0.580395,95.126,662.997,0.572298,515.689,783.892,0.440936,379.021,820.647,0.631229,452.718,815.305,0.631492,358.063,994.248,0.641682,405.321,967.857,0.632799,473.688,1130.84,0.644237,436.842,1120.36,0.633229,337.017,557.854,0.658841,268.723,442.165,0.658708,421.145,1162.51,0.50911,442.08,1172.87,0.547231,494.739,1146.57,0.639522,389.474,1151.83,0.459095,394.745,1146.59,0.455803,452.752,1136.19,0.428372],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0088.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0088.json deleted file mode 100644 index c4ed57d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0088.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.617,521.09,0.26216,268.668,515.648,0.324459,0,0,0,289.709,510.43,0.633742,347.534,489.548,0.0992487,310.749,568.409,0.670299,421.107,573.488,0.652142,205.537,626.104,0.605211,520.975,662.911,0.546152,68.819,641.987,0.610853,515.713,783.928,0.419313,379.008,815.493,0.632769,452.724,810.187,0.628109,352.69,989.005,0.661703,400.177,962.664,0.642439,452.727,1125.72,0.655995,436.938,1115.16,0.618169,337.024,557.758,0.647174,273.761,442.155,0.654607,400.184,1162.4,0.530526,421.122,1167.67,0.550289,478.971,1146.57,0.656383,384.348,1151.83,0.378984,394.725,1146.56,0.374455,457.966,1130.8,0.408101],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0089.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0089.json deleted file mode 100644 index 2c76830..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0089.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.658,521.07,0.285326,268.696,515.639,0.356533,0,0,0,294.878,510.465,0.647777,352.613,494.726,0.0919193,315.826,568.367,0.675043,415.896,573.558,0.668074,215.997,615.554,0.589303,520.859,673.452,0.615175,68.8765,620.841,0.505739,520.82,783.912,0.492144,373.8,820.6,0.637655,452.571,815.362,0.639879,342.276,988.836,0.660141,400.005,962.663,0.648147,442.161,1125.64,0.661115,436.828,1115.15,0.607578,337.026,557.802,0.659103,273.8,447.312,0.666171,394.887,1157.14,0.526983,405.327,1162.34,0.567756,463.174,1146.62,0.64377,389.476,1151.88,0.334803,394.769,1146.59,0.32989,457.863,1125.69,0.404146],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0090.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0090.json deleted file mode 100644 index ce825a3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0090.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.608,520.915,0.224182,268.714,510.514,0.265369,0,0,0,289.667,510.405,0.602538,352.645,489.54,0.160314,310.767,568.296,0.667244,415.851,573.636,0.668327,210.753,599.838,0.541588,515.716,678.704,0.631575,74.0802,599.72,0.447657,515.762,783.894,0.48681,363.366,815.464,0.641681,447.382,810.193,0.641932,336.892,983.684,0.675769,400.066,962.674,0.673997,426.374,1125.65,0.661871,426.304,1115.19,0.610007,336.987,557.735,0.647445,273.895,442.187,0.654165,384.229,1151.94,0.492566,394.758,1157.12,0.560662,442.245,1146.68,0.666423,363.363,1141.41,0.304252,379.005,1136.09,0.288377,447.402,1130.92,0.429998],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0091.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0091.json deleted file mode 100644 index d16e9a0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0091.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.744,520.882,0.178312,273.786,510.531,0.209752,0,0,0,289.713,510.472,0.548236,347.516,494.684,0.18347,310.639,568.335,0.637893,410.643,573.583,0.671866,194.976,589.399,0.411076,510.445,678.719,0.62483,58.3139,573.677,0.366794,515.633,783.904,0.412577,358.129,815.504,0.635299,442.158,815.308,0.638297,331.649,983.544,0.670539,400.052,967.902,0.675764,405.33,1125.54,0.664299,415.801,1120.4,0.64901,336.927,557.777,0.636034,279.074,442.225,0.624406,358.062,1146.6,0.500086,373.795,1151.88,0.543018,431.524,1146.63,0.63742,358.038,1141.45,0.307589,363.324,1136.16,0.287898,442.104,1141.39,0.475223],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0092.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0092.json deleted file mode 100644 index a4c8a92..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0092.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.724,520.806,0.104749,273.744,510.467,0.132494,0,0,0,284.434,510.503,0.545049,347.483,494.708,0.199023,300.207,568.247,0.628409,410.669,573.657,0.663916,184.439,578.935,0.374212,510.39,683.926,0.623682,58.301,568.137,0.348205,510.502,783.906,0.260911,352.791,815.429,0.645181,436.866,810.183,0.624521,321.309,978.306,0.672293,400.044,967.908,0.68067,394.883,1120.34,0.676527,410.658,1120.41,0.649847,331.769,557.784,0.630579,279.136,447.323,0.629464,347.426,1136.17,0.519152,352.819,1146.64,0.574993,410.573,1141.42,0.660347,363.226,1146.65,0.291098,368.511,1141.42,0.264474,442,1146.59,0.531092],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0093.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0093.json deleted file mode 100644 index 5a387e3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0093.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.564,520.856,0.129658,268.675,515.563,0.171427,0,0,0,284.433,510.49,0.574889,347.54,494.752,0.180502,294.929,568.185,0.623693,410.665,578.831,0.667675,184.432,573.549,0.469749,505.246,689.157,0.654584,53.001,552.546,0.365754,510.421,789.108,0.428339,352.656,815.425,0.639036,436.791,810.214,0.632478,321.22,967.901,0.669305,400.027,967.823,0.695542,384.273,1115.16,0.658036,410.654,1120.46,0.659518,331.715,557.792,0.630843,279.085,442.255,0.633655,331.651,1130.85,0.537167,342.214,1141.36,0.59497,400.053,1136.16,0.674308,368.494,1146.69,0.264879,379.031,1146.58,0.235681,436.927,1146.62,0.566842],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0094.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0094.json deleted file mode 100644 index 3b8c683..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0094.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.512,520.831,0.127529,268.644,510.506,0.170781,0,0,0,284.391,510.439,0.579438,347.447,494.726,0.164945,289.683,563.138,0.621032,410.601,578.779,0.671562,184.435,568.381,0.482552,499.914,689.129,0.651953,53.0163,531.573,0.440443,510.446,778.608,0.394388,342.294,815.348,0.629806,431.576,810.149,0.628946,321.12,967.894,0.673849,400.033,962.659,0.70538,368.539,1120.3,0.651327,421.047,1120.45,0.678932,326.552,557.801,0.633148,273.979,442.243,0.635808,315.973,1125.56,0.561515,326.471,1141.3,0.595545,394.809,1146.51,0.683453,389.493,1151.81,0.257892,400.012,1146.56,0.228282,436.988,1146.6,0.615856],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0095.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0095.json deleted file mode 100644 index ed10620..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0095.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.453,515.746,0.118198,268.592,510.35,0.154123,0,0,0,279.282,505.243,0.578608,347.429,489.551,0.160182,284.383,563.025,0.626922,405.417,573.615,0.672387,173.965,568.346,0.527358,494.695,689.204,0.61897,52.9991,526.261,0.493712,499.947,778.597,0.292439,342.167,815.302,0.634161,421.124,810.097,0.621776,316.018,967.858,0.677464,400.055,967.81,0.707368,352.828,1120.3,0.675145,421.126,1125.53,0.681861,326.467,552.578,0.631168,273.987,442.129,0.625278,310.643,1120.3,0.552705,315.949,1130.88,0.600189,379.04,1141.41,0.67737,394.794,1146.57,0.304732,405.381,1141.32,0.267548,436.924,1146.62,0.650947],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0096.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0096.json deleted file mode 100644 index e91f319..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0096.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.459,515.746,0.109666,268.526,505.265,0.147842,0,0,0,279.188,505.235,0.582968,342.265,494.69,0.208703,274,563.073,0.627463,405.447,573.635,0.674951,173.953,568.407,0.475747,494.68,689.168,0.633772,53.034,526.262,0.41317,499.95,778.567,0.2728,331.793,815.281,0.627923,421.042,810.053,0.626359,315.869,962.616,0.655444,400.059,962.675,0.707381,347.387,1115.17,0.660462,421.106,1125.55,0.67542,326.428,552.572,0.629184,274.012,442.069,0.63589,300.196,1115.03,0.514928,305.42,1120.46,0.561432,358.07,1136.2,0.648169,394.825,1136.2,0.358012,410.548,1136.07,0.318012,436.829,1146.63,0.666318],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0097.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0097.json deleted file mode 100644 index 7b1ffec..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0097.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.354,515.729,0.128468,268.449,505.208,0.166918,0,0,0,279.163,505.184,0.594384,342.172,494.714,0.222485,273.92,563.057,0.627644,405.402,573.665,0.684156,179.154,568.457,0.49327,494.714,689.18,0.631116,58.2229,526.318,0.437754,500.002,778.571,0.272339,326.516,815.316,0.618734,410.551,810.077,0.636408,305.477,962.577,0.640233,400.042,962.68,0.711312,336.89,1109.92,0.649459,426.299,1125.56,0.670437,321.321,552.539,0.631692,273.98,442.058,0.645276,284.451,1099.33,0.455288,289.627,1115.01,0.514335,347.521,1130.88,0.662005,394.87,1136.14,0.416903,410.613,1130.94,0.369394,436.83,1146.62,0.669118],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0098.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0098.json deleted file mode 100644 index df09e60..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0098.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.351,515.727,0.117043,268.457,505.194,0.147789,0,0,0,279.187,505.137,0.579514,342.218,489.523,0.208011,273.94,557.858,0.631932,405.42,573.592,0.678324,174.035,568.406,0.547126,494.745,689.157,0.61378,52.9963,526.239,0.529874,505.152,773.405,0.293868,326.449,810.101,0.628597,405.414,799.703,0.639052,305.368,957.358,0.642306,400.01,962.612,0.716327,326.399,1109.76,0.656974,426.305,1125.63,0.672989,321.326,547.31,0.636654,273.958,442.028,0.639551,279.101,1088.89,0.46722,279.183,1109.82,0.528913,337.047,1125.57,0.670303,394.835,1136.14,0.428318,410.634,1136.06,0.378371,436.812,1146.69,0.67099],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0099.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0099.json deleted file mode 100644 index 416093a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam3_json/cam03.0099.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.286,515.637,0.119204,263.402,500.003,0.150091,0,0,0,274.025,499.935,0.578267,336.978,489.448,0.226391,268.756,557.85,0.636255,405.392,573.534,0.678335,163.433,568.402,0.534006,494.715,684.032,0.588042,42.4969,526.209,0.48561,426.38,689.124,0.225827,321.142,810.166,0.627471,405.26,804.916,0.64645,300.155,957.382,0.638802,399.993,962.598,0.714241,321.134,1104.58,0.647299,421.148,1125.57,0.672236,321.212,547.251,0.638774,273.912,436.849,0.640347,279.162,1094.05,0.452817,279.148,1109.8,0.520044,331.744,1120.38,0.669886,394.827,1136.1,0.450753,410.594,1130.93,0.40329,431.662,1146.64,0.668793],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0000.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0000.json deleted file mode 100644 index 657b969..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0000.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[326.467,573.542,0.115796,0,0,0,316.01,552.515,0.170965,216.146,584.169,0.253222,305.405,568.257,0.672036,189.704,731.37,0.692353,358.104,684.028,0.695717,195.005,894.266,0.678293,479.02,820.742,0.699537,226.666,999.476,0.67977,605.024,878.406,0.687347,336.903,994.178,0.638372,431.646,957.391,0.668391,510.461,1083.58,0.560759,520.957,1157.12,0.718331,605.219,1199.2,0.613152,531.571,1362.32,0.681318,273.91,647.137,0.679536,247.657,484.284,0.663933,662.989,1188.72,0.507837,652.427,1183.51,0.525959,610.359,1225.51,0.502158,605.096,1341.22,0.53985,594.672,1362.23,0.567756,526.253,1393.75,0.635885],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0001.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0001.json deleted file mode 100644 index 22379a5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0001.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[321.285,568.35,0.0901585,0,0,0,315.899,552.5,0.148328,216.081,589.351,0.258183,300.144,568.296,0.654885,189.735,736.455,0.680807,357.995,683.942,0.675459,195.041,894.239,0.681825,479.006,820.651,0.695645,231.84,999.508,0.671516,605.122,868,0.684824,336.948,988.982,0.624954,436.777,952.161,0.655894,515.748,1088.8,0.540976,521.032,1157.08,0.701347,605.225,1199.26,0.599443,531.577,1362.31,0.673627,273.794,647.161,0.672969,242.373,489.408,0.653165,662.962,1193.86,0.490839,652.427,1188.67,0.508987,610.368,1230.7,0.49681,605.118,1341.21,0.534166,594.67,1362.25,0.559722,526.249,1393.71,0.621115],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0002.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0002.json deleted file mode 100644 index 3f15e7e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0002.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[321.171,568.321,0.0854531,0,0,0,315.762,547.282,0.143375,216.054,589.43,0.262401,294.911,568.347,0.63388,189.803,736.48,0.675231,357.965,678.651,0.663336,200.305,894.283,0.676901,479.046,815.512,0.698053,231.927,999.395,0.670439,605.225,862.659,0.685898,342.149,988.924,0.6231,436.923,952.11,0.653129,515.81,1088.78,0.55325,521.054,1151.92,0.699218,610.36,1199.29,0.607457,531.58,1362.32,0.669541,273.791,647.182,0.675867,237.14,489.518,0.641978,662.934,1193.89,0.50742,652.443,1188.7,0.528953,610.457,1230.76,0.520361,605.055,1346.46,0.539926,594.609,1367.39,0.565026,526.246,1393.73,0.614919],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0003.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0003.json deleted file mode 100644 index 64fb6e6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0003.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[315.938,568.258,0.0668778,0,0,0,310.659,542.107,0.11631,215.974,594.568,0.275529,289.642,568.298,0.625937,189.801,736.477,0.660811,352.85,673.454,0.650337,205.507,894.193,0.670746,484.174,815.317,0.686083,237.04,994.264,0.675562,605.203,852.267,0.674561,347.437,983.645,0.609536,442.079,946.822,0.647544,521.014,1078.31,0.562105,521.104,1151.87,0.688281,610.409,1199.22,0.620418,531.593,1362.25,0.669515,268.707,647.142,0.675017,231.923,489.526,0.649445,668.265,1193.89,0.503265,657.664,1188.67,0.523496,610.447,1230.72,0.529439,605.134,1346.43,0.547328,594.634,1367.36,0.569435,526.247,1388.49,0.613291],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0004.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0004.json deleted file mode 100644 index 4c2b303..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0004.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[310.837,568.153,0.0747345,0,0,0,310.466,547.286,0.126364,210.774,594.54,0.274215,279.26,568.275,0.637465,189.748,731.371,0.661817,352.689,668.207,0.650946,205.606,894.226,0.673353,484.301,804.846,0.661073,237.192,994.169,0.664905,605.184,836.5,0.658813,347.505,983.545,0.602888,442.208,941.64,0.648709,520.95,1072.98,0.560122,526.184,1151.88,0.67833,610.389,1199.14,0.620357,536.757,1362.18,0.663559,268.582,647.121,0.679645,231.826,489.544,0.665097,663.002,1194.04,0.514572,652.501,1193.88,0.544588,610.482,1225.47,0.519039,610.324,1335.96,0.552317,599.825,1362.15,0.574973,526.305,1383.28,0.615467],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0005.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0005.json deleted file mode 100644 index 372d76e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0005.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[310.658,563.139,0.0920985,0,0,0,305.282,552.457,0.144007,205.588,594.646,0.249886,279.081,568.298,0.66693,189.779,736.452,0.664326,352.635,663.022,0.650379,210.777,894.253,0.68045,484.254,783.919,0.671494,247.609,994.165,0.664372,610.28,820.74,0.694278,357.981,978.343,0.604328,447.395,941.492,0.653517,526.231,1073.11,0.563521,526.21,1146.66,0.67154,615.561,1199.2,0.613095,536.732,1362.07,0.663697,268.532,647.141,0.680367,226.638,494.68,0.661196,663.032,1193.95,0.511835,652.547,1188.73,0.539966,615.655,1225.51,0.52854,610.353,1335.88,0.559156,599.817,1362.11,0.587093,526.259,1378.04,0.625366],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0006.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0006.json deleted file mode 100644 index 06cbc52..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0006.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[305.447,568.279,0.0970573,0,0,0,294.924,557.772,0.146684,200.327,594.667,0.253491,273.913,568.348,0.69549,189.8,731.374,0.689489,342.297,662.917,0.689951,215.983,894.262,0.69581,484.277,778.573,0.73879,258.076,994.156,0.663788,610.356,815.314,0.700852,363.307,973.101,0.624155,447.454,936.279,0.673352,526.346,1073.05,0.594038,526.264,1141.3,0.701299,610.49,1199.16,0.626172,536.746,1356.95,0.674173,263.361,647.163,0.67078,226.443,494.72,0.652146,663.014,1193.95,0.52729,652.546,1188.72,0.556344,615.601,1225.5,0.538623,610.385,1330.72,0.561523,599.851,1356.99,0.587045,526.28,1377.94,0.634118],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0007.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0007.json deleted file mode 100644 index 83917e0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0007.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[300.117,568.289,0.0709054,0,0,0,284.366,557.727,0.113832,195.103,594.663,0.295703,273.823,568.294,0.688474,189.79,731.329,0.690738,342.227,657.734,0.681335,216.019,894.292,0.698276,484.123,773.214,0.722319,258.183,989.045,0.67278,605.142,783.929,0.690998,368.571,967.868,0.624179,452.681,925.859,0.65625,531.496,1072.98,0.586015,526.28,1130.92,0.694728,610.361,1194.03,0.630023,531.538,1356.91,0.678225,258.176,647.047,0.673255,216.128,494.749,0.643748,662.968,1193.95,0.535103,652.523,1188.7,0.55974,610.408,1220.28,0.53153,610.427,1330.62,0.577849,599.87,1356.92,0.595533,521.117,1377.92,0.638845],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0008.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0008.json deleted file mode 100644 index f6fb369..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0008.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[289.687,568.171,0.0869382,0,0,0,279.253,552.57,0.14367,195.088,599.837,0.265518,268.651,568.371,0.678359,189.76,731.379,0.680182,336.988,652.526,0.679222,221.215,894.201,0.694976,484.153,762.819,0.690447,263.405,988.916,0.677759,605.12,773.279,0.703689,378.989,957.395,0.622574,457.943,915.361,0.628803,536.763,1073.01,0.565442,531.596,1130.93,0.655301,610.398,1199.13,0.621009,531.606,1356.84,0.656988,258.079,647.121,0.673891,221.213,499.989,0.633242,663.006,1193.97,0.51428,652.512,1188.72,0.54434,610.4,1225.48,0.521769,610.457,1330.62,0.579288,599.86,1356.92,0.594889,526.18,1372.77,0.634068],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0009.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0009.json deleted file mode 100644 index 6cce506..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0009.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[284.402,568.171,0.112719,0,0,0,273.99,552.506,0.168351,189.862,599.856,0.234186,263.439,568.38,0.668181,189.806,736.514,0.687502,331.757,652.492,0.701071,221.248,894.286,0.698551,478.99,747.126,0.685661,268.624,989.052,0.686421,589.355,757.625,0.684486,384.246,952.187,0.634667,463.111,915.298,0.642188,536.813,1067.78,0.571631,536.826,1125.69,0.668692,610.425,1194.01,0.614201,531.553,1351.67,0.671162,252.863,647.131,0.676306,215.956,499.993,0.620934,668.166,1193.9,0.524874,652.54,1188.67,0.550121,610.407,1220.23,0.516251,610.466,1330.64,0.57585,599.836,1356.93,0.603394,521.058,1372.69,0.660024],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0010.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0010.json deleted file mode 100644 index 42e465d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0010.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[279.159,568.281,0.103364,0,0,0,273.822,557.81,0.15385,189.815,605.108,0.239162,263.292,573.486,0.642828,194.953,736.574,0.662468,331.725,652.455,0.665165,221.351,894.282,0.695231,478.869,736.553,0.663667,273.842,994.167,0.677516,599.769,736.678,0.672467,389.5,946.958,0.622862,463.206,904.774,0.61593,552.468,1067.87,0.558457,547.327,1120.33,0.63474,615.599,1193.99,0.598064,531.529,1341.23,0.643561,252.795,647.192,0.671623,205.568,510.481,0.614425,673.445,1188.74,0.506896,657.736,1183.49,0.526318,610.425,1215.05,0.502363,610.397,1330.69,0.563263,594.61,1356.96,0.588423,520.996,1367.48,0.638235],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0011.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0011.json deleted file mode 100644 index e9126dd..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0011.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[274.017,568.375,0.112211,0,0,0,268.749,562.918,0.168979,189.678,605.208,0.224129,258.092,573.509,0.652044,195.016,736.565,0.662067,326.529,652.358,0.670729,221.397,894.259,0.694549,484.112,731.157,0.66714,273.934,994.221,0.67652,610.35,710.25,0.6681,389.495,946.867,0.618158,463.201,899.558,0.617242,541.983,1067.69,0.54782,562.959,1115.07,0.638326,610.444,1194.03,0.588717,542.072,1330.65,0.631761,247.574,647.193,0.673143,200.308,510.557,0.623322,668.282,1188.66,0.509163,657.667,1183.38,0.519747,610.305,1225.43,0.480679,615.658,1330.63,0.588028,599.812,1356.88,0.598,526.185,1362.13,0.625139],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0012.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0012.json deleted file mode 100644 index 99efa88..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0012.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.934,568.34,0.0779355,0,0,0,268.661,562.905,0.124597,184.571,610.312,0.266584,252.921,573.521,0.639743,194.993,736.609,0.676668,326.494,647.274,0.691695,226.561,894.326,0.70857,484.26,720.712,0.679763,279.135,994.206,0.689013,615.591,694.378,0.679107,394.726,946.75,0.652105,468.467,899.457,0.628643,542.007,1062.57,0.548816,568.355,1104.57,0.657862,610.302,1194,0.593279,552.591,1320.26,0.638814,242.323,647.188,0.670019,195.016,515.679,0.614685,673.453,1183.51,0.533576,657.687,1178.21,0.537095,605.075,1225.51,0.47635,620.872,1325.5,0.585617,599.918,1351.71,0.597613,526.295,1351.71,0.598915],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0013.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0013.json deleted file mode 100644 index e4f04de..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0013.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.83,568.36,0.0976208,0,0,0,268.547,562.987,0.149664,184.466,610.413,0.212042,247.66,573.598,0.640354,195.098,741.799,0.659277,326.38,647.219,0.685943,226.673,894.245,0.690392,478.907,704.967,0.679684,284.467,994.152,0.677485,599.873,668.272,0.662918,394.861,941.618,0.634569,473.67,894.203,0.619346,552.539,1046.8,0.503058,578.811,1088.81,0.674066,599.93,1193.88,0.548559,563.059,1320.01,0.668756,242.281,647.286,0.667407,189.877,515.731,0.621975,657.762,1193.96,0.484298,652.334,1188.65,0.483177,594.561,1215.02,0.36985,620.893,1330.68,0.557748,605.14,1351.63,0.595266,536.771,1335.91,0.582691],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0014.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0014.json deleted file mode 100644 index 5bf500a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0014.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.785,573.515,0.108968,0,0,0,268.486,563.116,0.163493,184.587,615.567,0.231294,247.647,573.678,0.647631,205.461,741.84,0.666147,321.305,647.182,0.692536,231.91,894.342,0.684984,478.841,694.616,0.695068,294.962,994.154,0.673996,599.837,652.378,0.677493,394.934,941.566,0.635693,478.817,889.02,0.623799,557.849,1036.21,0.501475,589.409,1083.51,0.671946,599.911,1188.78,0.489464,568.247,1309.52,0.678633,242.338,647.29,0.671159,194.967,520.921,0.636613,657.759,1193.93,0.447312,652.337,1188.64,0.428377,594.572,1214.98,0.285435,631.349,1320.17,0.565526,610.457,1330.73,0.609533,542.05,1325.36,0.617522],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0015.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0015.json deleted file mode 100644 index b37239f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0015.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[273.751,573.515,0.0977866,0,0,0,268.451,568.213,0.147434,184.559,615.68,0.217823,247.565,578.793,0.637537,205.514,747.007,0.657816,321.119,647.138,0.686168,237.117,899.474,0.663839,478.876,689.242,0.690724,305.392,989.033,0.673173,584.078,631.451,0.649913,400.138,941.575,0.614804,478.951,888.964,0.616179,568.253,1036.2,0.510688,605.018,1073.05,0.678435,610.246,1188.62,0.49435,568.422,1288.54,0.678602,242.303,652.396,0.65694,189.811,521.013,0.624231,668.199,1188.75,0.410475,657.626,1183.45,0.393255,599.894,1204.48,0.301349,636.72,1304.3,0.546085,615.726,1320.03,0.60451,552.542,1314.83,0.632462],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0016.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0016.json deleted file mode 100644 index 368323b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0016.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.734,573.625,0.0654255,0,0,0,268.413,568.346,0.110766,184.557,626.175,0.222441,247.635,578.915,0.600296,210.72,752.264,0.658682,315.999,647.184,0.678456,242.352,899.533,0.651487,473.601,683.963,0.661156,310.584,988.974,0.686429,578.843,610.431,0.655107,405.36,941.509,0.6026,478.995,883.743,0.6212,568.291,1031.03,0.560944,610.474,1057.31,0.667491,610.336,1188.66,0.48518,573.68,1277.99,0.675714,242.344,657.671,0.635975,184.598,526.227,0.591271,683.879,1183.5,0.385898,663.004,1178.2,0.365217,599.885,1209.72,0.271289,647.124,1293.82,0.561102,626.203,1309.65,0.600787,562.973,1299.18,0.644352],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0017.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0017.json deleted file mode 100644 index 69af1c5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0017.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.673,573.708,0.0600393,0,0,0,263.421,573.452,0.104563,189.672,636.604,0.243498,247.589,584.115,0.597533,210.795,752.346,0.663698,315.851,647.189,0.679216,247.613,899.528,0.642552,463.223,673.43,0.649886,310.799,988.916,0.690116,573.564,594.654,0.649953,415.765,936.408,0.593112,484.124,878.535,0.625807,568.337,1036.29,0.580032,636.604,1041.53,0.663337,615.611,1193.9,0.465852,589.336,1257.04,0.675743,242.354,662.899,0.635462,184.575,531.51,0.586693,684.031,1188.72,0.345903,673.417,1178.26,0.318297,605.143,1215.01,0.258263,652.533,1283.33,0.556443,641.908,1299.06,0.605019,568.41,1283.43,0.663131],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0018.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0018.json deleted file mode 100644 index a9224df..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0018.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.628,578.851,0.0660817,0,0,0,263.383,573.642,0.106735,189.727,636.705,0.266737,247.588,589.421,0.604106,215.993,757.568,0.680297,315.871,647.269,0.682725,258.098,899.631,0.657078,463.1,657.795,0.662647,316.06,988.915,0.690041,568.302,578.804,0.676262,415.89,936.288,0.605232,484.196,873.268,0.647831,568.444,1031.07,0.618906,647.2,1030.9,0.681032,620.916,1204.47,0.499945,605.143,1241.36,0.684927,242.412,663.003,0.633375,184.561,536.854,0.588722,694.422,1220.23,0.279527,689.115,1209.72,0.256734,610.388,1241.19,0.298049,678.68,1272.82,0.514819,652.506,1283.35,0.566237,584.08,1272.81,0.627189],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0019.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0019.json deleted file mode 100644 index 8efdc5a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0019.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.606,578.882,0.10831,0,0,0,263.319,573.665,0.158082,189.727,641.833,0.247826,242.31,594.583,0.621634,216.002,757.551,0.678073,315.887,647.282,0.673798,263.319,899.578,0.659665,452.727,652.469,0.666986,321.234,988.88,0.689989,563.065,568.288,0.66409,415.865,931.13,0.595896,484.187,873.21,0.642298,573.615,1036.18,0.652621,657.689,1020.38,0.654653,636.596,1225.47,0.544137,620.861,1236.1,0.67633,242.42,662.998,0.644295,184.568,541.984,0.59083,699.762,1241.23,0.308519,694.393,1236.01,0.298341,615.609,1246.57,0.347555,689.303,1257.09,0.500008,678.741,1272.84,0.535025,605.055,1262.28,0.612772],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0020.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0020.json deleted file mode 100644 index 2fa1060..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0020.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.579,578.848,0.103433,0,0,0,263.28,573.674,0.148306,189.723,641.902,0.24083,242.298,594.624,0.608722,216.043,757.596,0.682286,310.746,652.343,0.666698,268.548,894.357,0.658391,447.445,647.317,0.685518,326.441,983.774,0.689267,542.004,562.96,0.638952,421.111,925.884,0.594614,484.227,868.054,0.643085,573.617,1036.18,0.669891,668.261,1004.64,0.657075,631.339,1230.74,0.599043,647.158,1230.64,0.676869,242.43,668.168,0.638417,184.607,542.076,0.589765,694.592,1241.3,0.224956,689.305,1236.11,0.216594,610.419,1246.55,0.475051,705.047,1241.4,0.497645,699.695,1246.64,0.560327,631.404,1246.53,0.631469],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0021.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0021.json deleted file mode 100644 index b9b359c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0021.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.572,584.057,0.152035,0,0,0,263.287,578.783,0.205808,189.703,641.993,0.203696,237.091,599.871,0.62684,216.101,757.645,0.677959,310.62,652.391,0.666574,268.742,894.238,0.669344,442.101,647.188,0.679003,331.758,983.769,0.688135,526.301,557.815,0.64816,426.298,931.033,0.591508,489.393,868.044,0.642169,578.762,1030.98,0.671425,684.011,994.185,0.681628,636.612,1204.56,0.624825,663.029,1204.45,0.63713,242.423,668.274,0.639264,189.736,552.506,0.586479,699.751,1225.5,0.188179,683.997,1225.49,0.173589,626.121,1236.09,0.567164,731.244,1230.67,0.508545,720.793,1236.02,0.556833,652.349,1236.08,0.627564],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0022.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0022.json deleted file mode 100644 index 8a02673..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0022.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.589,584.148,0.166169,0,0,0,258.174,578.964,0.213099,189.735,647.174,0.192277,237.098,605.063,0.609716,221.195,762.824,0.673591,310.612,652.413,0.66206,273.927,899.449,0.65859,436.899,647.053,0.67414,336.978,983.775,0.677917,520.925,547.234,0.649046,426.342,925.873,0.584496,489.473,862.856,0.643867,584.021,1020.39,0.659273,689.239,983.656,0.694364,626.23,1199.31,0.62044,689.165,1193.94,0.673271,247.605,673.469,0.641292,189.774,557.825,0.598719,662.931,1225.5,0.179613,636.683,1225.47,0.171821,626.128,1235.89,0.588058,747.112,1204.52,0.513335,741.766,1225.44,0.569056,673.43,1225.52,0.611065],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0023.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0023.json deleted file mode 100644 index 41da94f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0023.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.526,589.336,0.168396,0,0,0,258.084,584.081,0.218455,189.72,647.254,0.18497,231.953,605.201,0.61342,221.276,762.821,0.668928,305.453,652.396,0.662337,274.068,899.433,0.663763,436.836,641.838,0.661815,342.262,983.744,0.680677,515.775,531.524,0.653928,431.582,925.775,0.588115,494.675,862.764,0.642139,584.105,1015.19,0.667126,694.471,978.362,0.694853,626.095,1199.22,0.652822,710.213,1193.91,0.68368,247.586,673.529,0.641574,189.759,563.036,0.606476,647.275,1199.33,0.293393,631.343,1204.49,0.262309,620.96,1230.7,0.656872,778.598,1193.94,0.53662,773.372,1204.43,0.596027,694.589,1225.45,0.669328],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0024.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0024.json deleted file mode 100644 index a1d4fde..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0024.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.575,594.503,0.135289,0,0,0,263.25,584.144,0.187476,189.767,652.406,0.227063,237.096,610.262,0.621913,221.346,768.033,0.676287,310.605,652.456,0.661718,279.114,899.479,0.662835,431.67,636.605,0.652388,347.564,983.715,0.679124,515.594,521.017,0.673408,431.571,920.596,0.582767,494.69,862.693,0.640173,589.318,1004.77,0.665854,694.637,962.651,0.690002,620.888,1194.09,0.65876,731.279,1188.62,0.672043,247.639,678.758,0.645658,189.704,563.111,0.618741,652.451,1199.14,0.35014,636.639,1199.19,0.312409,620.857,1225.48,0.663193,804.939,1178.17,0.535566,794.391,1193.86,0.597926,710.283,1209.77,0.656117],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0025.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0025.json deleted file mode 100644 index 88db4e1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0025.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.506,594.644,0.149916,0,0,0,258.06,589.314,0.20034,189.761,652.524,0.219023,231.969,610.383,0.617201,221.346,768.12,0.678045,305.497,652.488,0.660936,279.283,899.599,0.647057,426.355,631.35,0.643678,352.829,983.778,0.666339,505.198,515.699,0.656852,436.8,920.536,0.589695,494.772,857.539,0.643891,589.342,999.54,0.664819,699.791,952.128,0.701739,620.833,1194.08,0.662914,752.367,1167.64,0.655053,247.631,683.93,0.650651,189.688,568.198,0.620485,657.751,1193.89,0.422148,641.977,1193.94,0.378037,620.834,1225.54,0.665409,815.446,1162.41,0.498145,815.362,1183.38,0.578676,736.557,1194.03,0.645741],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0026.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0026.json deleted file mode 100644 index 67a638d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0026.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[268.453,599.763,0.15523,0,0,0,252.858,589.36,0.210181,189.761,657.702,0.19652,231.909,610.471,0.617688,226.435,768.127,0.67579,305.431,652.526,0.656922,284.393,899.503,0.645129,426.29,626.147,0.648001,358.047,988.808,0.661183,489.565,515.699,0.662989,442.068,915.288,0.587056,505.226,857.475,0.638552,589.397,999.517,0.669617,705.071,946.802,0.706172,615.731,1194.08,0.662102,773.281,1151.95,0.682289,247.63,684.028,0.652063,184.538,568.251,0.618998,657.698,1193.96,0.438933,647.076,1193.98,0.405233,615.706,1225.53,0.644308,836.485,1146.66,0.498194,831.165,1157.2,0.56054,762.867,1183.42,0.626288],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0027.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0027.json deleted file mode 100644 index aff46f3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0027.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.399,605.06,0.159781,0,0,0,247.621,599.771,0.213591,189.753,662.954,0.187102,231.861,615.647,0.614721,226.479,773.237,0.677432,305.397,652.548,0.654476,294.916,899.662,0.636095,415.894,620.956,0.64952,363.294,988.854,0.651775,484.307,510.405,0.648328,442.108,910.076,0.589048,510.428,852.189,0.625744,589.407,999.455,0.673695,715.563,941.567,0.681594,615.732,1194,0.67121,789.135,1141.42,0.663653,247.666,689.189,0.656123,184.492,568.423,0.615979,657.719,1193.94,0.467293,647.104,1193.97,0.438474,615.707,1225.47,0.639157,857.563,1130.91,0.516982,857.47,1146.65,0.575577,778.657,1167.71,0.626148],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0028.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0028.json deleted file mode 100644 index 1733a44..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0028.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[263.263,605.155,0.158382,0,0,0,242.369,599.911,0.211085,189.865,673.44,0.211545,231.795,620.894,0.595768,226.564,773.342,0.671188,305.387,652.569,0.642409,294.984,904.766,0.628603,415.811,615.718,0.64145,368.522,988.843,0.651356,484.181,500.026,0.643901,442.149,904.82,0.595135,510.41,846.913,0.618821,594.521,999.387,0.665505,726.005,936.379,0.665823,615.757,1194.01,0.663888,815.331,1130.86,0.673676,252.826,689.283,0.657179,184.495,573.604,0.615005,662.935,1193.87,0.482212,647.169,1193.89,0.451407,615.734,1225.48,0.639153,873.298,1120.36,0.466999,873.296,1136.06,0.536645,810.114,1157.19,0.629132],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0029.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0029.json deleted file mode 100644 index 8264b0b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0029.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.156,610.349,0.160941,0,0,0,237.21,605.098,0.214936,189.822,678.696,0.203148,226.689,626.104,0.58006,226.682,778.523,0.666187,305.386,652.571,0.642305,305.356,904.811,0.631003,415.842,610.486,0.645184,373.736,988.806,0.669029,478.92,499.918,0.648799,447.4,904.781,0.595095,510.533,841.731,0.617503,589.428,999.42,0.66475,726.054,925.894,0.649961,620.833,1194.04,0.663279,825.909,1120.37,0.66146,252.82,694.381,0.642419,184.429,578.798,0.592501,657.723,1193.93,0.48769,647.096,1193.95,0.459982,620.838,1225.52,0.638339,883.727,1109.89,0.438657,883.813,1120.36,0.509737,825.892,1146.71,0.599776],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0030.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0030.json deleted file mode 100644 index afa586f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0030.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.098,610.346,0.171943,0,0,0,237.146,605.117,0.224105,189.77,678.695,0.195651,226.638,626.159,0.590647,226.679,778.542,0.676339,305.432,652.566,0.641022,305.396,904.909,0.637832,410.529,610.472,0.63911,378.992,988.842,0.654183,473.651,494.677,0.635757,447.462,904.738,0.604073,510.559,836.431,0.616729,594.609,999.462,0.661589,731.36,915.31,0.648849,615.742,1194.07,0.659149,841.721,1104.59,0.636006,252.81,694.403,0.647619,179.247,578.811,0.597378,657.688,1193.93,0.483183,641.989,1193.95,0.457499,615.725,1230.68,0.627684,889.036,1083.55,0.437842,894.275,1104.5,0.511752,846.912,1125.68,0.603936],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0031.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0031.json deleted file mode 100644 index b68b040..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0031.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[252.873,610.454,0.18659,0,0,0,231.954,610.308,0.246749,189.745,678.757,0.201726,226.622,631.344,0.620168,226.683,778.606,0.680576,305.376,657.697,0.663356,305.433,910.011,0.644815,405.413,610.352,0.666598,379.091,983.761,0.665875,468.407,489.404,0.644274,452.615,904.742,0.632311,515.731,836.39,0.643754,599.751,1004.63,0.683934,736.498,904.901,0.677342,620.841,1194.05,0.668046,852.258,1083.61,0.662166,247.618,694.47,0.656014,179.243,578.927,0.594653,657.66,1193.96,0.49225,641.973,1193.98,0.470508,620.844,1225.56,0.634337,904.801,1073.02,0.464257,904.868,1088.79,0.524326,857.371,1120.28,0.649322],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0032.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0032.json deleted file mode 100644 index e535daf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0032.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[252.863,610.45,0.115843,0,0,0,231.909,610.346,0.157735,189.816,683.947,0.282777,231.751,631.404,0.584198,226.703,778.659,0.66207,310.612,652.553,0.642457,305.495,910.107,0.628887,405.33,605.116,0.653557,384.236,988.84,0.670263,457.941,484.18,0.642693,452.717,904.733,0.601795,520.929,831.14,0.625793,599.774,1004.63,0.661467,741.766,904.772,0.671711,615.727,1194.08,0.651419,862.833,1073.01,0.694276,252.818,694.498,0.659198,174.005,589.328,0.608235,652.56,1194.02,0.492796,641.958,1194.01,0.475219,615.692,1230.7,0.616085,920.539,1067.69,0.445288,925.79,1073.05,0.50491,868.004,1109.8,0.617033],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0033.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0033.json deleted file mode 100644 index d26212e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0033.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.042,615.679,0.133826,0,0,0,237.061,610.439,0.181977,189.794,689.104,0.240079,226.659,636.601,0.578706,231.823,783.893,0.644226,305.41,657.657,0.627213,310.598,915.294,0.616289,405.254,605.011,0.639285,384.21,988.928,0.670345,452.642,478.973,0.645986,457.973,899.537,0.595047,520.969,825.893,0.619291,594.679,999.532,0.662379,741.884,899.51,0.671333,615.716,1194.07,0.64889,873.22,1067.73,0.695584,252.831,694.6,0.644142,179.199,594.551,0.589252,652.547,1194.01,0.494392,641.967,1194,0.475873,615.695,1230.69,0.607714,931.045,1062.41,0.458976,936.258,1067.75,0.530057,878.517,1094.08,0.587399],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0034.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0034.json deleted file mode 100644 index bb8c11c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0034.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[252.809,620.92,0.111,0,0,0,231.903,620.821,0.151427,195.044,689.288,0.294189,231.742,641.826,0.547277,231.912,783.912,0.64605,310.609,657.632,0.631333,310.725,925.787,0.626817,400.16,599.827,0.641323,384.212,988.991,0.669649,447.419,478.869,0.641632,468.342,899.497,0.603607,521.103,820.749,0.623043,594.641,1004.68,0.670853,747.034,894.211,0.68061,620.845,1199.13,0.65401,883.673,1062.38,0.68511,258.065,699.711,0.646477,179.234,605.043,0.587993,652.537,1194.01,0.488889,641.973,1194.02,0.471358,620.841,1230.71,0.6103,941.552,1046.79,0.467764,941.613,1062.47,0.545923,889.024,1073.14,0.610827],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0035.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0035.json deleted file mode 100644 index 95caf89..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0035.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[247.646,631.303,0.144378,0,0,0,231.835,626.163,0.190017,194.998,694.385,0.255556,231.723,647.082,0.560249,231.915,789.088,0.641385,305.453,657.691,0.627358,310.729,931.008,0.628698,400.094,594.591,0.64419,384.269,989.027,0.676178,442.203,468.422,0.627526,468.358,894.321,0.602645,526.208,820.6,0.629201,594.626,1004.62,0.672349,752.268,883.813,0.672063,620.846,1194.07,0.657332,894.226,1052.02,0.667345,258.064,699.818,0.64192,179.234,605.182,0.583143,652.505,1199.13,0.478885,641.935,1199.15,0.466653,620.855,1230.66,0.607583,946.884,1036.2,0.449312,946.949,1051.97,0.522454,899.555,1072.97,0.602563],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0036.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0036.json deleted file mode 100644 index 7702a12..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0036.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[252.816,631.312,0.144663,0,0,0,231.877,626.123,0.188513,200.242,694.48,0.270772,226.701,647.173,0.546201,231.962,783.933,0.643058,305.46,652.532,0.646933,310.658,931.051,0.635896,400.006,594.552,0.656982,384.277,994.189,0.671749,436.961,468.398,0.64384,468.394,894.312,0.618919,526.263,815.5,0.64272,594.661,999.513,0.688986,752.387,878.46,0.700773,620.877,1194.07,0.666942,899.622,1036.26,0.686406,258.122,699.834,0.625914,179.226,610.32,0.575472,652.523,1194.03,0.495279,641.926,1199.15,0.482903,620.914,1225.56,0.619421,952.118,1025.7,0.465109,952.212,1036.21,0.526586,910.077,1062.61,0.633432],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0037.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0037.json deleted file mode 100644 index 7613dc2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0037.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[247.611,626.082,0.0865228,0,0,0,231.866,626.101,0.119471,195.107,694.431,0.313762,231.808,647.081,0.522793,237.041,783.958,0.632212,310.634,652.44,0.633317,310.669,936.233,0.637165,399.965,589.35,0.645936,384.255,994.277,0.655185,431.64,463.211,0.631356,468.417,894.294,0.606334,526.276,815.411,0.626898,599.803,999.491,0.673644,757.595,873.26,0.689762,620.845,1194.05,0.657907,910.12,1025.78,0.655721,258.109,699.827,0.623269,179.194,610.38,0.578857,652.458,1194.01,0.481023,641.879,1194.03,0.467908,620.873,1225.53,0.606794,962.595,1004.76,0.450382,967.827,1020.48,0.50464,925.808,1052.05,0.58767],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0038.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0038.json deleted file mode 100644 index 94dc47a..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0038.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[247.656,626.082,0.0778928,0,0,0,231.797,626.15,0.104567,195.062,694.588,0.297965,231.785,647.123,0.494602,237.13,789.171,0.623416,310.598,652.47,0.636876,310.727,936.341,0.639533,394.934,584.034,0.654772,384.264,999.435,0.641656,421.134,457.951,0.623612,473.632,894.285,0.597581,526.323,815.4,0.618614,599.897,999.511,0.66271,757.624,868.071,0.69046,620.862,1194,0.662695,925.846,1015.15,0.643011,258.118,705.009,0.606228,174.028,615.606,0.56082,652.432,1194.02,0.482545,641.848,1199.15,0.474381,620.902,1225.47,0.606611,978.357,994.129,0.446989,978.445,1004.76,0.501854,936.314,1036.25,0.608553],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0039.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0039.json deleted file mode 100644 index 5a6c9ac..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0039.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[258.073,631.386,0.0528195,0,0,0,0,0,0,200.316,699.829,0.342318,237.058,647.292,0.464105,242.337,794.44,0.613184,310.668,652.472,0.629677,310.716,941.453,0.641711,394.915,573.626,0.656376,384.258,1004.64,0.646597,410.535,452.574,0.638322,473.681,894.208,0.589461,526.303,815.343,0.61314,605.031,999.437,0.65057,762.812,862.885,0.69322,620.919,1194,0.651985,936.314,999.499,0.65873,263.385,710.3,0.602213,179.167,620.862,0.56139,652.492,1194.02,0.468497,641.905,1199.14,0.463593,620.937,1225.47,0.596782,983.586,988.836,0.437762,983.641,999.387,0.495564,941.627,1025.71,0.617457],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0040.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0040.json deleted file mode 100644 index 35f9446..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0040.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,205.526,699.819,0.428791,237.18,647.207,0.461084,242.364,794.386,0.625035,315.853,652.362,0.649324,310.596,936.305,0.635009,394.938,573.491,0.660257,379.081,999.505,0.650624,405.276,447.36,0.656779,478.893,894.238,0.600814,531.483,815.295,0.60709,605.094,994.267,0.661665,762.837,862.654,0.686899,620.973,1193.95,0.655016,941.503,988.922,0.675324,268.501,710.228,0.612636,173.984,626.084,0.571533,652.469,1193.96,0.46417,641.918,1194.01,0.460313,626.094,1220.25,0.597722,983.66,967.869,0.429225,988.867,983.632,0.50062,946.76,1015.18,0.618071],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0041.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0041.json deleted file mode 100644 index 1be80ef..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0041.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,205.563,699.842,0.44863,237.178,647.244,0.429979,242.395,794.341,0.615519,315.866,647.211,0.647404,310.625,941.461,0.646971,399.959,568.246,0.664586,384.274,1004.72,0.646602,400.053,447.329,0.663795,478.91,894.212,0.60276,531.518,810.164,0.60342,605.055,994.217,0.661942,762.898,857.429,0.67621,620.964,1193.97,0.653191,946.745,978.465,0.694494,268.535,710.215,0.618701,168.785,626.182,0.551226,652.477,1193.95,0.458639,641.918,1194,0.454241,626.098,1220.29,0.601863,988.954,952.174,0.406868,994.11,973.127,0.460259,952.064,999.384,0.604913],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0042.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0042.json deleted file mode 100644 index 90d2a27..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0042.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,205.54,699.728,0.416572,242.368,647.2,0.483175,247.585,794.393,0.61992,315.853,647.243,0.653861,310.678,941.564,0.646221,399.95,562.915,0.654369,384.238,1009.87,0.632716,394.854,442.181,0.645569,478.897,894.222,0.59885,531.499,810.169,0.602695,605.075,994.216,0.660317,768.083,847.017,0.663133,620.939,1194.03,0.655575,947.008,962.605,0.676694,268.556,705.081,0.630202,173.996,620.95,0.572502,652.479,1194,0.446381,641.905,1199.14,0.444601,620.97,1225.53,0.602184,989.006,946.755,0.390169,999.357,952.176,0.429181,962.672,983.748,0.582581],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0043.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0043.json deleted file mode 100644 index b6d0641..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0043.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,205.592,699.738,0.418759,242.353,647.287,0.481473,252.847,799.635,0.611902,315.856,647.269,0.644682,310.708,941.555,0.647085,394.922,562.95,0.654404,379.093,1009.93,0.629798,394.686,442.193,0.604144,478.949,888.995,0.598216,531.495,810.065,0.5951,605.148,999.377,0.649478,768.114,836.477,0.654851,620.884,1194,0.649178,952.153,952.064,0.679288,268.577,705.084,0.620205,174.035,626.092,0.570716,652.458,1194,0.455264,641.934,1194.04,0.452025,620.919,1225.49,0.597505,999.381,936.306,0.412483,1004.64,946.831,0.455633,967.902,978.391,0.560145],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0044.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0044.json deleted file mode 100644 index e54eed5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0044.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,215.954,699.79,0.458563,247.594,652.394,0.462768,258.088,799.659,0.615626,315.975,647.056,0.645461,310.682,941.511,0.649361,400.044,552.458,0.644399,379.05,1009.96,0.627654,389.624,442.146,0.598148,478.944,889.087,0.597446,531.541,810.098,0.598179,605.167,994.282,0.654181,773.267,831.226,0.664456,620.845,1193.97,0.653803,952.218,946.809,0.674001,268.754,705.076,0.618214,179.206,626.216,0.574471,652.486,1194.03,0.455086,641.925,1199.14,0.451563,620.868,1225.47,0.601289,999.417,925.839,0.39929,1004.69,941.572,0.448197,973.163,967.859,0.540287],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0045.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0045.json deleted file mode 100644 index 2a10456..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0045.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,215.999,699.833,0.462351,252.806,652.397,0.436325,263.263,799.646,0.611794,316.034,641.973,0.63521,310.707,941.535,0.646565,400.105,547.3,0.638611,368.543,1009.86,0.621314,389.546,442.212,0.58838,484.126,894.166,0.59339,536.766,804.946,0.588619,605.171,994.26,0.648257,773.333,826.013,0.67422,620.883,1193.97,0.649368,957.367,941.618,0.664044,273.849,710.24,0.619663,184.397,631.403,0.570803,652.431,1199.13,0.450264,641.902,1199.17,0.449071,620.895,1225.46,0.596406,999.481,915.376,0.384604,1004.75,936.344,0.432371,978.313,952.191,0.543836],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0046.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0046.json deleted file mode 100644 index f13f967..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0046.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,216.011,699.718,0.42851,252.819,647.165,0.428488,263.261,799.614,0.609142,316.048,641.938,0.631736,310.712,941.478,0.640263,400.19,547.298,0.625036,368.497,1009.9,0.621629,384.315,447.482,0.54819,484.204,888.969,0.594363,542.033,799.642,0.577576,605.193,999.405,0.646041,773.329,825.914,0.679451,620.908,1194,0.645938,957.398,941.49,0.657939,273.842,705.033,0.621777,184.391,631.381,0.552139,652.413,1199.16,0.438239,641.895,1199.21,0.441292,620.93,1225.46,0.587383,1004.7,910.024,0.393044,1009.96,931.093,0.435743,978.317,952.066,0.548232],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0047.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0047.json deleted file mode 100644 index 181bcbc..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0047.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,216.108,699.728,0.421329,258.015,647.187,0.415199,263.281,794.435,0.616366,316.041,641.901,0.634765,310.71,941.462,0.635372,405.274,536.774,0.63191,363.325,1009.91,0.608035,378.993,442.214,0.547176,484.206,883.757,0.596262,542.061,794.392,0.57372,610.263,994.259,0.650613,773.41,820.811,0.678107,620.905,1194,0.648389,962.566,936.364,0.647623,273.915,705.073,0.619429,184.425,631.414,0.561109,652.423,1199.17,0.444616,641.919,1199.21,0.446537,620.904,1225.47,0.591411,1004.61,910.028,0.376755,1009.89,931.024,0.420202,978.404,946.859,0.562199],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0048.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0048.json deleted file mode 100644 index e506fab..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0048.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,221.206,699.675,0.436361,258.129,641.984,0.403514,263.295,789.17,0.625091,321.145,636.712,0.634745,310.674,936.381,0.633278,410.58,526.373,0.636792,363.293,1009.96,0.619364,373.759,442.227,0.557735,484.224,883.794,0.587492,547.255,794.356,0.572285,610.297,994.223,0.652596,773.309,820.75,0.686387,620.928,1193.97,0.647147,957.334,931.077,0.639726,273.99,704.966,0.615939,184.533,626.217,0.561508,647.252,1199.15,0.428523,636.699,1199.22,0.432714,620.949,1220.27,0.583637,999.415,910.018,0.370909,1004.67,925.866,0.417055,978.332,941.658,0.559366],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0049.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0049.json deleted file mode 100644 index 5491a98..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0049.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,221.231,694.571,0.434141,263.242,641.985,0.409039,263.312,789.086,0.628796,321.197,636.615,0.638575,310.661,936.241,0.625729,415.787,526.265,0.651765,358.134,1009.87,0.625792,373.768,442.183,0.559805,484.263,883.709,0.594107,547.321,789.143,0.574699,610.302,994.268,0.65662,773.327,820.754,0.684818,620.961,1193.96,0.650823,952.117,925.858,0.645816,274.02,699.834,0.625324,189.684,626.209,0.566232,647.29,1199.16,0.43412,641.836,1199.21,0.439228,620.979,1220.26,0.582856,994.115,910.063,0.347368,999.361,931.023,0.398239,973.143,941.518,0.559723],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0050.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0050.json deleted file mode 100644 index 615b6d9..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0050.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,221.4,694.482,0.470831,263.333,641.881,0.396402,263.361,783.925,0.633157,321.212,631.462,0.630576,310.662,936.258,0.621716,415.844,521.12,0.653655,358.045,1009.86,0.628479,368.524,447.395,0.558127,484.253,878.538,0.596196,552.514,789.084,0.574657,610.329,994.202,0.660245,773.261,820.655,0.692625,620.926,1194.01,0.654285,952.135,931.07,0.65428,279.148,699.797,0.624268,189.854,626.116,0.580449,647.289,1199.21,0.425013,636.726,1199.28,0.428427,620.933,1225.45,0.588352,988.977,910.009,0.352242,994.231,925.84,0.398394,973.114,941.595,0.560955],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0051.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0051.json deleted file mode 100644 index 2046d24..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0051.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,226.457,694.415,0.479704,263.409,641.839,0.371734,263.394,783.841,0.641732,321.238,631.336,0.638473,310.679,936.26,0.622256,421.086,520.995,0.649232,357.96,1004.75,0.614789,368.591,447.432,0.547175,484.277,883.696,0.602017,552.503,783.941,0.582148,610.291,994.265,0.65421,768.097,820.587,0.696117,620.868,1194.01,0.660492,946.892,931.123,0.666503,279.184,699.775,0.623733,189.848,626.108,0.575974,652.367,1199.22,0.445244,641.852,1199.26,0.446928,620.888,1225.49,0.596233,983.692,920.534,0.369818,988.921,936.26,0.427468,962.604,941.635,0.578519],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0052.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0052.json deleted file mode 100644 index d4d5df6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0052.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,221.285,689.238,0.477937,263.382,631.42,0.398339,268.524,778.642,0.648235,321.296,620.919,0.630808,310.666,936.214,0.625468,421.146,520.848,0.646797,352.844,1004.69,0.60988,368.595,452.584,0.535559,484.273,878.462,0.599282,552.54,783.914,0.580187,605.117,994.256,0.644298,768.061,820.598,0.692972,615.739,1194,0.656345,941.676,936.304,0.669967,279.11,694.546,0.632168,189.797,615.681,0.585867,652.447,1199.12,0.456928,641.916,1199.13,0.452873,620.83,1225.47,0.594917,978.404,920.523,0.382166,983.649,936.266,0.445117,952.107,946.82,0.586415],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0053.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0053.json deleted file mode 100644 index a94b014..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0053.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,226.443,689.187,0.450125,268.488,636.625,0.408687,268.506,778.628,0.645843,326.401,620.934,0.635367,310.648,925.781,0.600634,426.372,520.867,0.645939,352.736,999.435,0.618741,378.984,452.66,0.540743,484.259,878.48,0.609247,552.541,783.925,0.588167,605.058,999.37,0.650505,762.92,820.63,0.692935,615.756,1193.94,0.670772,941.447,936.379,0.667666,279.216,694.556,0.629941,194.968,610.486,0.589106,652.428,1194,0.466054,641.901,1194.01,0.462067,620.877,1220.24,0.603951,967.858,931.114,0.387336,973.179,941.5,0.460971,946.871,946.791,0.599575],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0054.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0054.json deleted file mode 100644 index 72ccb9e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0054.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,226.506,689.093,0.466014,268.537,631.418,0.40736,268.519,778.538,0.644909,326.434,615.744,0.619178,310.609,920.593,0.604985,426.394,515.811,0.635416,352.725,999.421,0.628685,384.3,452.637,0.533218,489.396,873.337,0.599913,557.835,783.836,0.582126,604.997,999.404,0.641987,762.803,820.699,0.678967,615.738,1194,0.664532,931.126,941.583,0.677005,279.262,694.492,0.629418,195.003,610.469,0.590535,647.296,1199.15,0.438584,636.711,1199.21,0.435828,620.873,1225.42,0.605271,952.113,946.862,0.377948,962.56,946.886,0.443304,946.779,946.88,0.59515],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0055.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0055.json deleted file mode 100644 index 7128d16..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0055.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,226.59,683.94,0.455992,268.618,626.164,0.386486,268.574,773.377,0.653179,331.684,615.594,0.628335,310.582,915.335,0.619501,431.599,515.786,0.646316,352.774,999.345,0.642908,389.486,457.91,0.537728,484.268,873.295,0.607248,557.737,783.89,0.587102,605.02,994.251,0.653049,762.763,820.783,0.690692,615.74,1194.02,0.669308,920.536,946.94,0.671335,284.429,694.435,0.62346,195.124,610.457,0.568956,652.444,1194.03,0.45309,641.874,1199.14,0.445859,620.86,1225.49,0.614686,946.983,946.85,0.421591,952.217,952.119,0.474424,936.395,967.897,0.585896],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0056.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0056.json deleted file mode 100644 index 74c369f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0056.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,231.781,678.659,0.441224,273.759,626.073,0.390228,268.587,768.156,0.653261,337.005,610.467,0.625942,305.433,904.891,0.61037,436.8,515.721,0.640745,352.668,994.114,0.658792,394.666,463.112,0.544759,484.253,868.097,0.617762,557.754,778.694,0.588734,599.87,999.425,0.660841,752.343,825.897,0.673199,620.825,1194,0.669107,904.859,952.102,0.672355,289.727,694.396,0.618101,200.37,610.373,0.567109,652.463,1193.99,0.460881,641.909,1194.03,0.451703,620.89,1225.47,0.617348,946.756,946.944,0.427512,0,0,0,925.853,973.198,0.583411],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0057.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0057.json deleted file mode 100644 index 0324fc1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0057.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,231.813,678.658,0.439807,273.86,620.889,0.367716,268.639,768.038,0.654486,342.173,610.381,0.642207,305.395,910.011,0.604963,436.881,515.684,0.654035,352.691,988.86,0.658848,394.695,457.932,0.540899,489.408,868.036,0.629084,562.965,778.632,0.60605,599.856,999.498,0.666974,747.145,831.219,0.655396,620.83,1194.02,0.673181,889.098,962.618,0.653045,294.939,694.391,0.614739,205.474,610.349,0.563997,652.473,1193.99,0.471381,641.913,1194.02,0.459105,620.883,1225.51,0.62226,936.297,952.108,0.420158,941.522,962.682,0.473981,904.766,988.846,0.59714],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0058.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0058.json deleted file mode 100644 index ab02588..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0058.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,231.825,668.26,0.417427,273.994,610.501,0.362389,268.645,762.786,0.64593,347.465,605.164,0.627164,305.393,904.88,0.596134,442.214,510.555,0.637247,352.742,988.853,0.638074,394.965,457.946,0.548414,489.4,867.952,0.620456,563.004,778.544,0.611033,599.878,999.484,0.655357,736.626,836.446,0.646221,620.838,1194.03,0.666231,878.457,973.133,0.662868,300.17,689.196,0.607564,205.518,605.076,0.566249,652.456,1194.04,0.469409,641.887,1199.15,0.460684,620.89,1225.5,0.608396,910.079,957.438,0.384898,920.594,973.185,0.444846,889.023,988.969,0.599758],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0059.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0059.json deleted file mode 100644 index e9deb44..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0059.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,231.905,663.021,0.44502,279.205,610.386,0.384725,268.696,757.604,0.643033,352.653,605.116,0.626229,300.222,899.527,0.60091,447.423,515.623,0.632066,352.605,983.715,0.645397,400.215,457.934,0.546552,484.241,862.837,0.623784,562.983,778.52,0.608254,599.82,999.496,0.662874,731.353,852.215,0.64751,620.858,1194.01,0.662653,862.761,983.662,0.67862,305.41,689.101,0.615545,210.756,599.882,0.587587,652.507,1194.01,0.455263,641.934,1194.04,0.447795,620.901,1225.49,0.605146,883.747,983.632,0.370887,894.257,983.724,0.43523,873.256,999.367,0.602076],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0060.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0060.json deleted file mode 100644 index 779d6a0..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0060.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,237.071,657.635,0.480256,289.666,605.108,0.414835,273.771,757.502,0.650744,357.918,599.893,0.632757,305.401,899.61,0.602683,447.454,515.805,0.627498,347.521,983.519,0.635956,410.662,463.222,0.553203,484.261,862.698,0.624473,563.044,773.372,0.621011,599.869,994.276,0.667695,731.201,862.626,0.660931,620.855,1193.99,0.663061,852.139,994.162,0.656363,310.625,678.757,0.625175,216.023,589.372,0.615301,652.512,1194,0.46434,641.951,1194.02,0.456674,620.876,1225.5,0.605897,867.944,999.383,0.395375,873.328,999.456,0.457448,857.563,1015.17,0.61219],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0061.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0061.json deleted file mode 100644 index f6f6d3f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0061.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,237.135,652.547,0.484407,294.916,605.047,0.427732,273.841,752.329,0.643889,358.125,599.827,0.619573,305.433,894.324,0.602218,452.68,520.838,0.620769,347.518,978.323,0.614525,421.097,463.111,0.52995,484.287,862.704,0.615453,563.026,773.403,0.610289,599.829,999.486,0.65461,720.698,867.944,0.665398,620.84,1194,0.654751,825.919,999.461,0.665174,310.733,678.672,0.625314,221.224,584.158,0.638136,652.532,1193.97,0.457049,641.944,1193.99,0.445778,620.883,1225.51,0.605994,857.396,999.51,0.412043,862.722,1009.92,0.478361,841.661,1025.61,0.608634],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0062.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0062.json deleted file mode 100644 index 11b9d5c..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0062.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,242.325,647.255,0.492751,300.2,594.571,0.440725,273.869,747.023,0.646167,363.338,589.352,0.628612,305.5,894.175,0.626492,463.19,515.802,0.637422,352.626,978.292,0.64683,426.4,457.896,0.548875,484.249,862.671,0.62357,563.07,773.427,0.62143,594.526,1004.63,0.658134,710.279,873.284,0.673031,620.85,1193.95,0.648408,810.195,1009.96,0.664306,315.842,668.155,0.630415,221.364,578.762,0.653811,652.527,1193.9,0.460907,641.935,1193.93,0.451712,620.922,1225.46,0.597171,826.005,1025.64,0.420909,841.69,1025.66,0.49095,815.491,1025.81,0.627488],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0063.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0063.json deleted file mode 100644 index 5f53133..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0063.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,252.8,647.072,0.487526,305.394,589.351,0.437534,273.915,741.885,0.645343,363.347,584.089,0.635673,310.594,888.918,0.635344,468.471,515.725,0.651617,352.651,973.135,0.649329,426.291,447.336,0.545506,484.237,857.491,0.631957,563.055,773.372,0.62709,589.363,1004.62,0.66636,699.825,878.521,0.681212,615.737,1193.92,0.659681,789.196,1015.19,0.646917,315.916,657.684,0.626216,226.564,573.579,0.65442,652.511,1188.77,0.461356,641.908,1193.91,0.454172,620.865,1225.43,0.60453,815.39,1025.68,0.409609,820.741,1025.72,0.479908,804.929,1031.03,0.611428],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0064.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0064.json deleted file mode 100644 index 5df644e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0064.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,258.128,641.929,0.466489,310.586,584.133,0.445916,274.001,741.752,0.649618,368.522,584.068,0.65001,310.615,878.461,0.661134,478.92,515.773,0.640365,352.704,967.846,0.667058,436.942,452.685,0.564684,484.242,857.443,0.624131,563.002,773.403,0.619562,584.177,1004.72,0.658942,694.513,883.703,0.686219,615.722,1193.92,0.649469,773.467,1020.45,0.665275,316.023,652.539,0.624107,231.771,573.512,0.644145,652.483,1188.74,0.463266,641.904,1193.9,0.455087,620.875,1220.28,0.598552,783.844,1046.74,0.403048,804.89,1036.28,0.44687,783.952,1031.04,0.598828],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0065.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0065.json deleted file mode 100644 index e5c7b32..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0065.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,263.347,636.659,0.482597,310.736,578.924,0.447426,274.039,731.255,0.637532,378.997,584.019,0.642913,310.565,873.192,0.639778,489.401,515.644,0.642463,352.704,962.563,0.656624,442.175,447.416,0.546751,484.264,852.271,0.622707,563.128,773.385,0.624187,584.112,1009.95,0.657521,689.244,889.066,0.660379,615.763,1193.88,0.637164,768.005,1020.52,0.665692,321.124,652.394,0.634054,231.92,568.31,0.648632,647.265,1193.99,0.462298,641.821,1194.03,0.468739,620.949,1220.19,0.572721,773.256,1057.23,0.446887,778.618,1051.95,0.48205,773.396,1030.96,0.621945],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0066.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0066.json deleted file mode 100644 index e457db2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0066.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,268.476,631.403,0.466865,315.826,578.742,0.444137,279.124,726.016,0.636231,384.238,578.835,0.653604,310.619,873.219,0.639372,489.533,515.655,0.647587,352.79,957.357,0.654159,447.401,447.371,0.535726,484.266,852.23,0.618461,568.234,773.408,0.627281,584.061,1009.94,0.65765,689.076,904.714,0.624624,620.847,1193.83,0.637218,757.526,1030.95,0.647946,321.207,647.164,0.628321,237.07,568.189,0.631049,647.141,1199.14,0.465234,636.661,1199.2,0.481936,626.124,1214.95,0.575619,762.835,1062.56,0.422733,773.266,1057.28,0.472889,768.017,1041.46,0.614613],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0067.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0067.json deleted file mode 100644 index 18a7cda..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0067.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,268.647,620.925,0.460451,315.971,568.439,0.453209,279.162,715.499,0.660781,389.469,573.583,0.73002,310.564,867.976,0.648281,499.898,515.661,0.660098,352.799,952.047,0.670875,452.705,436.957,0.490238,484.271,852.211,0.643957,568.276,773.449,0.65188,578.926,1004.76,0.685451,678.653,910.15,0.645354,620.905,1193.83,0.655433,741.913,1041.48,0.673041,326.39,641.949,0.620682,237.126,562.989,0.610139,641.99,1199.2,0.463867,631.431,1204.43,0.480836,631.334,1209.76,0.601715,741.758,1072.99,0.420767,757.542,1062.57,0.465081,757.568,1052.06,0.644537],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0068.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0068.json deleted file mode 100644 index 2677eb9..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0068.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,273.74,610.486,0.453384,316.111,568.294,0.433989,284.358,705.016,0.643703,394.697,573.497,0.684963,310.64,862.69,0.653278,500.002,515.681,0.628159,352.711,946.744,0.676055,463.167,426.408,0.476418,484.298,857.368,0.623966,568.303,778.638,0.628191,584.013,1004.77,0.666947,668.245,925.768,0.630109,620.946,1188.76,0.636227,736.548,1046.82,0.658906,326.553,636.655,0.606014,242.384,547.293,0.594877,647.095,1199.17,0.477253,636.625,1199.26,0.491447,631.405,1204.54,0.586178,731.362,1073.02,0.403666,752.342,1062.56,0.454646,747.004,1062.44,0.637974],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0069.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0069.json deleted file mode 100644 index 102d140..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0069.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,273.884,610.295,0.459158,326.431,563.033,0.435751,284.503,699.756,0.654489,399.963,568.379,0.689741,310.629,857.433,0.630736,510.462,515.731,0.607771,347.573,941.594,0.670666,484.101,436.958,0.483003,484.229,852.17,0.627786,568.303,778.589,0.636487,578.915,1004.69,0.670527,668.18,931.067,0.626948,620.962,1188.68,0.635604,726.031,1052.02,0.635988,336.992,631.416,0.608708,252.891,531.546,0.617722,647.165,1193.98,0.483556,636.67,1199.15,0.495478,631.413,1204.49,0.588501,726.093,1078.29,0.427165,741.758,1067.84,0.47073,736.483,1062.48,0.634538],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0070.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0070.json deleted file mode 100644 index 94e6f82..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0070.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,274.03,605.019,0.47707,331.759,557.766,0.427803,289.738,694.505,0.660984,400.183,568.249,0.682408,310.571,846.951,0.620303,521.065,515.839,0.617849,347.549,936.357,0.664735,494.791,442.208,0.430189,484.195,852.157,0.635669,568.308,778.611,0.641143,578.898,999.483,0.674235,662.976,936.356,0.650937,620.956,1188.73,0.632164,710.27,1062.45,0.651066,342.272,626.133,0.607259,263.431,526.25,0.642448,647.152,1193.97,0.470425,636.614,1199.16,0.472914,631.372,1209.69,0.583423,725.945,1078.33,0.424371,736.523,1073.04,0.479413,720.796,1067.84,0.629506],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0071.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0071.json deleted file mode 100644 index 1d2a2c3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0071.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,279.168,594.654,0.457909,336.967,547.303,0.405735,294.899,689.304,0.658564,405.368,563.109,0.663436,305.448,841.684,0.627666,531.454,515.777,0.630842,347.453,936.306,0.658404,515.624,447.409,0.54726,484.152,852.127,0.622755,568.298,778.63,0.634394,578.84,999.435,0.675586,657.656,936.328,0.660231,620.907,1188.73,0.637842,699.818,1062.55,0.684147,347.473,615.689,0.60243,268.621,521.079,0.641747,647.084,1193.93,0.46416,631.382,1199.19,0.459435,631.409,1204.54,0.593215,710.308,1073.11,0.406552,731.278,1067.84,0.4648,705.061,1073.04,0.630547],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0072.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0072.json deleted file mode 100644 index 12693ee..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0072.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,279.214,589.26,0.482113,342.279,536.745,0.418408,300.146,689.109,0.648341,410.581,563.043,0.652595,305.415,831.219,0.630159,536.736,515.812,0.634147,347.404,925.855,0.637831,515.75,447.374,0.564233,484.163,852.138,0.625337,568.341,778.708,0.629086,578.746,999.507,0.679988,652.539,946.769,0.655569,620.982,1188.67,0.652059,694.59,1067.72,0.686518,347.505,610.384,0.613178,268.754,515.744,0.658516,641.938,1193.99,0.458511,631.332,1199.26,0.465067,636.624,1199.33,0.613658,705.015,1099.31,0.401893,726.064,1078.35,0.460826,699.725,1078.33,0.618577],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0073.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0073.json deleted file mode 100644 index 6286051..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0073.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,284.377,578.887,0.509829,347.502,531.503,0.461172,300.195,683.921,0.64096,421.078,562.922,0.643381,300.104,820.799,0.633848,557.705,515.708,0.641542,336.939,915.346,0.622573,521.035,442.077,0.574205,478.95,846.98,0.625138,568.244,783.82,0.625759,573.632,999.48,0.687554,647.255,941.637,0.674171,620.935,1188.62,0.65518,694.419,1073.02,0.687043,347.566,605.115,0.6202,273.883,510.476,0.665119,641.925,1188.76,0.459709,626.155,1199.15,0.456813,636.569,1199.3,0.624639,710.241,1088.85,0.395878,726.021,1083.54,0.457525,694.482,1099.31,0.624648],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0074.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0074.json deleted file mode 100644 index 7b64bd1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0074.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,294.859,573.562,0.501216,352.716,526.31,0.494268,305.372,678.65,0.637165,431.583,557.752,0.647349,289.662,820.652,0.647958,563.03,520.876,0.636061,326.527,904.898,0.636987,526.399,452.561,0.480392,478.945,846.949,0.629035,568.214,783.838,0.628717,573.577,999.502,0.688029,647.11,941.563,0.677037,620.962,1183.51,0.651093,689.313,1073.16,0.684484,352.724,599.829,0.611055,279.21,500.016,0.626082,641.876,1188.75,0.468178,626.167,1194.04,0.467713,636.608,1199.22,0.634408,699.751,1115.05,0.404826,720.762,1099.36,0.450507,694.35,1104.61,0.647152],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0075.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0075.json deleted file mode 100644 index 6a520d2..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0075.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,305.428,568.278,0.438575,357.923,521.118,0.536531,305.448,668.179,0.633497,436.912,552.56,0.65377,284.389,815.292,0.643763,568.454,521.03,0.687599,321.147,899.533,0.644935,552.491,457.841,0.546746,478.897,846.99,0.631026,568.213,783.903,0.623654,573.573,1004.62,0.689341,641.997,941.597,0.67095,626.155,1183.48,0.642918,689.139,1088.83,0.657942,357.95,589.38,0.619024,300.197,489.562,0.58102,641.975,1188.74,0.439352,631.36,1194.02,0.427619,636.666,1199.25,0.634774,705.063,1109.84,0.414785,720.799,1109.75,0.476433,689.109,1115.08,0.641503],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0076.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0076.json deleted file mode 100644 index 019b13f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0076.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,310.686,562.987,0.447215,363.383,520.832,0.557859,310.685,657.655,0.645473,442.147,547.338,0.65349,279.219,804.874,0.648936,584.033,521.09,0.691085,315.931,894.19,0.62376,563.08,463.095,0.581724,478.805,846.958,0.632179,563.117,783.947,0.622038,573.55,999.486,0.704186,641.935,941.655,0.679545,626.072,1183.47,0.65139,683.889,1094.1,0.645067,363.308,584.031,0.625024,310.616,479.037,0.612743,647.117,1188.75,0.420605,631.415,1199.16,0.404597,631.451,1199.27,0.646207,710.24,1115.03,0.449102,720.757,1114.98,0.510546,678.7,1120.28,0.633658],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0077.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0077.json deleted file mode 100644 index 5b84618..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0077.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,310.771,552.522,0.411575,373.776,510.543,0.56686,310.773,652.368,0.659987,442.24,547.327,0.64612,279.117,794.429,0.638625,589.277,531.488,0.652272,305.451,889.005,0.573343,573.652,468.413,0.605097,473.642,841.72,0.625041,563.057,783.916,0.620336,573.525,999.431,0.704057,641.939,946.797,0.682505,620.884,1183.5,0.648359,683.854,1099.29,0.643299,368.497,573.645,0.633734,315.931,473.645,0.626672,647.143,1188.75,0.410035,631.449,1194.06,0.387055,631.329,1199.29,0.647867,715.487,1109.88,0.465041,720.786,1115,0.534343,673.487,1120.34,0.632969],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0078.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0078.json deleted file mode 100644 index 649582d..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0078.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,316.039,536.798,0.408617,384.338,510.384,0.557468,315.923,647.05,0.682298,452.646,547.294,0.645433,273.948,783.828,0.655444,599.927,531.482,0.650709,284.374,878.538,0.595444,594.591,468.46,0.583733,473.604,841.688,0.62733,563.065,783.926,0.6197,573.496,999.447,0.700282,641.83,941.553,0.670588,620.929,1183.37,0.654368,683.907,1099.25,0.652503,379.01,573.487,0.631646,321.281,468.42,0.61536,641.908,1188.69,0.419576,626.153,1194,0.406795,631.436,1199.15,0.669048,705.037,1109.86,0.43217,720.724,1109.8,0.491281,678.745,1120.3,0.645725],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0079.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0079.json deleted file mode 100644 index 129c7aa..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0079.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,321.188,526.281,0.394902,394.756,494.788,0.577674,315.987,636.62,0.686568,457.988,541.982,0.643464,273.828,768.111,0.683889,605.167,541.977,0.639764,273.839,857.507,0.593259,610.336,478.886,0.583376,468.49,841.685,0.62529,563.094,783.948,0.623829,568.406,994.261,0.705994,641.866,941.51,0.681448,615.745,1178.12,0.654968,683.97,1094.04,0.662861,384.332,568.254,0.633196,331.796,452.578,0.615873,641.945,1183.38,0.435787,626.143,1188.69,0.413182,626.189,1193.97,0.67474,710.281,1104.62,0.44981,720.817,1109.76,0.515506,678.771,1120.27,0.657397],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0080.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0080.json deleted file mode 100644 index c6fc5b5..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0080.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,405.411,478.791,0.0704561,331.677,520.92,0.325353,400.043,484.293,0.579311,321.191,626.089,0.679485,473.609,536.721,0.649512,268.684,752.376,0.635966,610.306,547.321,0.63605,263.346,825.974,0.589807,620.981,484.135,0.594279,468.374,831.262,0.635292,563.002,783.901,0.618089,568.34,994.112,0.707795,641.906,941.489,0.683221,615.684,1172.95,0.654746,683.931,1099.26,0.658151,394.77,557.838,0.628641,347.525,442.088,0.606464,641.971,1178.17,0.416509,626.122,1183.51,0.386708,626.104,1193.96,0.672873,710.299,1109.79,0.46218,725.946,1109.81,0.527009,678.712,1120.36,0.657914],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0081.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0081.json deleted file mode 100644 index ac0298e..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0081.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,342.296,515.737,0.324796,410.661,484.196,0.548318,321.247,615.664,0.679263,479.004,531.601,0.654551,263.312,741.793,0.629535,610.458,562.919,0.635301,237.168,815.522,0.62317,641.92,494.708,0.633045,463.179,831.231,0.634779,562.944,783.898,0.617803,568.262,988.874,0.717634,641.81,941.45,0.683421,610.453,1162.41,0.671819,683.917,1099.25,0.654862,400.051,557.723,0.625136,363.257,436.768,0.605474,647.171,1167.63,0.425681,631.398,1172.95,0.375446,615.632,1188.73,0.677655,710.329,1104.61,0.484413,725.945,1109.8,0.551436,673.519,1120.37,0.646209],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0082.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0082.json deleted file mode 100644 index fddbc7b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0082.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,352.806,505.227,0.321328,421.116,478.843,0.568481,326.484,605.193,0.68333,489.399,531.483,0.662755,258.144,726.007,0.612733,620.892,563.155,0.650456,226.627,799.697,0.623958,652.412,499.949,0.652922,457.97,826.023,0.635734,557.76,783.905,0.614,563.153,983.715,0.706326,636.709,936.397,0.683653,610.333,1157.23,0.67494,683.884,1094.09,0.652656,405.301,536.835,0.627116,378.98,426.33,0.616532,647.111,1162.44,0.412256,626.17,1172.89,0.364125,610.405,1188.65,0.675337,715.494,1104.56,0.514442,720.797,1109.81,0.58141,673.431,1120.38,0.646061],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0083.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0083.json deleted file mode 100644 index 26364e6..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0083.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[447.392,473.663,0.051344,0,0,0,442.189,468.358,0.0771326,363.37,499.949,0.341684,431.661,478.901,0.608253,331.719,599.838,0.676517,494.774,531.51,0.668416,258.094,699.688,0.592629,626.129,568.413,0.662169,221.348,773.24,0.652492,668.215,505.248,0.658309,457.902,825.938,0.64205,552.563,783.907,0.613808,563.096,978.424,0.700535,636.631,936.375,0.680407,605.052,1151.79,0.686996,678.762,1099.26,0.646896,410.57,531.539,0.645484,394.7,421.166,0.649256,641.976,1151.97,0.38809,626.109,1157.26,0.337476,605.079,1172.87,0.669493,715.517,1099.34,0.519797,720.759,1109.78,0.584064,668.199,1120.41,0.638752],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0084.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0084.json deleted file mode 100644 index 56c891f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0084.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[457.864,468.487,0.0674946,0,0,0,447.509,463.187,0.094786,373.754,489.568,0.277229,436.957,473.688,0.587227,336.984,594.531,0.65933,500.014,531.54,0.666416,258.069,683.975,0.587044,631.39,578.842,0.662389,205.577,752.338,0.632562,689.085,510.539,0.691874,452.708,820.776,0.64397,547.299,783.853,0.614923,563.019,967.941,0.688955,636.562,936.398,0.685312,599.868,1141.36,0.682495,678.713,1088.82,0.638819,415.873,526.372,0.635687,400.014,410.625,0.628624,641.909,1146.67,0.391255,620.905,1151.91,0.337475,599.889,1162.38,0.669486,715.51,1094.11,0.515355,720.735,1104.63,0.582873,668.16,1120.3,0.635517],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0085.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0085.json deleted file mode 100644 index 571290b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0085.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[463.098,473.687,0.0680582,0,0,0,452.681,463.208,0.0926268,389.442,484.34,0.265713,442.263,473.64,0.575736,342.155,584.176,0.66703,510.436,531.502,0.671644,252.818,673.425,0.569019,636.601,589.283,0.670087,195.108,731.236,0.612204,694.356,515.787,0.699169,452.671,820.734,0.639428,542.089,783.818,0.613599,563.038,962.588,0.687375,631.469,936.351,0.685036,599.832,1125.7,0.675297,678.714,1083.62,0.64012,426.294,526.342,0.632659,405.388,405.461,0.614565,636.646,1141.39,0.38598,615.582,1146.59,0.347156,599.872,1151.9,0.674972,715.556,1094.1,0.524877,720.746,1104.61,0.593587,668.169,1115.2,0.640983],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0086.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0086.json deleted file mode 100644 index 18173c3..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0086.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[468.393,473.73,0.0600044,0,0,0,457.903,463.172,0.0796477,389.63,484.17,0.271986,452.649,468.427,0.553585,342.303,584.063,0.645336,515.635,531.538,0.667925,258.066,652.435,0.536614,641.938,594.562,0.674693,184.528,705.098,0.543041,699.724,520.884,0.68564,452.589,820.668,0.632475,536.833,778.711,0.614378,563.055,952.162,0.693668,636.556,936.311,0.680662,599.843,1120.39,0.681212,678.757,1088.82,0.650552,431.589,526.254,0.627372,415.914,405.328,0.577175,636.604,1130.88,0.331137,610.308,1136.1,0.301964,599.862,1146.58,0.677062,720.7,1099.28,0.542028,720.764,1109.75,0.611812,668.163,1120.29,0.650697],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0087.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0087.json deleted file mode 100644 index 1e57522..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0087.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[484.169,473.722,0.0649761,0,0,0,473.653,463.143,0.0788262,399.988,478.997,0.244472,468.354,468.408,0.543312,352.752,573.662,0.640423,515.756,531.556,0.670303,268.484,641.865,0.51044,641.977,599.771,0.675563,189.667,689.044,0.4926,710.239,526.186,0.664981,447.503,820.63,0.63161,536.758,778.716,0.618001,563.034,946.956,0.700924,636.652,936.243,0.674528,599.847,1115.04,0.677718,678.69,1088.77,0.649679,442.047,526.201,0.6368,436.963,400.175,0.600269,631.382,1120.39,0.332042,605.192,1125.56,0.308561,599.839,1130.91,0.668248,715.57,1099.28,0.53725,720.736,1109.73,0.603668,662.945,1115.21,0.653208],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0088.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0088.json deleted file mode 100644 index dffbdac..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0088.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[499.908,484.144,0.0880367,0,0,0,489.398,463.207,0.108032,400.246,473.731,0.256119,478.82,468.387,0.58582,357.959,568.457,0.643642,520.986,536.808,0.665638,268.533,636.599,0.500096,647.305,605.128,0.687469,179.323,662.925,0.45143,725.944,531.514,0.634917,447.348,820.603,0.636299,531.537,778.724,0.62841,563.044,946.808,0.698633,636.699,936.22,0.667197,605.034,1109.79,0.670574,678.731,1088.75,0.648347,442.229,521.058,0.659549,447.329,400.044,0.657085,636.628,1115.13,0.325481,610.416,1115.24,0.300824,604.99,1125.62,0.65654,715.526,1099.27,0.534207,715.574,1109.74,0.599287,662.98,1115.18,0.641632],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0089.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0089.json deleted file mode 100644 index 791053f..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0089.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[505.202,484.242,0.115986,0,0,0,494.757,473.639,0.138855,410.554,473.627,0.220187,484.131,468.445,0.615571,363.283,568.302,0.638349,521.111,542.085,0.661,268.696,615.737,0.524338,652.441,610.321,0.69134,189.727,641.832,0.517005,726.063,547.302,0.631654,447.356,815.517,0.637519,531.544,778.727,0.62616,563.052,941.667,0.695717,636.729,936.233,0.664321,605.034,1104.48,0.659116,678.719,1083.6,0.648762,447.459,521.068,0.655338,457.953,399.996,0.638223,631.483,1109.87,0.33923,610.432,1115.02,0.309061,605.018,1120.38,0.66933,710.309,1099.28,0.529905,715.516,1109.72,0.59622,662.981,1115.15,0.653303],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0090.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0090.json deleted file mode 100644 index 2f075a8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0090.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[510.443,484.23,0.0854168,0,0,0,500.029,468.462,0.0998308,421.132,473.567,0.251067,489.495,468.426,0.585075,368.485,568.277,0.638102,526.191,547.295,0.65278,263.399,610.43,0.577481,652.547,615.582,0.683648,184.542,615.74,0.589435,731.185,563.05,0.65508,442.239,815.498,0.632888,526.38,783.843,0.631823,563.113,941.549,0.687628,636.72,931.104,0.657027,605.082,1094.07,0.650844,678.658,1078.37,0.640405,452.649,521.068,0.649682,468.397,400.031,0.618565,636.71,1104.63,0.321697,615.677,1109.77,0.28896,605.056,1115.22,0.654332,715.517,1094.11,0.553881,715.5,1109.73,0.62085,662.908,1115.07,0.640532],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0091.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0091.json deleted file mode 100644 index d66f6ba..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0091.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[510.504,484.217,0.104228,0,0,0,505.224,473.633,0.119791,426.329,468.48,0.238477,494.739,468.402,0.594517,368.613,563.136,0.635368,526.263,547.256,0.651925,263.338,605.166,0.576993,657.731,620.872,0.670609,189.728,605.132,0.594643,731.362,568.403,0.672697,442.211,815.434,0.639398,526.327,783.843,0.641303,568.219,936.341,0.678489,636.739,925.864,0.651191,605.189,1088.83,0.651877,678.659,1078.3,0.646758,457.869,521.032,0.656387,473.608,400.02,0.624708,641.947,1104.54,0.303514,620.874,1104.64,0.270351,605.138,1115.2,0.655416,720.707,1099.29,0.541297,715.578,1109.76,0.610469,662.91,1115.06,0.645749],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0092.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0092.json deleted file mode 100644 index 67073bf..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0092.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[520.981,484.124,0.0763134,0,0,0,515.69,463.166,0.0936346,431.661,468.433,0.232664,505.163,468.391,0.583017,373.803,562.997,0.636732,526.379,547.267,0.64317,263.434,604.976,0.577783,652.564,626.108,0.676841,189.74,589.411,0.543865,736.596,573.659,0.679766,447.297,815.298,0.634581,526.34,778.717,0.64061,568.294,936.277,0.676875,636.737,925.845,0.651011,610.434,1078.32,0.65477,673.499,1073.15,0.655357,463.166,520.982,0.6508,478.969,400.029,0.623655,647.25,1094.12,0.277995,631.369,1099.28,0.240396,610.431,1115,0.627932,715.483,1094.05,0.541303,715.504,1104.59,0.603089,662.907,1114.98,0.652869],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0093.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0093.json deleted file mode 100644 index 438c800..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0093.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[0,0,0,0,0,0,0,0,0,436.756,468.42,0.225152,505.236,468.357,0.586867,379.074,557.822,0.633179,531.499,547.235,0.638279,263.263,599.831,0.528065,652.514,631.392,0.682687,195.116,568.386,0.401939,736.665,584.032,0.670062,447.394,810.145,0.635313,526.354,778.69,0.639333,568.382,936.281,0.67327,641.869,925.836,0.654628,615.696,1073.01,0.662898,673.458,1078.25,0.65106,468.401,520.948,0.653996,479.024,400.114,0.620289,657.688,1094.09,0.245112,636.671,1088.78,0.216065,615.716,1109.71,0.600077,715.496,1099.25,0.552328,710.32,1109.72,0.609512,657.748,1115,0.659146],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0094.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0094.json deleted file mode 100644 index 90c72fe..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0094.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[521.042,473.719,0.0578466,0,0,0,0,0,0,436.843,463.197,0.237743,510.444,463.168,0.609565,384.311,557.78,0.629252,531.517,542.038,0.637412,258.143,589.412,0.564615,652.454,631.421,0.680932,200.343,557.776,0.456513,736.617,594.511,0.666582,447.395,810.079,0.634464,526.298,778.628,0.651314,573.502,925.801,0.648224,641.864,920.588,0.648501,620.961,1067.66,0.654849,673.455,1078.28,0.65093,473.565,520.903,0.661427,484.164,399.956,0.634252,683.891,1078.3,0.229053,662.923,1067.82,0.209183,620.863,1088.8,0.548968,720.721,1099.25,0.566447,715.474,1109.77,0.618761,662.891,1114.99,0.652516],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0095.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0095.json deleted file mode 100644 index 91e2007..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0095.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.279,484.19,0.0851251,0,0,0,520.984,463.204,0.107055,436.875,463.131,0.257393,510.533,463.163,0.638539,389.479,552.581,0.635098,531.534,542.005,0.63862,263.275,584.112,0.557088,652.451,636.578,0.682351,216.01,547.313,0.435211,736.559,599.811,0.671596,447.455,799.678,0.627626,526.328,778.53,0.651505,573.577,920.522,0.637784,641.846,920.575,0.648613,626.189,1062.59,0.637778,673.426,1078.31,0.652202,473.609,520.884,0.675532,484.232,394.879,0.662137,689.169,1067.82,0.229659,678.662,1062.59,0.211523,620.926,1083.55,0.532297,720.787,1094.06,0.567765,715.477,1109.75,0.614411,657.751,1114.99,0.652501],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0096.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0096.json deleted file mode 100644 index 8254b39..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0096.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.269,468.47,0.0942614,0,0,0,520.952,452.715,0.117054,437.016,457.906,0.244958,515.591,457.999,0.633915,389.559,552.499,0.638078,531.56,541.971,0.636992,263.399,584.043,0.594076,652.405,636.62,0.68943,226.556,552.545,0.538626,736.586,599.909,0.670907,447.43,799.661,0.631888,526.336,778.54,0.65088,573.629,910.098,0.64305,641.815,920.508,0.648765,636.603,1062.53,0.633134,673.483,1078.25,0.668082,473.684,515.763,0.682396,484.3,394.885,0.660133,694.448,1073,0.240636,689.137,1067.74,0.223871,631.374,1083.54,0.508077,720.808,1094.03,0.561268,715.489,1109.73,0.603694,662.916,1114.97,0.65664],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0097.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0097.json deleted file mode 100644 index fec2ec1..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0097.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.269,468.417,0.0825532,0,0,0,520.964,452.655,0.108125,442.078,457.823,0.25918,515.646,457.921,0.637397,389.482,547.288,0.630904,531.517,536.828,0.641403,268.596,578.888,0.613112,647.3,636.64,0.689839,231.925,536.82,0.546204,736.459,605.017,0.67408,447.48,799.643,0.625367,526.363,778.548,0.646437,573.71,904.872,0.635644,641.862,920.538,0.647774,641.852,1062.44,0.604616,678.668,1078.3,0.668013,473.686,515.717,0.689177,489.46,394.775,0.662405,699.731,1072.99,0.253872,694.455,1067.75,0.241528,636.681,1083.5,0.465887,720.824,1094.06,0.558607,715.492,1109.76,0.59941,668.149,1115.02,0.650326],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0098.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0098.json deleted file mode 100644 index c034e02..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0098.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[526.32,463.167,0.10118,0,0,0,521.059,447.464,0.134778,442.156,452.67,0.232525,515.647,452.725,0.651862,389.568,541.989,0.642548,531.496,531.61,0.643899,273.773,578.912,0.627654,647.257,636.65,0.69336,242.33,536.836,0.570119,736.477,605.018,0.679027,452.575,789.204,0.623578,526.335,773.38,0.648489,578.804,904.73,0.632241,636.738,910.071,0.655452,641.924,1057.31,0.549846,678.683,1078.29,0.671221,473.749,515.635,0.685183,494.655,394.713,0.661103,704.974,1062.58,0.248964,694.588,1062.5,0.236312,636.703,1078.31,0.401652,725.949,1094.02,0.560058,715.501,1109.74,0.6005,668.172,1115.02,0.643793],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0099.json b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0099.json deleted file mode 100644 index b0a4fe8..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant copy/S00_P00_T01_BalancingTrial/pose/cam4_json/cam04.0099.json +++ /dev/null @@ -1 +0,0 @@ -{"version":1.3,"people":[{"person_id":[-1],"pose_keypoints_2d":[531.488,457.954,0.11794,0,0,0,521.081,447.398,0.15519,442.077,447.501,0.2059,515.66,452.618,0.649747,389.543,536.834,0.635025,531.499,531.553,0.644739,268.661,578.884,0.621955,647.198,636.651,0.694396,252.879,526.231,0.572361,736.502,604.971,0.678773,452.671,789.139,0.617788,531.503,773.322,0.642861,578.841,899.646,0.612707,636.742,910.141,0.655852,647.128,1052.03,0.497321,678.734,1078.33,0.674372,478.827,510.52,0.674448,494.658,389.579,0.64099,710.252,1052.06,0.271555,699.786,1052,0.255206,641.878,1073.06,0.33751,720.833,1094.05,0.557694,715.472,1109.78,0.596989,668.225,1115.02,0.639284],"face_keypoints_2d":[],"hand_left_keypoints_2d":[],"hand_right_keypoints_2d":[],"pose_keypoints_3d":[],"face_keypoints_3d":[],"hand_left_keypoints_3d":[],"hand_right_keypoints_3d":[]}]} \ No newline at end of file diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12.trc b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12.trc deleted file mode 100644 index 4e02c83..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_0-12.trc +++ /dev/null @@ -1,17 +0,0 @@ -PathFileType 4 (X/Y/Z) S00_P00_T00_StaticTrial_0-12.trc -DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames -60 60 12 21 m 60 0 12 -Frame# Time RHip RKnee RAnkle RBigToe RSmallToe RHeel LHip LKnee LAnkle LBigToe LSmallToe LHeel Neck Head Nose RShoulder RElbow RWrist LShoulder LElbow LWrist - X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21 -1 0.016666666666666666 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -2 0.03333333333333333 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -3 0.05 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -4 0.06666666666666667 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -5 0.08333333333333333 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -6 0.1 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -7 0.11666666666666667 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -8 0.13333333333333333 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -9 0.15 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -10 0.16666666666666666 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -11 0.18333333333333332 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 -12 0.2 -0.08058929090227669 0.8696950332650175 0.07616397712720875 -0.09062396992529709 0.5027125987699388 0.053815664751651754 -0.08348510484278128 0.11873254569531715 0.056523881987492315 0.10932791883931053 0.033444095416829175 0.03574741457702558 0.07248983335710343 0.0330620742022174 0.07875225368890343 -0.11760879369690265 0.047451893916352274 0.046342262659457616 -0.08119480911121872 0.8696061657045612 -0.1349326287978281 -0.09131718923675154 0.5024873911329983 -0.12335261295489103 -0.08442033381266927 0.11837364921704997 -0.1374416925010638 0.10857362727170179 0.0330958675440299 -0.11707336893692397 0.07130430714843262 0.03253248587808652 -0.16054431759329563 -0.1184856407914993 0.047124908972131896 -0.12976395417015346 -0.11433658091277044 1.4866114990895252 -0.023449884506625357 -0.03715305447810577 1.7080697552316926 0.0023489874129097657 -0.007947310066847955 1.5820735921196272 -0.02165586933768429 -0.1254425869499148 1.4065244957439884 0.1775577049726504 -0.08348187441862756 1.1655200498791973 0.30777720913591766 -0.10309240416673067 0.9809612674140527 0.44940349727333995 -0.12592189367116652 1.407115065039762 -0.22679012550238412 -0.06355728043185781 1.169064538629958 -0.3607828888380723 -0.06823467675436756 0.9830199237181226 -0.5087828293513996 diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_filt_butterworth_0-12.trc b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_filt_butterworth_0-12.trc deleted file mode 100644 index 210c7ba..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T00_StaticTrial/pose-3d/S00_P00_T00_StaticTrial_filt_butterworth_0-12.trc +++ /dev/null @@ -1,17 +0,0 @@ -PathFileType 4 (X/Y/Z) S00_P00_T00_StaticTrial_0-12.trc -DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames -60 60 12 21 m 60 0 12 -Frame# Time RHip RKnee RAnkle RBigToe RSmallToe RHeel LHip LKnee LAnkle LBigToe LSmallToe LHeel Neck Head Nose RShoulder RElbow RWrist LShoulder LElbow LWrist - X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21 -1 0.0166666666666666 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531708 0.05652388198749228 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.1170733689369239 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277037 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.22679012550238403 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -2 0.0333333333333333 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531708 0.05652388198749228 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.11707336893692388 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277037 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.22679012550238403 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -3 0.05 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531706 0.056523881987492273 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.11707336893692388 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277035 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.226790125502384 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -4 0.0666666666666666 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531706 0.056523881987492273 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.1170733689369239 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277035 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.226790125502384 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -5 0.0833333333333333 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531708 0.05652388198749228 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.1170733689369239 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277037 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.22679012550238403 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -6 0.1 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531708 0.05652388198749228 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.11707336893692388 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277037 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.22679012550238403 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -7 0.1166666666666666 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531706 0.056523881987492273 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.11707336893692388 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277035 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.226790125502384 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -8 0.1333333333333333 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531706 0.056523881987492273 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.1170733689369239 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277035 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.226790125502384 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -9 0.15 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531708 0.05652388198749228 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.1170733689369239 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277037 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.22679012550238403 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -10 0.1666666666666666 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531708 0.05652388198749228 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.11707336893692388 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277037 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.22679012550238403 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -11 0.1833333333333333 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531706 0.056523881987492273 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.11707336893692388 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277035 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.226790125502384 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 -12 0.2 -0.08058929090227662 0.8696950332650172 0.07616397712720867 -0.09062396992529695 0.5027125987699388 0.053815664751651685 -0.08348510484278117 0.11873254569531706 0.056523881987492273 0.10932791883931045 0.033444095416829085 0.03574741457702548 0.0724898333571034 0.033062074202217386 0.07875225368890336 -0.11760879369690255 0.047451893916352184 0.04634226265945759 -0.0811948091112187 0.8696061657045608 -0.134932628797828 -0.09131718923675151 0.5024873911329985 -0.12335261295489092 -0.08442033381266921 0.11837364921704989 -0.13744169250106375 0.10857362727170167 0.033095867544029885 -0.1170733689369239 0.0713043071484326 0.032532485878086485 -0.16054431759329554 -0.11848564079149927 0.047124908972131785 -0.1297639541701534 -0.11433658091277035 1.4866114990895252 -0.02344988450662529 -0.037153054478105685 1.7080697552316917 0.0023489874129097 -0.007947310066847896 1.5820735921196263 -0.021655869337684187 -0.12544258694991473 1.406524495743988 0.17755770497265028 -0.08348187441862746 1.1655200498791973 0.30777720913591755 -0.10309240416673054 0.9809612674140525 0.44940349727333967 -0.12592189367116643 1.407115065039762 -0.226790125502384 -0.06355728043185781 1.1690645386299576 -0.3607828888380721 -0.0682346767543675 0.9830199237181223 -0.5087828293513995 diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_0-100.trc b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_0-100.trc deleted file mode 100644 index ba2bc4b..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_0-100.trc +++ /dev/null @@ -1,105 +0,0 @@ -PathFileType 4 (X/Y/Z) S00_P00_T01_BalancingTrial_0-100.trc -DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames -60 60 100 21 m 60 0 100 -Frame# Time RHip RKnee RAnkle RBigToe RSmallToe RHeel LHip LKnee LAnkle LBigToe LSmallToe LHeel Neck Head Nose RShoulder RElbow RWrist LShoulder LElbow LWrist - X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21 -1 0.016666666666666666 -0.06497214796810759 0.9015045550714219 -1.4005886926185436 -0.039626366217273064 0.49309736508346963 -1.4485228257141773 0.043790140142401686 0.1438754982298424 -1.595084677175331 -0.016908482700287393 0.0644100634854221 -1.4466122856697554 -0.023624113249186514 0.07647845076617456 -1.5050009460595855 0.06004531358209033 0.10438957736344671 -1.6358191543053155 0.10414811565622761 0.9087621520330434 -1.4589816545398213 0.030384912213621502 0.5361790123469125 -1.2634902850904264 0.013819812608778199 0.18115575543140294 -1.1375505145455749 -0.022302677625561936 0.09534707105232751 -1.0123924717196522 0.002596310432709726 0.11352984352003752 -0.9899617326897932 0.023237931913577675 0.1028244811852605 -1.2269060955109108 -0.028751902614113 1.4640637475385383 -1.3967538932054269 -0.056439390963240306 1.7024241363089387 -1.251712918165679 -0.05311484900137218 1.557268349840228 -1.197034641076441 -0.16750016780382998 1.3929348368739156 -1.4131922619239163 -0.2729694358694237 1.1454816661314944 -1.479785603900088 -0.36305081378548576 0.9227894097003227 -1.3696832448117429 0.1449045502791358 1.414244460433966 -1.445375055589065 0.27702490973776667 1.1648706333068446 -1.472594655832633 0.3546307511327374 0.937762386769892 -1.4580889913138002 -2 0.03333333333333333 -0.07400682936454443 0.9044249595446079 -1.38875055235376 -0.03967167449854034 0.4930610544183484 -1.4481465415844852 0.03988629702625417 0.14349351643381283 -1.5931576221287305 -0.016937187472705114 0.06664057660020731 -1.4477365751444142 -0.022348375319435038 0.07352380390368031 -1.496217380798817 0.05996569485170091 0.10409540139384052 -1.635538298389605 0.10008796347597874 0.9046726033253037 -1.4434718166954241 0.03390795942930055 0.5268516767628307 -1.2436581164863583 0.01276359207240242 0.1561306502438201 -1.1777669243519728 -0.008525756900378578 0.0976639290148113 -1.016027315992633 0.013788204490539241 0.09066837480121788 -1.0281508175864158 0.019601383983223773 0.09717298030130751 -1.2254048566494866 -0.02465707417370451 1.4643628152793253 -1.3878530017855382 -0.044317388292624924 1.7016913778057041 -1.2522449024257611 -0.038715092948178285 1.5594882255389044 -1.1849417421469113 -0.15896617746343034 1.3932559320012965 -1.406325476931949 -0.2734393427687783 1.1499028148323789 -1.482344181219621 -0.36659692692419155 0.9409114413894223 -1.3674022847316432 0.15323234674039057 1.4045490141409402 -1.4344764663555705 0.2805567270983057 1.1620780279498393 -1.4627085411562402 0.35449885422193195 0.9349072743155047 -1.4475312225497714 -3 0.05 -0.07994003508784125 0.9088363315135066 -1.3905580361242016 -0.037234196419816505 0.4955765014106467 -1.4425663246315596 0.04241869975614993 0.1500265582226024 -1.594927259275387 -0.01574996686672287 0.06411191580102348 -1.451436025465263 -0.02098326956028777 0.07067668741162317 -1.5005609823471773 0.060178703555420744 0.10736688959206538 -1.6376590095939914 0.09894617970669163 0.9056906633149083 -1.431932646153719 0.0306249055598522 0.5257404480520177 -1.2334235811755365 0.00805080833753778 0.1705209865393221 -1.1350391972773952 -0.019549516859120233 0.08742619997640164 -1.0054060218382275 -0.00882089685256975 0.07189917623625698 -1.036716181561973 0.018610492711264755 0.11251164615611406 -1.1798733688670966 -0.018955080006994432 1.4624638855636753 -1.3704090278468353 -0.02888242855699393 1.703962101649035 -1.2520209437994765 -0.008359896355645885 1.5529161750373657 -1.2074851514876386 -0.16528247906785964 1.392750810960902 -1.4499293516229264 -0.2700461246209692 1.1530890629841961 -1.4677334871719527 -0.3655859906294031 0.9481164989999868 -1.3535425413680706 0.15718618633341147 1.4049632514081167 -1.426066597012945 0.2850173806525569 1.1579705936205236 -1.4389364397478692 0.37082051898403573 0.9238065931157293 -1.410545807532474 -4 0.06666666666666667 -0.08342129985132575 0.9118448511189909 -1.379050154135988 -0.0378442482906747 0.4986109123625857 -1.4352189864500167 0.041841983978335315 0.15062110725933373 -1.5951903296219654 -0.015932254565296778 0.06416123546532042 -1.4513721360611158 -0.02257599739301211 0.0731992870706251 -1.504527424412503 0.057564602663828346 0.11695964539527634 -1.6363652236785142 0.09290312931304562 0.9098437283719358 -1.4193092192329997 0.061059291515899373 0.5096012715038665 -1.1892666366458096 0.007374751446314841 0.1550583730713588 -1.1808690531215509 -0.04378020262460317 0.07761079699508175 -1.0210196765995916 -0.01714605346347419 0.07584131736620414 -1.0399612109003555 0.014046580777960078 0.10523749431792916 -1.2282451744130676 -0.012549520632110841 1.4638662725554938 -1.3652176336160406 -0.021262050211840515 1.7026487477750942 -1.2570495986090877 -0.008350811010892046 1.5529532822363696 -1.2071862921954262 -0.15751250700651767 1.3948904556685857 -1.448604791135599 -0.29968774071712756 1.1428088944889967 -1.5238541534688406 -0.36794275668971194 0.9616792640643118 -1.3388440241773825 0.16072755816947012 1.3998772896653568 -1.4161220791506832 0.2900349664546639 1.152002530871588 -1.4161336571458536 0.3679392534818304 0.9209406904952349 -1.3980322674165044 -5 0.08333333333333333 -0.0821238865651071 0.9107085919754118 -1.370552859419039 -0.04150582145275036 0.4929167907686021 -1.439155011826857 0.03682233210122577 0.14927663866617172 -1.5990002243914512 -0.02148219317050597 0.06783629176552161 -1.4423567058485363 -0.026747037678661004 0.08037740611028288 -1.5017657758090883 0.05366234746160954 0.12022297381258865 -1.6408220352917793 0.09147625567616328 0.9100669057985629 -1.4139290585175406 0.0626837093342491 0.5103767599988093 -1.1823134125607424 0.002954177725043121 0.1567514622473684 -1.1821054577322763 -0.038488020735776965 0.07052276032300842 -1.014114019708537 -0.014272675762046935 0.07347835346579584 -1.043291374875193 0.011831836553890883 0.11877479372751705 -1.1711837047310336 -0.0027370625258062178 1.4639923785316706 -1.355101269302125 -0.009731425014376505 1.7031729058977731 -1.2426213455119701 -0.010665909090334488 1.555288287529191 -1.1943574023557766 -0.14942303131368975 1.4010602126824292 -1.4369109688599486 -0.27570432086069985 1.1686799507679233 -1.450392434716261 -0.37480166175406 0.9763450427437765 -1.3213283410243597 0.16436263131396908 1.4013433494683019 -1.4106527125065667 0.29602204069095545 1.1393860740183357 -1.4116183716990802 0.3715060490598978 0.9127141244556444 -1.385169816003053 -6 0.1 -0.08702282724179058 0.911338428405886 -1.3568997098700204 -0.04341741154999457 0.49819526462151353 -1.4247995004538982 0.030684010514465513 0.15288131912453307 -1.595429598721954 -0.02373435348299556 0.06880595934690963 -1.4385715694482109 -0.026569011408985075 0.07784785755973203 -1.5010560152801105 0.05286810319746045 0.12251101974237781 -1.6382747096284316 0.08412005883788183 0.9077201537229961 -1.4048786998084564 0.058299718966549084 0.5138224749406817 -1.174102758121325 0.00041451298682264353 0.15541469554857587 -1.180830020345083 -0.014510738308146844 0.08276940266920883 -1.0054703898344923 -0.014362540646687526 0.07594398176256342 -1.0403720790669015 0.003768447258979014 0.10126111726537845 -1.2241643817563173 0.00345947511854708 1.4649523778642433 -1.3430134167482235 0.012273797793913346 1.7018431508827276 -1.2187764732741984 -0.0066120530118742304 1.5576133073185263 -1.176811190846153 -0.14320334949005736 1.4142277217338217 -1.3673150957819067 -0.2846326912273281 1.1885578601716706 -1.430553028410787 -0.3893089663747907 0.9936868940784441 -1.2980685431291448 0.1616911690959512 1.4067189627450079 -1.4274660160537667 0.29246204390759295 1.1389054627619435 -1.4045485172740482 0.3688942985700444 0.9119098766791636 -1.3713952007343708 -7 0.11666666666666667 -0.09201009742966328 0.9116316950580302 -1.3447088631627073 -0.044585642447534934 0.5002300424678053 -1.4213497807093536 0.029045112539671725 0.15408038866837845 -1.5892342384192042 -0.02453502718420693 0.07089768891997737 -1.435102214183374 -0.027653286539935016 0.08029291877544131 -1.4972566795410414 0.05589747456443395 0.12552190824047554 -1.6342216077107519 0.07838656503311367 0.9062343920880872 -1.3900436685193238 0.05668230160543274 0.5133833204100103 -1.172329066533092 -0.001533292640881451 0.15303714424888984 -1.1774580456293264 -0.024311773150117642 0.0819302502096757 -1.0101635347515643 -0.015642355768794823 0.07031605017972377 -1.0336888812854481 0.005318420081351788 0.11250356253413697 -1.1732873537978712 0.010922706780007115 1.4639586585850428 -1.3339077945148345 0.025492291247308986 1.7029041019265294 -1.1980170678789088 0.0023946521014788858 1.5594688478434195 -1.1571744377559607 -0.1341489746306962 1.4168565639057384 -1.366282272957472 -0.2867964204983851 1.1937466291971837 -1.4293376904697257 -0.395103838152426 1.0080568095222109 -1.2871437372806074 0.16369462657477404 1.4087298885531911 -1.417316210625187 0.2917939371282503 1.1331007998949012 -1.3927156485387804 0.3624503249153314 0.9035986293468832 -1.358672956107832 -8 0.13333333333333333 -0.09066731879363345 0.9161769284867741 -1.3309245886295915 -0.04605381297603308 0.5073858348162312 -1.4072542077458328 0.033493771408234556 0.15911933948101578 -1.5866813244271676 -0.02259061437486587 0.07109524105136227 -1.4359690330304518 -0.027997859421056304 0.08279723115421309 -1.4920117116596334 0.05704093444830047 0.12727600956316235 -1.640151932415594 0.07349232204712203 0.9103762544192274 -1.3836243947170992 0.044401347812323286 0.5164991449829337 -1.1583294640352144 -0.002155074320978708 0.155476395939997 -1.174676981103047 -0.035286143580797714 0.06931151423446318 -1.0062702675880315 -0.015451324022767887 0.07591616011717835 -1.03859727080093 0.006814736094780421 0.12211049631365602 -1.173992726780724 0.027644352443963918 1.465871454767409 -1.316012528003539 0.03456359685802793 1.7046714190470622 -1.1975484511599168 0.014938101126715012 1.5603954153429132 -1.138073923174606 -0.1220871640687449 1.4239006549808617 -1.3464142557851693 -0.28447731262110654 1.2033339008884858 -1.4199495971795109 -0.4061579116137032 1.0432021519962975 -1.2427046942560425 0.17359861684978495 1.4066248703391362 -1.3943765082977129 0.29558176745165554 1.1282929537359982 -1.3868258395904103 0.3690300278509792 0.9059692380936281 -1.3151280433583483 -9 0.15 -0.10154844061605614 0.9224030958476855 -1.3113056819456608 -0.05816588713583385 0.5037301153697044 -1.405264865389514 0.03316335963459194 0.1626568943400163 -1.5889526929956082 -0.023037974301410975 0.07340613714732158 -1.4373193051052593 -0.027912680176851792 0.0807731909090459 -1.4969873422787765 0.0451958099972135 0.15667898670560246 -1.6549485004183995 0.08686551689517193 0.899777685204671 -1.3373500159947078 0.04188009734622219 0.505972616430763 -1.1547791573202366 -0.0014261561865693332 0.1528631322147218 -1.1781113570825503 -0.0339114378494413 0.06906220181602327 -1.0057938283541195 -0.01436582730538767 0.0753597870136921 -1.0401995308432601 0.007416679735756366 0.12278411094710569 -1.1828601252524433 0.03563216507356818 1.4637592336913545 -1.3101498079204963 0.04243930050399552 1.704041624722137 -1.1847906848384064 0.029602188940824312 1.5599335160560504 -1.1221364271914944 -0.11256735251070087 1.4291674619412633 -1.327238462225161 -0.28976212087898845 1.2144683398332206 -1.4068337317836537 -0.4039325751250371 1.0484424770240477 -1.2429085050444553 0.19871977709646588 1.393014008674432 -1.3459105479754838 0.29501959845913606 1.12526807682095 -1.3735831653880162 0.3639732590214679 0.8965555200323619 -1.3330462238832945 -10 0.16666666666666666 -0.10449285026629647 0.9256030355485432 -1.3109024276535242 -0.04996899814878614 0.5021490786267272 -1.4004124526110702 0.027976425058762532 0.1716620120961415 -1.5845449209433493 -0.022773439353622405 0.07312675635901285 -1.437305568808479 -0.029106555982507984 0.08163916672914079 -1.4981662237494153 0.057856643554550655 0.14026670579591635 -1.629255161135757 0.06388679342271984 0.9050291034583992 -1.3491973466469938 0.03975776844301241 0.5119481624444824 -1.1404661293223814 -0.0023773472398327567 0.15633813985945844 -1.172318052939291 -0.04686554952450185 0.07132989872318533 -1.0015585451690592 -0.012276638153292717 0.07665066072918385 -1.0312075986253473 0.006773393449537032 0.12236264596093427 -1.1743994303848124 0.04294315397438431 1.4652480672570363 -1.3023376323813203 0.06555230611029099 1.6997384780505003 -1.165115517522945 0.044970810420796925 1.5576236562218737 -1.1119887298960314 -0.10519963588890698 1.4309489200629202 -1.3226566784933251 -0.28677257515630594 1.2317261773871364 -1.3902035785327378 -0.3935190068497015 1.078077005547157 -1.22636692691887 0.20890723884312515 1.3894788269200322 -1.338531447186497 0.30163124960911186 1.1223178974255912 -1.3659525889507684 0.368061409624301 0.8842666031730164 -1.3103544356238295 -11 0.18333333333333332 -0.10563520674537849 0.9241736639735944 -1.2915984903318471 -0.11795445890311998 0.5678300637878904 -1.2452327052751593 0.02290252319146953 0.17484359917009204 -1.5808545189331225 -0.02530524789588003 0.07205573743886688 -1.435267835791171 -0.027055646737813493 0.08515587761793655 -1.4937205074021829 0.05365148898836311 0.14173517300392677 -1.6297972782277919 0.05676930300898501 0.907515458420905 -1.3321210825321004 -0.010944094182073264 0.4815785133027969 -1.1266139631765282 -0.004690682644655576 0.15432696135436214 -1.172544874475822 -0.049159794502248944 0.07058064678285346 -0.9941128021460263 -0.0010073412067613577 0.11225505457365145 -0.9893032184303469 0.004454227790542124 0.13077095968261251 -1.1706522649996043 0.05291633720950619 1.4656554343498325 -1.2909592280182254 0.08614870386593365 1.6948889947851007 -1.1607657229911155 0.05896013167539439 1.5557214817814897 -1.09923026708621 -0.10504247109808981 1.4275231788786182 -1.3623018070192214 -0.29247335207940545 1.2404922459479473 -1.3766566162216873 -0.3998234430217648 1.1050421309029885 -1.1898341719294052 0.21046127822403346 1.3805909786290467 -1.3274791272480708 0.30981009271409166 1.1160065807208832 -1.3531708315743964 0.37100573440084683 0.8677593427759475 -1.2976359617464788 -12 0.2 -0.10724979603301801 0.9270690813583777 -1.2851920117039564 -0.1266993514668563 0.5661368090146447 -1.2321513803646005 0.012979941757612056 0.17936404867011335 -1.569238382586733 -0.03309319463675271 0.07366098244229562 -1.4301875174691565 -0.035281729219295725 0.08344635173038513 -1.4948280155561107 0.03953370124091042 0.15255230472763825 -1.6340263193733513 0.05602101429727365 0.903003198322159 -1.3285003178119514 0.027594701210086527 0.5057312909667567 -1.1410351089043669 -0.002016885817087181 0.15512105730789608 -1.1744451861988427 -0.04521046056381654 0.07265919840134029 -0.9955540258408012 -0.0006204968556005022 0.1124564316950636 -0.9889752921785973 0.007687441792033872 0.12255764942249238 -1.1836533661434785 0.06694855819402383 1.4672033184337285 -1.2778305396421203 0.10402745279076812 1.6968991673345595 -1.157489142609317 0.07514747898197868 1.5597842832622084 -1.0701706547683005 -0.0949363014023401 1.4371325745825192 -1.3085829017955888 -0.29440439523128753 1.2546952800798796 -1.3701106296516783 -0.4184785983682502 1.1482624779030852 -1.1632137303872596 0.21697970838799407 1.3788010269372122 -1.3206119340554012 0.3129423320643097 1.1084635901691613 -1.3421460983318325 0.3754823645490292 0.8576207117160233 -1.2851325374846516 -13 0.21666666666666667 -0.1090383885845302 0.9264938533474348 -1.282997486852365 -0.11409319289699592 0.5140395145743928 -1.304362124931413 0.0024756877261628714 0.18797540111784378 -1.564735355577771 -0.03442937622487375 0.07454199242457915 -1.4214746958655056 -0.032216678001435343 0.08547318032180964 -1.4858293166773289 0.04291010776402854 0.17559127542183475 -1.590527032656003 0.05162927118973253 0.9001916032767237 -1.3165058610353955 -0.011291665097636221 0.5233962147330318 -1.1506169110002935 -0.001458094064950411 0.15942222501037717 -1.1764252364680263 -0.00582653979789581 0.0932333332007849 -1.0031227485710725 -0.0029687258828255407 0.11603124326117112 -0.9830235660109644 0.008589712613885834 0.11208434292907371 -1.2279175176502373 0.08411802393697118 1.4646070943160248 -1.2606948121771349 0.12031212971305774 1.6921669357159614 -1.1456515239558955 0.10546861237825622 1.5539484036100568 -1.0937763318526241 -0.09530200766804849 1.431899825590616 -1.3494425739342617 -0.2989486945011974 1.266760728583525 -1.366125466877519 -0.4022471952773888 1.1769530014069072 -1.1741133802794086 0.2062867835208836 1.3728180871186884 -1.3279787014812618 0.3200943327491042 1.0987799896563404 -1.322287085742809 0.37921912542607494 0.8467108654805826 -1.2714887479848958 -14 0.23333333333333334 -0.11780237006450786 0.9254360498464527 -1.2683835039325082 -0.12555429979480506 0.5074656352211254 -1.2636242507185609 -0.013475003507727326 0.18836940486221931 -1.5574214318916946 -0.033397653759252376 0.0753127628223314 -1.4256320841860721 -0.03639276462434687 0.08547282094191189 -1.4813402811899856 0.02230680879640789 0.1921534585299439 -1.5743370579610352 0.04831061887706835 0.9011144115965083 -1.308164083482147 0.009509874016341955 0.5141142173864528 -1.1165799500976772 0.002319800110787861 0.1576254859965604 -1.17665795148915 -0.014401519815979587 0.0874876916080546 -1.0032232026351786 0.013054717613220369 0.08678534794640098 -1.0252025073502675 0.008573594826921584 0.13810966060065677 -1.1794278689840547 0.09066422564040139 1.462956188026198 -1.2455844466364983 0.13066889801238804 1.6918118220028084 -1.128218807123362 0.10569409736934085 1.5431362220834388 -1.085831946362806 -0.08180814663561943 1.4371192409633173 -1.2847271053821052 -0.2920321266851549 1.2886048914078427 -1.3458787656940479 -0.42536122270489346 1.2112857855266168 -1.1338766876278978 0.21735198489058863 1.3666013095453153 -1.322840805373892 0.32326438950968917 1.0892288399419232 -1.306994562596013 0.380024192652488 0.8510417450906944 -1.2279826781084613 -15 0.25 -0.12110648902306893 0.9280659903007246 -1.2575209574934554 -0.1435954984194029 0.5181345877333428 -1.2628792067487802 -0.022963606528543686 0.2014183856639441 -1.541306322349995 -0.04404473142969534 0.08409059020134607 -1.417545669564873 -0.05369782409064463 0.09877641898213074 -1.4665465085926759 0.005414333001007721 0.19889324015683774 -1.6023966374013574 0.04140541018371304 0.9000287307208708 -1.2980717663538461 -0.0001228328376014888 0.5124793819777211 -1.1016286720841526 -0.003837933526845947 0.17974252687226333 -1.1332111634676238 -0.01810740565053356 0.08843501965958075 -1.0008812623239312 -0.00828382562347505 0.07680436301573726 -1.0370299825171583 0.00701599966597455 0.12935366650920996 -1.1885900439115047 0.10184465180470514 1.4587752853202691 -1.2358246721091934 0.1423708290673625 1.6823200508647538 -1.1087449862714718 0.11729788398071071 1.5430203275543861 -1.0853590504733073 -0.06528496621527509 1.4386548202732705 -1.2739016113594799 -0.29457355564193144 1.3018694863641833 -1.3284190551399784 -0.4364872380459567 1.2383344371874383 -1.1270190409301286 0.21731311008635204 1.3585930666566162 -1.2975362912848527 0.3323039701611363 1.0760725117839292 -1.2799028466071303 0.3804734652602642 0.8295288307306996 -1.205339330172646 -16 0.26666666666666666 -0.12560501310595767 0.9323121531037666 -1.256570198268785 -0.16707815279509078 0.5138423089258122 -1.225248143981094 -0.03994727317596701 0.2196771613483866 -1.517802947377833 -0.05784224984233176 0.0885934280784396 -1.3966644607625491 -0.06432755287193331 0.10635440206600137 -1.4487116474635355 0.0019119681043280534 0.20865119359177425 -1.5426393326546688 0.03214512683283803 0.8974758395934834 -1.2925749491926637 -0.015165219488902494 0.5088437699943474 -1.0857061166725026 -0.006364406210243027 0.15252386804118198 -1.171661440686546 -0.025184625446052128 0.09366926216874638 -0.9921415813388318 0.0028154333496342586 0.11301367673550106 -0.981998790724993 0.0036966836213524453 0.14184187465725734 -1.1709596306397296 0.11244176153756608 1.4525808051459124 -1.2307432161254304 0.16607891414643852 1.6890233145996367 -1.074505434320189 0.13455918782837895 1.5368361430831754 -1.070413354890566 -0.06435572556633111 1.4298335907490518 -1.308108338102448 -0.2877878729988556 1.3103061141902521 -1.3069953798850642 -0.4276073565046469 1.2750347454046764 -1.1126143761827831 0.2544227241045326 1.3356677080732218 -1.2527182885177477 0.33554837948898253 1.0641000615700316 -1.273548668019664 0.3685840882413605 0.8236075030784523 -1.184555667573939 -17 0.2833333333333333 -0.1269545932147351 0.9357653755696783 -1.2506277284626341 -0.1826223097796742 0.5268694349668925 -1.1974545316467766 -0.05262207834451492 0.22925685967394976 -1.5044083773139318 -0.07397674497989495 0.09892584692700496 -1.3779567363010392 -0.07986502695135757 0.11253241488851035 -1.4260794825774354 -0.019985686358384935 0.21269861351211242 -1.5526267750540648 0.027961215008535684 0.8954193716930908 -1.2890276920270685 -0.019787926534101587 0.5110539884231388 -1.0796636064103935 -0.007703347290668166 0.14493422002515152 -1.1654343644743064 0.021279260493246726 0.08540052031198601 -1.0205032194301826 0.019425075771876178 0.08280246170600104 -1.0306182019083359 0.0008737774427734836 0.09003973732098537 -1.2235011044756072 0.11524675045814624 1.447946960424063 -1.2257694006222883 0.1869640954340893 1.682444580426556 -1.0660445896345525 0.14472734516971775 1.5293244667930734 -1.0477171603453785 -0.04733726032293771 1.4320662585810005 -1.3036815689756105 -0.27555282107072654 1.3223187324592443 -1.2960902546962834 -0.41908986225764927 1.3085586759348906 -1.0901645215530535 0.26456587557734623 1.3277901385234694 -1.244661387065909 0.3382226329776812 1.0531759552695132 -1.2593451990065445 0.3691467905499856 0.8125452026816079 -1.1739276510485281 -18 0.3 -0.13504477609911109 0.9352358620399062 -1.236935455783377 -0.21161628386166298 0.5298962223907934 -1.167598281962668 -0.07711697272873959 0.22831975193199458 -1.4655980160302218 -0.10206911797949884 0.11030549846089004 -1.3601626312151978 -0.11340572200460892 0.12177624918575355 -1.3995768531053037 -0.0495442203152926 0.23602498344715195 -1.5394828601045139 0.014980668642891957 0.8882755737562508 -1.2731300032239241 -0.022145334683714414 0.4988374435658328 -1.073565630891256 -0.010761337898361025 0.14028081949393173 -1.1754037629235048 -0.009876726511841915 0.08786819617919683 -0.9985716547563666 0.022810010841271783 0.07925917494473014 -1.040468196318436 0.004843112144515711 0.10306058870059051 -1.2290494483563348 0.12651952861017216 1.4368957776945417 -1.2205309082087992 0.2001784910107053 1.6809901354743553 -1.0531142119620054 0.1470280432916003 1.5266759842281326 -1.0357627812161991 -0.031046145229144256 1.4412254350207023 -1.2495811456507209 -0.26385386104856373 1.3386115437251305 -1.27990352887093 -0.4170050359238786 1.3486367663669712 -1.0724385829408887 0.2726147748858124 1.3255399970988546 -1.2292258694448632 0.3400546773154394 1.0462801751395272 -1.246483933174925 0.371974999262516 0.806511328503976 -1.1604806712423597 -19 0.31666666666666665 -0.135499212941008 0.9390758008519794 -1.2313690661103607 -0.23404249087186416 0.5394289095569105 -1.163078064195245 -0.10744493706030836 0.25093996623958403 -1.399175259824169 -0.16954855929858975 0.11603215989843708 -1.3498891779233053 -0.14330009707948255 0.14037834495092494 -1.3815255980203414 -0.06776066289268363 0.2256872538596508 -1.4858752870322929 0.015520019356943427 0.8884780659158934 -1.2736286617285615 -0.06415034320675937 0.5070200983621597 -1.0781720989777923 -0.00880221735929679 0.14110715319583494 -1.1731856347899887 -0.0024920065735201686 0.09127796685418199 -1.0054400645392458 0.02765881498245919 0.08471655050953533 -1.0374807627414637 0.013172898498207247 0.10903191665567225 -1.2417771263948196 0.13573442677407055 1.4351883544593635 -1.1955878293032514 0.20772547823367657 1.6613257548347287 -1.0711206610155428 0.15882214718933488 1.5181612603708374 -1.0315290866437374 -0.03265749488772934 1.4326089392025183 -1.2906352425013257 -0.26348851903286036 1.3484552897823552 -1.2533150838577298 -0.41414923444880697 1.365315257721679 -1.0517724546104297 0.27873514127506704 1.3120473535792339 -1.2142287763620543 0.33946720429255556 1.0307065944019955 -1.2294184331968505 0.36481369646317463 0.7828079195632823 -1.1724327724253727 -20 0.3333333333333333 -0.14276269424402238 0.9426489299493602 -1.2310654522988937 -0.26073790730342616 0.5517891760505079 -1.1474698880771461 -0.12864391187265725 0.2614967458168639 -1.4503619265332375 -0.1577546849027256 0.13140122744919155 -1.3078774239268125 -0.18805541259435526 0.1337197601727088 -1.3579518564989876 -0.08056247272314708 0.23175931367446329 -1.4361413002866976 0.022072201387852177 0.8900738121182041 -1.2634719706032824 -0.06257389999413875 0.5035689164039345 -1.0805378541350097 -0.011052271497763205 0.13333881714904605 -1.1767667946359794 -0.007694184582746271 0.09716388368964067 -0.9987526560496138 0.03324751883521679 0.08547767233717482 -1.041949865995323 0.0031408934535709096 0.10640224458114592 -1.2269968977979668 0.14452258768914844 1.4307060282429183 -1.1900183807436926 0.22452771624857099 1.6675151486006956 -1.0312814914482131 0.16100773061154317 1.515200095794267 -1.015579638954121 -0.015145602647486475 1.442900804111803 -1.2243689611724826 -0.25572187774004224 1.3596669513116069 -1.267501647574774 -0.3952315885361824 1.3802198272323694 -1.0321018107582542 0.28507347793930277 1.3091948750190776 -1.2051990506845538 0.3399225095123518 1.0293134367763002 -1.2139721301651627 0.36534372580002944 0.7761220417311644 -1.1598239005815691 -21 0.35 -0.14496743337836823 0.9472662229585765 -1.2144147553476565 -0.28963769925003224 0.5673899910495084 -1.1259982035801153 -0.17295457602929873 0.25241872836482615 -1.4235707999060105 -0.18833542597605615 0.1246504837263654 -1.2778302065759894 -0.22102234736319545 0.1455528649417768 -1.3261185235652364 -0.08286468566307656 0.24214311379331332 -1.5036460741064999 0.017023487645212245 0.8883212405755111 -1.2515824561534936 -0.04933863050121562 0.4950778868437373 -1.0518752345836082 -0.013452050844220733 0.12599769979462808 -1.1813434688405184 -0.010369327013041043 0.08910648844402483 -0.992039110252434 0.025946800885390413 0.08527406836886037 -1.039245979514538 0.004883741365041909 0.09948311101739714 -1.2294487099999467 0.15436642638042536 1.4266177622880638 -1.1839449610720805 0.2211843054567813 1.6481777533820452 -1.0559904963671676 0.17246859722412936 1.506406922375788 -1.0112244027743327 -0.013142427164869559 1.4311487387066157 -1.2728518739114627 -0.24821714808687892 1.3686580660904077 -1.2542198637464643 -0.37586192008243796 1.3976953468750994 -1.0393802677086894 0.28779552783715107 1.3041748864582696 -1.1948612230795546 0.33991809048034916 1.025941724996828 -1.1911580418772725 0.36740860843911805 0.7793916738853156 -1.1077943005178565 -22 0.36666666666666664 -0.14747388871912295 0.9465569392476313 -1.211492113817087 -0.3136277866955202 0.5762741000382849 -1.120311286389026 -0.1868858001046301 0.2623906977105709 -1.327000468883527 -0.2347240486790577 0.11588033357577546 -1.23515349764507 -0.2645507674683493 0.14909227576304845 -1.2966430244055733 -0.17174366758120158 0.24002445133043784 -1.4367074727826776 0.01194974256154195 0.8837452523949951 -1.2424218737445516 -0.05282842681981477 0.4991867137495101 -1.0377289650147066 -0.019793652218094197 0.13656986340669702 -1.1618474961759642 -0.006602496252144059 0.0889816322273553 -0.9998364891007729 0.027447659822576995 0.08622916131858042 -1.0376212698070666 -0.007359342354321202 0.10412000402219061 -1.2167993241084074 0.1643561766603424 1.4201285532585113 -1.1590989187150584 0.2305222532160711 1.634062599774193 -1.0462696757911532 0.17256088066805866 1.5012814807092871 -1.0069541804707756 -0.005049672690758711 1.4294605947292527 -1.2575744945426683 -0.23016566871443084 1.3667430568977348 -1.24536611034983 -0.36868026477135896 1.4188755800154127 -1.0856680107370085 0.29219068759933503 1.2971173554222628 -1.1848089543054074 0.34386089543365483 1.0158798024772868 -1.1722057014396698 0.3549851420149412 0.7729970111865548 -1.1534955918784249 -23 0.38333333333333336 -0.15320342958720126 0.9505003051628443 -1.2023065035166092 -0.32800308931935496 0.5861553167598277 -1.0980298861398667 -0.23526267359368436 0.26053673576777153 -1.31808954064288 -0.27472904125802544 0.13172587829364296 -1.2108478799076385 -0.29677071243774905 0.14975919190586598 -1.2662391339947063 -0.2014742014253862 0.22879400518316942 -1.3984119663024062 0.011076861041888176 0.8857358996454837 -1.2386145564097584 -0.05500554217255776 0.5192488707886964 -0.9899077687950636 -0.015000251927595184 0.14094873156324483 -1.1618762074800704 -0.009495713861107855 0.0933933696521525 -0.9944979402436177 0.009588171215483988 0.07676451647085364 -1.054026358522483 -0.010432511025431789 0.10791699914434513 -1.2134205047372526 0.16783159515262605 1.4122719918422255 -1.1605757181052792 0.23807130005276927 1.6230993806893899 -1.0307694599371409 0.19550860176669918 1.4886718293871493 -0.9975996006412249 0.006733167961374011 1.4367906026286679 -1.2009875232847065 -0.22750335191503568 1.3719004395019563 -1.2511686549815286 -0.37086712668412875 1.4513626962003878 -1.0955706720452472 0.29406207886259045 1.2889577506792549 -1.171737695788612 0.3526388738837512 0.9873635538874379 -1.1596374542468373 0.34253790793822797 0.7688536488637547 -1.1478751962133913 -24 0.4 -0.15647110474696704 0.9537766791827554 -1.2016010485359143 -0.34964010832703774 0.5914482509457666 -1.0876161545748457 -0.2806967058718644 0.25548542571254185 -1.349356414884118 -0.3249640086222375 0.14599037841676316 -1.1673845192903851 -0.3459693123757514 0.1479490162103299 -1.2346682471687767 -0.24008556855915958 0.20321364252679538 -1.3601774169518042 0.02796670740419459 0.878351289873447 -1.194419653510946 -0.06112364138638214 0.521669041794229 -0.9772726640026648 -0.017518807333471602 0.14462609404348784 -1.1580284426928826 -0.0064356217192416765 0.08457594509933938 -0.9978877357099338 0.028089592234691978 0.0862440725898738 -1.0375235447306528 -0.0054583460566253895 0.11548296031230099 -1.2152191566023456 0.17658077164185193 1.4078838656832215 -1.1543079353597892 0.24918048313189292 1.6123822733226223 -1.0201404402443353 0.19956092010682144 1.4830585006552766 -0.9699678829799107 0.013345522990154285 1.4405330070123454 -1.2110477641456248 -0.21463055244793172 1.377776269744859 -1.2327281124476983 -0.36499183294157095 1.4610199110116866 -1.0818814798193435 0.29818841260219725 1.2835092395204073 -1.1615992795147412 0.34660090436140745 0.9986156971399837 -1.1569206563091097 0.3376089068621403 0.7604337481856961 -1.1312942248586524 -25 0.4166666666666667 -0.16136552103755003 0.9503917307960272 -1.1954820297236979 -0.36221266174665856 0.6110654558024982 -1.0680828668556155 -0.3004307329074687 0.2381732176015153 -1.3041272073340635 -0.33273794456021 0.1460726507987474 -1.1640409773301095 -0.3854452500534556 0.13412205274477634 -1.1929404311334115 -0.2679271454266607 0.22467587876180298 -1.345728571237243 0.030402892357568104 0.877404666884872 -1.1813210549098565 -0.06262273513946638 0.5283361228956965 -0.9551723303292106 -0.015660393692863192 0.14782487557824878 -1.1578199087717231 -0.004303922985395844 0.08206041860522469 -0.9973189210049164 0.029822609746149104 0.08474199848863537 -1.0399649413628882 -0.006730834373296166 0.11771679817508598 -1.2130547500236775 0.17898591370803166 1.399990571153377 -1.149887481897164 0.25948732331742314 1.6093230831362852 -1.008595161786327 0.2111963773280891 1.478832513223668 -0.9687250554041964 0.015264999921388443 1.4332746296244525 -1.193085048556623 -0.21495064505864497 1.3791446726806298 -1.23711804532455 -0.3661631057908753 1.4662323379295341 -1.0697927355597798 0.30625480877525646 1.2734531950090702 -1.1592913620775251 0.342489571265359 0.9882311011341274 -1.147303688950533 0.33735899320905854 0.7379703957703109 -1.089129105493862 -26 0.43333333333333335 -0.16190075042091467 0.9536575370090824 -1.1897124738860494 -0.3751738988069836 0.6196844481038006 -1.054762869131176 -0.3253883768626642 0.23025364484624775 -1.292789252882932 -0.3592554015808916 0.14260469781791849 -1.1448393748128736 -0.4150083390322238 0.14972692683835506 -1.1822627414134619 -0.3115490762456276 0.21772837608524817 -1.3134545197102196 0.029318639221881947 0.8765265960677548 -1.1746098706185615 -0.06359434698911914 0.5325663071042921 -0.9476111202056661 -0.013182079564920854 0.14816136794670992 -1.1563190891807555 -0.010270507225405666 0.07981920052738241 -0.9979496554104944 0.026030360206359873 0.08092324693681033 -1.0348440087471937 -0.004581399592606593 0.11777024242762052 -1.2121825037411722 0.18513385547227837 1.3965566598016452 -1.1448156100083569 0.2719164403790693 1.6034688863913635 -1.0095879529002003 0.21310896096359294 1.47636851250499 -0.9529073807495128 0.022567556594051266 1.4318207313263134 -1.1847782975618548 -0.20769413578908613 1.3844193080710074 -1.2280710233605319 -0.35580136048425226 1.4755843838476432 -1.0808214562720768 0.31058292308297536 1.2685755905172613 -1.1520749354854594 0.34634294448052044 0.9857347311096246 -1.1460877446746607 0.33517363624907 0.7276781986954814 -1.0838492833424027 -27 0.45 -0.17295286626953885 0.944031701012532 -1.221444003916658 -0.38360964526990604 0.6261120342413499 -1.0562283638313925 -0.3850063573651565 0.24032392962175525 -1.2424994183933362 -0.42980607551205585 0.14030918203905102 -1.1072533542041314 -0.4534019265940688 0.15627680287595752 -1.142153561712184 -0.36397039194258096 0.2102909735397375 -1.2902796966447567 0.022637936394064508 0.874666093948992 -1.157055610000485 -0.05940797929356371 0.5299701619208708 -0.9372078656616317 -0.009819679961701716 0.14973886357626556 -1.1564283635633803 -0.01074960223487508 0.07967529168188729 -0.9980512381036117 0.023777223634463853 0.08074612919227649 -1.0326055037291337 -0.003407306880402927 0.11884172327161359 -1.2158230809047248 0.19384215041143693 1.3892855109215276 -1.1367404602495415 0.29428496450298575 1.6112549572547028 -0.9653608443960007 0.22415801273649583 1.4767807718435468 -0.9511439521318785 0.031110159460002337 1.4299749241778972 -1.1631647268333405 -0.20628527231715724 1.394342658428492 -1.218545436658705 -0.344259387722651 1.4868193687808389 -1.087116109679781 0.310168010850374 1.2625712111851228 -1.1421632270213817 0.3441779189760673 0.9788553554717738 -1.132917442651413 0.33455527877437874 0.7167616779055122 -1.0693756968750598 -28 0.4666666666666667 -0.17610181094272087 0.9423666116491389 -1.2125615350582115 -0.3980693030588719 0.6219279586741867 -1.0532009457521216 -0.4206392725342712 0.24920111734601724 -1.2252483286035551 -0.4454688200632364 0.13424328398270458 -1.110747571157995 -0.5041722140425623 0.15680459586798207 -1.1256766882063654 -0.3896354494064624 0.21201696847904294 -1.269542836821986 0.021211194939689627 0.8707381098770958 -1.1475160961132387 -0.0582708569324528 0.5284813736705039 -0.9365449673114412 -0.008494037386000162 0.14404297849445613 -1.1535993912380706 -0.012089914448260552 0.07895526165879212 -0.9918100702701037 0.018908918386366436 0.08121015428060425 -1.0284920487132778 -0.002516504311088732 0.10742150816246787 -1.2100878748741053 0.201414500855638 1.3821528894933426 -1.1339739888383507 0.30315105063710274 1.6050438666248619 -0.955081512236675 0.22476425711952533 1.4671630382002512 -0.9479339044457294 0.0369378795694115 1.4257113026779356 -1.16188455381378 -0.2028265446818664 1.4023195799715111 -1.221438148958553 -0.33801516994822667 1.4961111617848235 -1.0781685244960622 0.31491264013106374 1.2552690437596952 -1.1394010662279845 0.32741533031510794 0.9706584492126237 -1.1467774380464784 0.33258885078789197 0.7147998579778916 -1.065100145821762 -29 0.48333333333333334 -0.17681961870712798 0.9557513798690176 -1.1588074903803307 -0.4134755766517952 0.6288582673570619 -1.05347105484527 -0.46175741996760905 0.25362636192847543 -1.203191091780095 -0.5107538274170587 0.17763874214137343 -1.0287302737072972 -0.5409306772128708 0.1709051933809019 -1.1103379639898352 -0.44344845751161205 0.2254270665253518 -1.2465584677011092 0.0230306238512351 0.8738194651617313 -1.13752482334864 -0.06184800787004371 0.521958398011059 -0.9277005452830759 -0.011540758315511965 0.1432220419836527 -1.1579484072431638 -0.011921005091518149 0.07854866048893369 -0.9924622332018159 0.024080991356552776 0.07700332960771553 -1.0343555887077844 -0.0016812154340485668 0.11284547835388496 -1.2115728524211073 0.19862601972721852 1.3767869812090519 -1.1172972727598627 0.3134166631240533 1.5997444825577616 -0.9483827650743154 0.2265831500660891 1.4692616434232624 -0.9358836031156091 0.043795820103504114 1.4279793889710228 -1.1436353472732357 -0.19932846484623334 1.408905941673324 -1.2248343603716767 -0.3350140780265314 1.5087845088490568 -1.0759657609248097 0.3148512112265327 1.2503322211324293 -1.1401648344147854 0.3416259238729897 0.9638749339729977 -1.1201006024880875 0.32914821230488434 0.7085740521262763 -1.0525778106203563 -30 0.5 -0.1727404153950397 0.9594769190116588 -1.1457610445303599 -0.42006006136208823 0.636384763783199 -1.034449523493781 -0.48377137861073616 0.2550226894552157 -1.1953403422917401 -0.5354683857253257 0.16426524430830047 -1.0505904708481253 -0.5694264521091786 0.1761475758823273 -1.0953267142804013 -0.4832163141666758 0.22915644943699517 -1.2345034955969958 0.021731709055145165 0.8722684556910343 -1.1325500324740758 -0.06256744329834912 0.5265869788274813 -0.930683950472508 -0.011781441088796207 0.1395215767237061 -1.149182716798407 -0.011244276239171647 0.0779452301973172 -0.9980221054464901 0.020507818003662578 0.07785469692276904 -1.0305271489110615 -0.003421343321314759 0.10635716595941369 -1.2051458627612104 0.20889559802640373 1.3676667659355477 -1.1116859197276368 0.31200857605050003 1.5790160253240475 -0.9696196511150179 0.23584922150100898 1.4624340617888272 -0.942205762663397 0.05384613331744388 1.4206890615223697 -1.132358490778297 -0.19193546635203973 1.4194050192852463 -1.1948408639823451 -0.3284349506315672 1.5138415792565352 -1.0776913370055892 0.320075187216417 1.2407793548027855 -1.1365890016851854 0.32253211166720774 0.9559280892890628 -1.139334450402965 0.3312130497854005 0.7045243152679693 -1.0379044413743694 -31 0.5166666666666667 -0.17423973962685688 0.9627854594376147 -1.1391212059058367 -0.4368529519277199 0.6413662997186599 -1.0144673530043964 -0.5222985378248944 0.26572415161185065 -1.1697252695529827 -0.5623693243977543 0.20795541139333784 -0.9936791077403127 -0.5978427092959073 0.1926769163635207 -1.0823818869226156 -0.5150265461745203 0.23266765212757023 -1.2072953948324239 0.0016033038233353837 0.8752044504199913 -1.160613831808441 -0.06896358120192 0.5178113861400032 -0.9278428813572388 -0.011940739996398815 0.1399975505776477 -1.1528946972137601 -0.011887992595934302 0.07839960241567898 -0.9980057938404461 0.022466042811891677 0.07819435183131365 -1.026375537921931 -0.004278995329844479 0.10716799750116643 -1.2085938631733448 0.20924327153342995 1.3625218368864502 -1.1058809995859704 0.33240578114678765 1.582165992381437 -0.9320235730980431 0.24704815724437312 1.448654590567105 -0.9334500888533956 0.05762332562349346 1.4215433427707496 -1.1232442357053543 -0.1871032451666924 1.4208926656530068 -1.197190165541717 -0.32015091792495326 1.52860261100047 -1.0807699263831176 0.32149498543697086 1.2354638315047526 -1.1281293399114767 0.34127929178685223 0.9524294506981897 -1.1100102254322453 0.3293267242947959 0.7035589567236351 -1.030714377320915 -32 0.5333333333333333 -0.1812739635952055 0.9597884896126313 -1.1292089474389497 -0.44692313114261895 0.6569431776963335 -1.0044599995997026 -0.5482834730715784 0.2838257766738819 -1.143338128362046 -0.594762173265419 0.22205506583572734 -0.9833598637436499 -0.6221069247079462 0.21721970161703402 -1.0597378404662914 -0.5415510287595218 0.24621136007565833 -1.2018746654490065 0.018035819345095235 0.8655218015872921 -1.125009815426755 -0.06875156187959401 0.5140206256229101 -0.927746193542807 -0.016425400359917235 0.14260277974179333 -1.158756981678815 -0.015471923415110424 0.07638726580782426 -0.9989004445645084 0.02193321303941721 0.07764685729138684 -1.0358262307002384 -0.008638658922368224 0.10817442534423424 -1.203159333407788 0.21685673010426873 1.3623764033994252 -1.1013251914806808 0.33309240425564524 1.578605050033228 -0.9287907567333046 0.2488772012968319 1.4420931837459456 -0.9138016635205563 0.05982012221620222 1.4153306470467557 -1.1245654589857321 -0.1820422118404818 1.4285827304338645 -1.19959662807776 -0.3158026613602711 1.539269540433258 -1.065927030877496 0.32617467608964174 1.2302702510389218 -1.1296538752010294 0.34529461133812805 0.9423128551376886 -1.1054943253445313 0.33094016762408335 0.6981487582301349 -1.0200904015129963 -33 0.55 -0.18561375305846592 0.9621402237304517 -1.1196883515689717 -0.4531295067328929 0.6678522354754629 -0.9970490282436704 -0.5718033056323366 0.2898670200398182 -1.1301145966731259 -0.591294870542107 0.19354059703397672 -1.02070105566898 -0.6463506359537085 0.22336993841642747 -1.0425216470963816 -0.5799057938481788 0.2520688794017196 -1.1890246731401672 -0.0020992519217038212 0.8730431662728673 -1.1571245105694496 -0.0684554747304848 0.514124000664457 -0.9269942199811281 -0.01325234658379601 0.14341526481969 -1.1612266329881642 -0.0052510143934951055 0.0773763163776207 -0.9992815158102051 0.024905583774887618 0.07873571437657231 -1.0324957962742314 -0.003248248895911033 0.10739678941426282 -1.2100180501791804 0.21521073790708758 1.3555413593575487 -1.0895941803477285 0.34819054230607016 1.5716644579572296 -0.933965364442624 0.26038874928870176 1.4236561350778099 -0.9055054019230965 0.05922213916998223 1.4148421354120222 -1.1051005513912677 -0.18696891592990458 1.4315142939893202 -1.2044795018469985 -0.30160830134582967 1.55377597948301 -1.0576326218161902 0.32806254644862803 1.222435709720485 -1.1190291752424908 0.346460784852863 0.9310979619872988 -1.099376314064895 0.33316398380357826 0.7080518288221529 -0.9854078670697767 -34 0.5666666666666667 -0.18679058488479067 0.9652976917463243 -1.1134647335830887 -0.47035860909836397 0.6540290596613654 -1.0261215902984022 -0.596170979547685 0.29961216867146034 -1.11563948659516 -0.6523205265251729 0.21977031299108815 -1.0270761208625585 -0.673201704627609 0.23829288489490436 -1.0399095501241755 -0.5956693915915078 0.2633085544437803 -1.1545120914151896 0.008993659030831894 0.8637617261876982 -1.113151544199651 -0.061158357057732614 0.5152073304451131 -0.9195061250661768 -0.013198005279722202 0.13986851831443275 -1.1580744232812834 -0.008639274933683265 0.07654667151302157 -1.0022920771736414 0.024625126459350385 0.07862660726949038 -1.0324812522729119 -0.0032824418330138208 0.1041266326381461 -1.2078299384556381 0.21660474908224422 1.3552921743182977 -1.0850546301659794 0.35516119493374054 1.5587509611136603 -0.9219790889902255 0.2699330845363205 1.4221122934995725 -0.9155385122118018 0.06768351603661882 1.4164012360125333 -1.116947589145655 -0.1822144601205588 1.43617108669486 -1.1848365437567758 -0.2933610985442186 1.5605509076269672 -1.0494065803281227 0.32659499436520684 1.218901784386431 -1.117129749853632 0.3467184639158635 0.9282498231646178 -1.0940731801126737 0.33406957015053274 0.6868022129025948 -1.009050511872266 -35 0.5833333333333334 -0.18699806625068097 0.968267085301281 -1.1081376604784154 -0.4726156198778934 0.6630057358662724 -1.029988787387046 -0.6172515599960109 0.304733203382361 -1.1088786618172177 -0.6298423588424431 0.20747147563818596 -1.0095756330892818 -0.6921146971390602 0.2500687838782627 -1.006064668357879 -0.6221091084642156 0.2823129514596113 -1.1502319120655022 -0.0002553710179059614 0.8608607262449121 -1.1049452131880353 -0.05613079480256772 0.5013813613155083 -0.9102815882201154 -0.013381152579629923 0.1388718081292071 -1.1571425146838283 -0.005364362075810828 0.07441466347872014 -1.0026302024128013 0.02065085554254763 0.0847592294480562 -1.0298958409395704 -0.006077221656278023 0.11338668932445244 -1.2144374367362503 0.22417100110662375 1.3453703857543016 -1.0744349170920764 0.3640442585612386 1.5498399424015077 -0.9179073780951135 0.29297675406700585 1.4040880477052944 -0.9091760561776977 0.05745757326522659 1.4027790064319257 -1.1547814668934626 -0.18889122531043587 1.433157851621838 -1.2325887445218124 -0.2813328168146149 1.5731352568919184 -1.0464615662697168 0.32770423733926834 1.2159586019931046 -1.1146465762326958 0.3525651989088758 0.9194030655244287 -1.1050515853175935 0.34027957794456143 0.6795664556276649 -1.005413288865315 -36 0.6 -0.19141578462316852 0.9686439015383193 -1.0930446711748814 -0.4803428492958248 0.6739756765209298 -1.0091171089774682 -0.6385341919385319 0.31684860519195535 -1.0890437367333072 -0.6903231074834895 0.2562185796256389 -0.9379275244176064 -0.7084163176911216 0.256159222870489 -1.0141585753952473 -0.6418563267916692 0.28403518732576133 -1.1357508496915172 0.0071143255026734475 0.8626529721589785 -1.0872953029656416 -0.05427358713622272 0.5069939016187915 -0.9150923915971904 -0.013670202073908773 0.13859773120607566 -1.150707591653167 -0.006599887217342326 0.07464860775095697 -1.0054713395785655 0.023653658387226016 0.07600720315688575 -1.0383319663893178 -0.005639056148144388 0.1060801802247114 -1.208111218645037 0.22154093511109124 1.345315203534818 -1.067352212202041 0.3685098512212576 1.5430488337641155 -0.9159611627637615 0.30449989947781403 1.4002624219586783 -0.9076186639741173 0.06607743290990883 1.4061094800391023 -1.1460096529679626 -0.19081081771015201 1.4388272052849977 -1.223264474782268 -0.27382788714697376 1.5848143325892077 -1.0408739138505505 0.330367173762349 1.205553474120624 -1.1103238112504883 0.3597340265119405 0.9122521418096537 -1.1001504175155001 0.33971793732537126 0.6776955233262508 -0.9975340434675404 -37 0.6166666666666667 -0.192422132963265 0.9716598135292464 -1.0874922978785524 -0.4893040554402285 0.6775772730375321 -0.9953869902399853 -0.6526178963195413 0.33366832476334474 -1.0778295561614049 -0.7089325049622893 0.27329562055730927 -0.9255860266274212 -0.7334699838936838 0.2749781183640608 -1.0005829790098364 -0.6596404974892264 0.2943118527921192 -1.1197817015631029 0.002382883477276319 0.8598766958499698 -1.0860469247233877 -0.05551946158554533 0.5106882075386794 -0.9082941301755336 -0.013420420102252353 0.1424002555197691 -1.1513916245122746 -0.0074906126204258155 0.07666825460825592 -1.0025311938333448 0.023589623372682306 0.07628260247639185 -1.0376783188357677 -0.006361401194239526 0.10885928977524395 -1.2041113452737517 0.2264696101201084 1.3375780828028105 -1.0664575178055342 0.37895531734962185 1.5341360131669892 -0.9093014566837578 0.30502112023134936 1.3955644862229282 -0.9080015044853174 0.07446612450557136 1.41772886497173 -1.0928760314490022 -0.18549181601315937 1.4422789333482493 -1.2066130795164502 -0.263030877217332 1.600276314128666 -1.0267361559138781 0.3426861428861896 1.2086251955687781 -1.0651504783933263 0.3598057952123763 0.9120500492878503 -1.1000333600668177 0.3446252012323341 0.667181286082198 -0.9941397488834375 -38 0.6333333333333333 -0.23474223883714096 0.9416913362889547 -1.1663734183460812 -0.5081297671181522 0.6851390136742737 -0.9975835545312951 -0.6893301963876608 0.34928550910835005 -1.067405385511001 -0.74916998099157 0.3025811439834367 -0.9555251482493924 -0.779640415743941 0.28720815010253653 -0.9871248688106494 -0.7038217493710629 0.3057141018554752 -1.1051255555237047 -0.025121591015071075 0.8660929903089898 -1.1285517440635673 -0.08575890557974651 0.514511502859404 -0.952858011772751 -0.022605344855223284 0.14740674825714462 -1.168582175291215 -0.011881890041656675 0.06757777352286154 -0.9989030242783097 0.009366781418748034 0.07417723011554903 -1.0462623012679257 -0.014298316531628037 0.11606046843831236 -1.2206210808825897 0.23003893745117654 1.3336794579228608 -1.0599412206441292 0.3843012752249844 1.5270232291436012 -0.9075704685741098 0.3051108456864937 1.3914169677839 -0.9042400489018544 0.07289890433414517 1.4026768523933888 -1.1198905108805812 -0.18163186735296474 1.4492650109704046 -1.1859137128938793 -0.2510332880653294 1.6087485081167048 -1.0135958051752039 0.3401705687219157 1.2076686862358066 -1.0611466105125016 0.36410588622949236 0.9043000537658876 -1.1002090389102193 0.33704637408618626 0.6559070432880463 -1.0090846892115681 -39 0.65 -0.1925093308067601 0.9702004661311261 -1.074021614616778 -0.5061772035482709 0.6952020879609286 -0.9716654875824131 -0.7031521482598698 0.35821203184014555 -1.0420310533550063 -0.7533083674839265 0.3028740082008201 -0.884322120934453 -0.7842628860494515 0.30580514193427355 -0.9656830317483424 -0.7199775851209786 0.3231165135621684 -1.0860275919821745 -0.006037434593096416 0.8593318575213189 -1.0838450667232213 -0.06271351993334526 0.5040042235151608 -0.897480960230572 -0.013816097357382354 0.14233322235220983 -1.1522931821269529 -0.0072716914362701305 0.07667697527786393 -1.002535829974086 0.026913205002484977 0.07749507814490474 -1.0343097274867505 -0.005597221879280876 0.11563107418024411 -1.2099504367676557 0.2338815068621666 1.3320845852610708 -1.0586250202278331 0.3860720546853258 1.513895341822942 -0.9339783718007847 0.3157495906820158 1.3868269283185426 -0.8979299386084124 0.07711185629474124 1.4028446509125307 -1.1073906942764125 -0.17638160326579766 1.4589056812455177 -1.1823467383163817 -0.23094531883683628 1.617950652201606 -0.9943012658175654 0.34074826541699377 1.2045932900327951 -1.0659247238172374 0.37101453563422027 0.8993424472347531 -1.0968456845616983 0.35610046052682337 0.6551719985217535 -0.9903016059672209 -40 0.6666666666666666 -0.19342678221770482 0.974325879287263 -1.0759623528310336 -0.5155339165731517 0.7000088584709944 -0.9553102710672479 -0.7266724677124599 0.37717896959072894 -1.0211982558857073 -0.8070426779475209 0.30500888325349457 -0.9408662452863952 -0.8041585022573619 0.317743186366165 -0.9510882716885 -0.7355067545942496 0.330762151299901 -1.0705141867687347 -0.030028061668865375 0.8663961916561835 -1.1228791144440262 -0.06868582352295322 0.5079609279356498 -0.9007759050954812 -0.014405228133581185 0.143305053830451 -1.1521928126512242 -0.008522843451303913 0.08084523738715335 -0.99544893850476 0.023213055473802178 0.08144214144748417 -1.0291611284248172 -0.008300335389197909 0.11852859315002696 -1.206477912218464 0.2373714303483489 1.3256201290986334 -1.0447294020915163 0.3942299908110144 1.5109118945349782 -0.9207350086677644 0.3174877287573627 1.389559066064135 -0.8858927173054169 0.08011887084852418 1.4010121717282595 -1.0936087181384329 -0.1775151118853675 1.4644633915736631 -1.1624331774743013 -0.21697114435283263 1.6290943736188073 -0.9837870996776575 0.314813249173797 1.187873317366102 -1.1333623810571747 0.37415018789652327 0.8924140239300274 -1.1041597263870733 0.36387715001205906 0.6470416104884834 -0.9907052550909855 -41 0.6833333333333333 -0.20106000672928856 0.974270966445796 -1.069397239861186 -0.5142931011579371 0.7089058728282466 -0.9513719421492095 -0.7467838983778745 0.39066279942589 -1.0097802361133774 -0.7899302737383002 0.3390730527988982 -0.8467529635750312 -0.8080640677350831 0.31631439777036924 -0.9276530133613654 -0.7534337282110302 0.34961927782219204 -1.053505186150924 -0.03879861950610314 0.8594863537375041 -1.1141696372752568 -0.0697534735038319 0.5120748774482664 -0.8934554306069418 -0.019989185142025127 0.14671727465108228 -1.1470676694317032 -0.011973401422598156 0.07751983953063737 -0.9953408715820908 0.017677230032285884 0.08244015640010628 -1.0327456484682043 -0.01573570806390931 0.11996504413555761 -1.1989618927075543 0.23303243081744957 1.3207473962528975 -1.0424247005312957 0.4031969847411088 1.5003335793452246 -0.9339497134157035 0.3270178158258301 1.3780694792529786 -0.8916794516161282 0.055091910111805954 1.395025796765451 -1.1188327934618028 -0.17272033772194645 1.468985270295364 -1.148498283129172 -0.2042688631848465 1.6355001289403095 -0.9678169044932214 0.31485627806192074 1.18790019056633 -1.133297868217504 0.3689525926170396 0.8973296589696369 -1.0928946547685612 0.3697640022726033 0.6504277518261988 -0.9921039344299473 -42 0.7 -0.20260108248119504 0.9792002721225672 -1.0524783791727486 -0.5147280287378875 0.7164015073560992 -0.9365682343173946 -0.7647793283529623 0.4025771358593114 -0.991515785556975 -0.8108353884161044 0.3586296614546268 -0.8231808515255484 -0.8244367130126895 0.33556805577821935 -0.9256768611865149 -0.7689709521072372 0.3727990581646467 -1.0305393721614033 -0.03872065901582727 0.8644189072967806 -1.1183299930952775 -0.06968625341846774 0.5118013789980211 -0.8934612585410622 -0.021518881284144694 0.14681808654910455 -1.1504447849367199 -0.010026450864953485 0.07779502542882276 -0.9915803702318706 0.01789383348803887 0.0825569653036748 -1.0318245396945196 -0.015886629869224615 0.11731195732124108 -1.1955451039729597 0.23735235765570245 1.3186474517111315 -1.030749023995214 0.4129262902986908 1.502150017700417 -0.9347032357948688 0.32831909290661115 1.3752780033502516 -0.8759168159946745 0.09164094832094882 1.407055238141898 -1.026339668708492 -0.1760630557442085 1.4733633232555656 -1.1282180092707932 -0.19522377824707884 1.6403906815086053 -0.9581651650539706 0.31488207424774056 1.1878141666164204 -1.1331453379526386 0.3729313861348884 0.8905681776201217 -1.0998404294880646 0.37196686361840603 0.6432653172530115 -0.9914799056746813 -43 0.7166666666666667 -0.20305037600184925 0.9792580089880532 -1.0522318112411637 -0.5247642446558703 0.7275073583168159 -0.9229518876600024 -0.783742842127078 0.41586362871704097 -0.9613076299833331 -0.8292801135752228 0.37631309218663933 -0.8109741932697311 -0.8413497615719556 0.35738718797690655 -0.910472832478645 -0.7884014163412313 0.39808057367488164 -1.0278446609099028 -0.04385053031208737 0.8592015280091885 -1.112168601896651 -0.06919335248726032 0.5108997505237527 -0.8943825414031632 -0.01441379282004244 0.14324886900019226 -1.1520347543177667 -0.00830311282124666 0.08130056321654329 -0.9954445833016871 0.02245658565920422 0.08114310585879585 -1.0325765806909082 -0.012245735760559692 0.11517725995841892 -1.2010368007351244 0.24707840793035282 1.3249709619056287 -0.9837413249436664 0.411802286565618 1.4985243770952992 -0.9143243131827076 0.32877171055031773 1.3659326113571644 -0.872232000963998 0.08264319585850527 1.3978003172702143 -1.0633595323401361 -0.16910851175525007 1.4782597358061036 -1.1187964750920143 -0.176063304145143 1.647226504933096 -0.9176553778917135 0.3126161568951999 1.183412683651654 -1.1294518529144297 0.37551684311612543 0.8851995185558128 -1.0951945281497977 0.38084427271187604 0.638378627588034 -0.9948226861333882 -44 0.7333333333333333 -0.20172497472679174 0.9791412744974756 -1.0529370234571778 -0.5307704941191788 0.7357362213988012 -0.9087377353769638 -0.7928228058325515 0.4324209966248248 -0.9584720127075799 -0.8381729325976082 0.3821198542521142 -0.812706587023271 -0.8493983046179786 0.363636286562352 -0.9008459479610348 -0.8046569875085966 0.39584901030492725 -0.9958193205154986 -0.05020745331959243 0.8655285389877397 -1.10651421110689 -0.06732515006504042 0.5060071119833002 -0.9007912179571841 -0.014246243059106234 0.1423690442551082 -1.1520357618920587 -0.007215672915382381 0.08025722059171252 -0.9955890795821015 0.023536774966522612 0.07918976257572824 -1.0327043530281863 -0.010144642301296193 0.10959948654430421 -1.202205877658326 0.24829359126716616 1.3214424066341248 -0.9829195649817345 0.41999418184953663 1.5041439811541106 -0.8929808517999409 0.32148396673858315 1.3612049454907291 -0.8473579129219795 0.08257552155072008 1.3969704707994144 -1.0641520222511276 -0.16308708537140942 1.4790779725019911 -1.110483556683152 -0.1613306275115519 1.648584768461574 -0.9044495092461662 0.310543368237824 1.1783818453252437 -1.128527831379789 0.37464082561912776 0.8839030917595563 -1.099246799836237 0.38441188118960873 0.6354117872120671 -0.9949052902598924 -45 0.75 -0.2326212562693851 0.9866803128370627 -1.136899905358417 -0.534155696196409 0.7383151728815118 -0.8992895019300117 -0.7972185888276757 0.4394574223028515 -0.9538792752483269 -0.8389505642018623 0.3857619307181077 -0.7999860582732744 -0.8510469004653335 0.36767910391634745 -0.8953814131405505 -0.815054535840632 0.4085322172087648 -0.9970501545284163 -0.045530037442895445 0.8701512853705429 -1.11202218216691 -0.06816800205206014 0.50737051927721 -0.8892478466093127 -0.014084537539614564 0.1389491902298439 -1.1504078923805912 -0.0037299268397049156 0.07771201784548462 -0.9992546389144982 0.0243294792715504 0.07699629708252179 -1.0365465176507023 -0.010185527226148593 0.10910724486379793 -1.2027203231774621 0.25303946329184723 1.3156124262523456 -0.970415172071584 0.4209533420787853 1.497646892747149 -0.8762203290266067 0.32294407484692184 1.363738447991888 -0.8353526028524697 0.08641730481782198 1.3951111241747576 -1.0545077889043815 -0.17193743322514685 1.4880049815240834 -1.0961061772211893 -0.15362503587423348 1.652835780798398 -0.8996057951253864 0.3104209098567088 1.176011576209644 -1.1162054798090923 0.37933265083141793 0.8942403555934016 -1.0784127626556173 0.39030699675025127 0.6385855500098656 -0.9946032898744934 -46 0.7666666666666667 -0.2421927429392995 0.9865478524303686 -1.124579805057689 -0.538749846382875 0.7446209127673196 -0.8902096725529925 -0.8032507264886586 0.4464160077470487 -0.9464761337690826 -0.8485309279562961 0.405146623063332 -0.779957569575305 -0.8523748411044167 0.3721316092053998 -0.8891303689736219 -0.8282113244230557 0.4229393995627977 -0.9662186208817168 -0.05786058498807873 0.8653768615510707 -1.110212463132601 -0.06796096013216843 0.5137895622710265 -0.8942172509019242 -0.014330025908678223 0.13819359611604168 -1.1460228017817515 -0.004938351805160002 0.07432122051923985 -1.0057060434799874 0.02566949012271831 0.07710529297703819 -1.0337869784041438 -0.008855773827853582 0.11270619062340029 -1.202759489356677 0.24754460057026478 1.3137664660768378 -0.979520752510601 0.430036819415835 1.4943567056822453 -0.8594863523641808 0.3318939002614365 1.356172131491185 -0.8409452831522374 0.08845652568431395 1.3999598396076918 -1.037024181324093 -0.1682178204070283 1.4925037173256317 -1.0737601309981353 -0.13448430820882457 1.6552031067573751 -0.8662653139588101 0.30227513766925534 1.1737127974089878 -1.110381861433075 0.38293214447716684 0.8776177585746829 -1.0941921506908676 0.39943814631683006 0.6348822886168153 -0.9902970165589148 -47 0.7833333333333333 -0.2441469664918264 0.9902617295560321 -1.112275793421493 -0.5349717071663364 0.7488064368685668 -0.8839994208616366 -0.8104419701210459 0.44724968536883797 -0.9350191479862434 -0.8698208420038173 0.4595706587645916 -0.7016695083683573 -0.8992006945301481 0.4697849268773218 -0.742979742392519 -0.821432428909626 0.4395119050365428 -0.9823189009045652 -0.06033156751290627 0.8707905977538529 -1.104466253079358 -0.07002222511289258 0.5090080456263205 -0.9066861269186173 -0.013161073547838735 0.14212382403175064 -1.150142388802547 -0.005354869342277941 0.0751980601549627 -1.0055718616477283 0.02605228282950641 0.07757995774365997 -1.0344183665923992 -0.007723653283391572 0.11797682312935391 -1.2031043372340495 0.2452492008897415 1.3151578051710586 -0.9632982540114088 0.43026107269957425 1.489566334561953 -0.8460499437323769 0.3332871008380928 1.3590201172592382 -0.8287922271400233 0.0936970520072063 1.3976436353740425 -1.0275867776086212 -0.15531637129971584 1.4938405139994604 -1.0426392809026273 -0.11978269266139464 1.6556229706518837 -0.8664706387666825 0.3022074253997129 1.1743454893569383 -1.1108123910457348 0.3875717004818952 0.8820620982053212 -1.0898470789180057 0.40287017197670527 0.6357448809493291 -0.9921284741906427 -48 0.8 -0.2131144048453805 0.9966379291617674 -1.0216013602207514 -0.5364008282674368 0.7517124940945231 -0.8792352303549565 -0.8086198007095303 0.44656099598145244 -0.9288567177967416 -0.8601379510482828 0.45269954976586885 -0.700351590450945 -0.8520822958612122 0.3802929204463342 -0.8663217484026787 -0.8182734224748233 0.44079849101429364 -0.9726650565780797 -0.061341896854336 0.8782208684158581 -1.1045510850417477 -0.07569001558533617 0.5128068134916843 -0.8991282682544809 -0.013482839460973228 0.14344554429488074 -1.1489207084085165 -0.008844653305151318 0.07904237824290304 -1.0023074751071654 0.023380735119183146 0.0816895922950691 -1.0302592143636358 -0.010705268762564696 0.11865126506623327 -1.2007124138248038 0.2477607214171272 1.3156499024551522 -0.9552478311577882 0.4341922403808223 1.4867326046656602 -0.8349113541463608 0.3333350505957854 1.3588753274825618 -0.8286642934631514 0.09053089120059993 1.4031188340222747 -1.0248161408939638 -0.15719639813485423 1.5001471980876744 -1.0254836403679934 -0.11049469866608315 1.6560246113393058 -0.8471946599209998 0.33922493874597964 1.1854185310496836 -1.0132555982011262 0.38697007853705956 0.8792073067663072 -1.0871334400052626 0.40851832178422637 0.6404539354810289 -0.9955647303006889 -49 0.8166666666666667 -0.2493257257931718 0.9943202982161662 -1.1059132545754025 -0.5303830361915219 0.7525664573785187 -0.8701818510258414 -0.8088966546272623 0.45514375883152186 -0.927908661992249 -0.833512027780768 0.4127788277826442 -0.7404703206131223 -0.8468020131248408 0.3778197902475939 -0.8530379853295927 -0.8289479484147526 0.4325025550981484 -0.9529304520991664 -0.06731170175382237 0.8766039024928118 -1.0980175558314058 -0.08026706735346026 0.5132407675546757 -0.8976997656884883 -0.015558222999710249 0.14235898469694008 -1.155880275634059 -0.00567287799272719 0.07916478397609464 -1.0033149533616443 0.021906134780355312 0.07990795714119285 -1.0372373511962492 -0.009592420692384787 0.12051952331430361 -1.2012261318903654 0.24863861748391292 1.3155658121964426 -0.9561187593383718 0.43456307776194586 1.4799025122375105 -0.8242185542321039 0.3352890172600927 1.3522894110788377 -0.8135822472540256 0.08671378659855138 1.39880766490129 -1.0160266907289932 -0.1642776435266737 1.501621269272322 -1.002326506576296 -0.10042738594687324 1.657157027366429 -0.8450651266057471 0.3336400282430991 1.1854227999503204 -1.0046385523592756 0.3830696683514717 0.8805085463645197 -1.0796420179971427 0.4086178304290339 0.6399391845185387 -0.9959247777882012 -50 0.8333333333333334 -0.21826790906556015 1.0007755008305903 -1.002327334005131 -0.5270095521675902 0.7529096353631933 -0.8630079635070848 -0.8002234742895944 0.45718935890594387 -0.9135378709483567 -0.8274761952078906 0.40970875863510786 -0.7281479673971667 -0.8338206766654994 0.37357706254895157 -0.8512719774712119 -0.8233411285573851 0.4333654014245738 -0.9425295550155256 -0.067471073825334 0.8765098264591292 -1.0976536623661646 -0.08109706704012788 0.5169387299417436 -0.9029283872335803 -0.019610785747230616 0.14299228147798893 -1.154768839135938 -0.00651781574239305 0.07938080209001047 -1.0030776793805318 0.02266872325822935 0.08061907871896591 -1.034123922731085 -0.01275913597743767 0.12036496157025675 -1.2006185132647296 0.24794533425012186 1.3155962870748465 -0.9475058515560093 0.43413113606438175 1.4796143605148635 -0.8111342554827351 0.3367106030848399 1.3459281232214346 -0.7981213940387264 0.1011420021271367 1.409606502272892 -0.9593373918174732 -0.1641144106096779 1.5032520224227262 -0.9896032689642159 -0.08723456801892877 1.649775985747468 -0.8088335257570192 0.3033771209522574 1.1791606556795182 -1.0948600598184812 0.38295422744781354 0.8810279793578039 -1.0797879326154296 0.4154625759459176 0.638984724281601 -0.997485643493164 -51 0.85 -0.22527367279640353 0.9990099475984038 -1.007289583208502 -0.519591473302594 0.7516463495122354 -0.8446790003271833 -0.7912096245427246 0.44850908071397466 -0.8953268629785976 -0.8212625308267307 0.40868644420411976 -0.7210095718746528 -0.8391066365103821 0.39090323861443244 -0.8157941248417716 -0.8157799999752392 0.438834340500965 -0.9445574910953495 -0.06948207386320213 0.8868447589646787 -1.096669443502773 -0.07720043994991131 0.5162295125564749 -0.9054480740448532 -0.021173796660463595 0.14683245064533249 -1.1497892453585645 -0.0023674046514404862 0.08182063153661051 -0.995544818957153 0.02492873743415882 0.082291041163478 -1.0328085785666876 -0.01138273955060895 0.1154448049033438 -1.1992244365032179 0.24776174584007288 1.3152696129278874 -0.93441704079204 0.4340169542954376 1.4796722386414376 -0.8108922500642824 0.326565196674565 1.3504641495267504 -0.8044130019335906 0.098927877670027 1.4162848986371546 -0.9551431437351602 -0.16377982460222798 1.506207977315792 -0.9799526208525613 -0.07424221158689276 1.6538150288261033 -0.8038713046228981 0.3053106819959093 1.1818441452757407 -1.083307001430942 0.3829004559285218 0.8817430472086463 -1.07941040027896 0.4150942349425172 0.6396316163240535 -0.9975826101457026 -52 0.8666666666666667 -0.22230790974034664 1.0076520949239476 -0.9970516202799049 -0.5137151663625574 0.7549134382526294 -0.8427579028426613 -0.7762351783740383 0.44373600444839323 -0.8692093859765982 -0.812437508815174 0.4003223238087845 -0.7188015927778864 -0.8149796271268368 0.3709981935616456 -0.8063731174483881 -0.7968503969623733 0.43396639000585363 -0.9346307767968842 -0.06967976777266466 0.8874549203359289 -1.099602673191505 -0.07596649589322609 0.5168761745014724 -0.903998842497993 -0.013355914428671975 0.1443176172754793 -1.1471805119088128 -0.008070269730262475 0.0802820915395537 -0.9987563512480112 0.023594857299439158 0.08256270297315535 -1.0290038957978647 -0.006739194863068147 0.1158452788075378 -1.1984659512600646 0.2445600215776694 1.3162510397340215 -0.9321864123179495 0.43413376900917977 1.479482770540689 -0.810515708129707 0.32850587209643445 1.3446301751285075 -0.7894534711664829 0.09986241453162087 1.4138972570769264 -0.9392527384479543 -0.16588609673690735 1.5092343831449546 -0.9597298447010273 -0.06983113076520618 1.6452095431354206 -0.7872728786429325 0.3073158264608949 1.184825108592526 -1.0737916960743796 0.3840374196847167 0.8843688656312194 -1.0715366127205364 0.4205667579905367 0.6421935838337617 -0.9920616996401775 -53 0.8833333333333333 -0.2263059245477925 1.0022910173594846 -1.0010731075822723 -0.5110049042767748 0.7497934538926421 -0.8448378269726717 -0.7597683630855125 0.4383614641304459 -0.8724567151285988 -0.789988170856602 0.3934189356217078 -0.708304427600439 -0.7975255085824928 0.3625442433910463 -0.7805308635638359 -0.7656177879370537 0.4214170038911748 -0.9281547655888833 -0.028610460260297798 0.8804218355648349 -1.002882886712971 -0.07266650540060915 0.5213056594482894 -0.9102698347647132 -0.010410738992797687 0.14640996180175775 -1.1469966346254423 -0.008596337648628046 0.08001042201815882 -0.9992463302742174 0.024311976912477978 0.08335263616969858 -1.024682438296562 -0.007450601796040826 0.11497749004449849 -1.1945885975609094 0.2427780763493984 1.3191949830285268 -0.9282628134584573 0.4267466544156512 1.48680893831775 -0.8018824673600536 0.32777063055015965 1.347857941419309 -0.788739358540331 0.09596543089083248 1.4200347364664097 -0.9304479123513067 -0.1661310063599884 1.507437001696517 -0.9459240711144957 -0.062487753595746764 1.6382000242820276 -0.7740718108138309 0.33140551073377755 1.1915304804842861 -0.9795054658659126 0.38787874203764816 0.8842446654369508 -1.073700368333641 0.4215152313248652 0.646281554100661 -0.9924641860459749 -54 0.9 -0.22207016613698663 1.0040120516941984 -0.9924560791402669 -0.5020750789188568 0.7440936058713009 -0.832429617298307 -0.7518326094224997 0.4298471750458378 -0.8722720284623589 -0.7975440686660035 0.361623206540303 -0.7869705316443825 -0.7741336035004913 0.3464247983556865 -0.7843288476435625 -0.7551302090890438 0.4034007307791824 -0.8797262891413166 -0.07110255136763954 0.8931125059855544 -1.0948710036473797 -0.07052822604252403 0.5178460785403896 -0.9159954736540322 -0.010147816764723832 0.1468313944813507 -1.1455006508690013 -0.009602371318216446 0.08255912463082403 -0.9961948677115998 0.02457155331552682 0.0899838463065677 -1.024216612192011 -0.0056397284132275235 0.11988268381850317 -1.195316266261124 0.24111563637150518 1.3224423741587177 -0.930769424976299 0.42403394442155407 1.4860425408254474 -0.7813771310880384 0.3270247892048219 1.3515041060161428 -0.7880222563088765 0.08720387724600712 1.411434110696725 -0.957582264606001 -0.16870337925453663 1.5062719369720872 -0.938936670348987 -0.06805922067782287 1.6315379172809898 -0.762177490308876 0.323196400084535 1.1895745768865114 -1.012899953076494 0.3860335149701155 0.8940628643593344 -1.0653439589057117 0.42592646335734985 0.6437459125196247 -0.9809786990228512 -55 0.9166666666666666 -0.22940729677177749 1.0043634383687012 -0.9855398280156267 -0.4921973507862584 0.7406270897682982 -0.8249314025936982 -0.7231209273873382 0.40943858050336196 -0.8504738233639909 -0.7131441710999931 0.32078085518415256 -0.7329301370794632 -0.7598602384002096 0.3318165087428813 -0.7715546710196961 -0.7453803226195118 0.3825717836392095 -0.878814333979658 -0.07545852706004234 0.8937826926999403 -1.087316204787642 -0.07073537785132152 0.5180202031456537 -0.9160654704740705 -0.009996077232182318 0.14764448444565978 -1.1434130235235338 -0.004739228787961288 0.08262937692401795 -0.9990159187552363 0.026239550976651174 0.08467969157397698 -1.0262507234670202 -0.00027943288412211447 0.11303049153551543 -1.1915486568896927 0.24121993961893287 1.322459261806912 -0.9311017421998523 0.41714371257441674 1.4873143943232818 -0.7798977765133773 0.31883559528605404 1.3406536441874153 -0.7761249641105252 0.08566591398109918 1.4295295780922863 -0.9258665694043856 -0.17063909788629014 1.5106173165574934 -0.9227491707779117 -0.06802567633884937 1.631325421588556 -0.7484541975631096 0.3226621000556339 1.1864163545577937 -1.0107423738190602 0.38875330162624483 0.8949154847006452 -1.0590750756674583 0.4265984672269154 0.6614560935285431 -0.943355721829717 -56 0.9333333333333333 -0.2256225530768317 1.0023882352473021 -0.9910318065003486 -0.4887718547209479 0.7312505675778234 -0.8151412112055179 -0.6920243885927818 0.39543718993867 -0.8550048734205434 -0.7415759274976544 0.3445432737884277 -0.7710042433585642 -0.7245452598236751 0.32764305557559803 -0.763611191392413 -0.713232023147872 0.35956897663568577 -0.8919021481604539 -0.06687778869769183 0.8965257288910962 -1.0925906675564305 -0.0740950553148137 0.525143002372301 -0.9139905529264414 -0.010734406731264442 0.14780192017877763 -1.1462627406732369 -0.008148509051113731 0.08352683991142555 -0.9953063387067431 0.02410974131688268 0.08721782023189863 -1.030863093588051 -0.0006157110859666886 0.11373407163306258 -1.1948011211704277 0.21576900112407854 1.30755919031002 -0.972853457762553 0.42498115809737425 1.4876224525887585 -0.7725688517203777 0.3197677928845274 1.3467241294340044 -0.7642169603717736 0.08216728459037433 1.428183970892778 -0.9221045224609368 -0.17784898953733616 1.504427972804362 -0.9126677524482891 -0.06730006426454135 1.627124752093898 -0.742036094661011 0.32195949752457614 1.1941615179643907 -1.0050921338529049 0.3814666456926454 0.9022482541811285 -1.0465979206339653 0.4265561126826594 0.654521271799181 -0.9720943351809465 -57 0.95 -0.22621384994303784 1.0058862834746776 -0.9851851874102813 -0.4646408790345003 0.7184288527161174 -0.8093561218260402 -0.6632365672552087 0.3810006752513079 -0.8473358752578267 -0.6340081123698387 0.3094175045884581 -0.716153101018337 -0.6934034608922516 0.3156386145291406 -0.747298073049964 -0.6846133592677931 0.3418489322632778 -0.8846462512501737 -0.07222489865913925 0.9038075964757424 -1.0912583008158088 -0.06814154674482692 0.521784229922819 -0.920958688814723 -0.013539733738740877 0.14454652423333575 -1.1475462108158336 -0.0065311716557968505 0.08254143439049327 -0.9956352170522677 0.02358932046549553 0.08807360593257299 -1.030264171573719 -0.002404201459838789 0.11307315271404274 -1.2015993701369245 0.2259194969298363 1.3116947612685665 -0.9406713523711147 0.4158151192738573 1.4829840195009658 -0.7623949499205122 0.30147489574843145 1.350564364161517 -0.7458044042162938 0.08162338915541806 1.4273405860403503 -0.9006326230208717 -0.18418893551344523 1.5039690111154902 -0.903867342812417 -0.06630136350099898 1.619584008277889 -0.7311775845086914 0.32068390430191995 1.2040930135650731 -1.0021898986517375 0.3830191240861676 0.9137757133643962 -1.0479828411397443 0.4315143392479579 0.6753797568793419 -0.9299414508093066 -58 0.9666666666666667 -0.22384671506456133 1.006454646873298 -0.9752313497859927 -0.44367996580410346 0.70946129713164 -0.807644662692069 -0.6304175684324114 0.36301317994562726 -0.8324221340796224 -0.6158895363525034 0.30732301944256 -0.6707692263592867 -0.6712851564864428 0.30444257708049316 -0.7120803994796142 -0.646446259143529 0.32084942353785334 -0.8807220180851196 -0.07162476871448477 0.9024620578288568 -1.0812058414754986 -0.06600036103768347 0.5198123344998311 -0.9203217233699686 -0.01348359478414343 0.14247800437942598 -1.1490677877098558 -0.003475268336027075 0.08277731586365458 -0.9980033144314332 0.02570693502742735 0.08645383746644957 -1.0285306111836998 -0.004264317569259472 0.11502921696076643 -1.2051551645664245 0.22415640941436632 1.3153811320312179 -0.9319141443771993 0.41263401995469495 1.481081172523295 -0.7569294440793416 0.3104815613786633 1.3486552228367834 -0.7548551894538741 0.07016100252205522 1.4183490300600663 -0.9328521318405116 -0.17766123918735757 1.5071442561242596 -0.8881391242729936 -0.06692623524624805 1.6104713349215578 -0.7195451749170471 0.32426048002842306 1.2036790304870246 -0.9960032678040018 0.38940894815752236 0.9106311194102626 -1.0459029414521526 0.43752811672195213 0.6774158689564976 -0.9164902614557894 -59 0.9833333333333333 -0.22453013132298785 1.0042579658956277 -0.9865748761516782 -0.42542620383168706 0.7030639651518336 -0.8115846161620236 -0.5935893685722963 0.34210409638023254 -0.8318786271844264 -0.5904576597095775 0.28299632416637244 -0.645690943601689 -0.6299930512631783 0.28138132067252386 -0.698423172536851 -0.6066057529596526 0.30882229411298423 -0.8488242873771473 -0.07200959280053305 0.9065033282914519 -1.0840757419069538 -0.06655289746356456 0.5227663693133894 -0.9217447946759006 -0.012711233270558566 0.1461311002202963 -1.1541841721470936 -0.004134358114528052 0.0799374378460269 -0.999433085981066 0.02424153186247665 0.08090726322542241 -1.0372203519779297 -0.003940700704649392 0.1126188373751152 -1.205182599623875 0.216441635062279 1.3185682518536594 -0.9125996097969051 0.38072826260851006 1.4866096270986464 -0.8243907958888606 0.2919774772930604 1.346389442470777 -0.7326081113530791 0.07540698239061874 1.4279485368704201 -0.8804750660132844 -0.1834066913226231 1.503388661172453 -0.8800129318614361 -0.07208614457142756 1.6052987131081493 -0.7229546666292717 0.31860923386869344 1.206225531583225 -0.9917714118395466 0.39041776649594157 0.9157792338832907 -1.033868579723376 0.44028287426037 0.6859480050884829 -0.914281303288586 -60 1.0 -0.2255538165998357 1.0060863986012716 -0.9747770765321184 -0.40813364833276644 0.6905298828450543 -0.8073048419237991 -0.5478082113377055 0.3155590481806592 -0.8169371820610549 -0.5225676748030101 0.2602032343470129 -0.6568351288819856 -0.5855874854067453 0.28073297248663137 -0.6894963307380474 -0.5666743426242146 0.2862334785801904 -0.8535448397595016 -0.06470539899039522 0.9108700392288774 -1.0846098409770408 -0.07279909227086336 0.5247844920867472 -0.9299103938842669 -0.018466957766933825 0.14329787547343 -1.1567984111517802 -0.007675873726249057 0.08223677039107345 -0.9957705022494807 0.018245597838612165 0.08254574151168147 -1.0325372364922232 -0.0067044495698797306 0.10795557325489169 -1.2032643847793845 0.20449031279675559 1.3120591147590268 -0.900323897820109 0.35992205332649735 1.4836016878643237 -0.6888765064925699 0.2671930546769879 1.3516027109606834 -0.6952661989278841 0.06828796598062309 1.4351360601061431 -0.8760597312384328 -0.18956330992920795 1.4986099495187313 -0.8753806549294689 -0.07906604127428894 1.6036020633676396 -0.7040203260749963 0.31632862098470405 1.2093565363418484 -0.9865342653237197 0.39321256151334055 0.9442970862221397 -0.9970164032059832 0.43307351240924413 0.7006506162142396 -0.9150207745946531 -61 1.0166666666666666 -0.22655647399839074 1.0053547904860856 -0.9653227553670193 -0.4164523970938449 0.6723397554571205 -0.8336133545571703 -0.5154716641554437 0.29630008480088954 -0.8046676050538673 -0.4948754741155523 0.235070170744933 -0.6445362793187357 -0.5458087455165096 0.23871064670184436 -0.6803852045842057 -0.519230411467854 0.265290420148894 -0.8457831434801855 -0.06967537229943827 0.9109059460600961 -1.0828826547076713 -0.07082112333775152 0.5299322998877734 -0.9174277800727619 -0.018602494767847172 0.14233689192316562 -1.1593149479626264 -0.01010142918409901 0.07858705141240388 -0.9967623780931005 0.019688325013970078 0.07854533284128687 -1.0376204469853143 -0.010271037424534292 0.10740933932700687 -1.203767027474492 0.20069805553493986 1.3206212044980865 -0.8998001159958381 0.361136189327281 1.4852505002281868 -0.6777522960344811 0.2662603033723615 1.357899572583163 -0.6942438090486928 0.06564609863242245 1.44050089435356 -0.8617940409177103 -0.18779721389798382 1.494557061240603 -0.8691432827529317 -0.08314700494189796 1.5938182161505017 -0.6787270480800287 0.31206533736322734 1.2129940010715232 -0.9830762592026073 0.386087829174603 0.9302723216847645 -1.0300815531859462 0.4366910729255867 0.7016994144845095 -0.9178898407963783 -62 1.0333333333333334 -0.22614345283526946 1.005797109780805 -0.9643307708833369 -0.36358410691553583 0.6670669504276938 -0.7981576222538249 -0.4552635128060885 0.28723200556697603 -0.7882162897794732 -0.43978792117006704 0.21983331379565793 -0.6235428454378089 -0.49134213001387694 0.21810404480692575 -0.6525898286961883 -0.46694598487648276 0.25091953752512525 -0.8220414156373824 -0.06160845510382478 0.910445146105221 -1.0758529462570519 -0.06810207884881961 0.5263720139267388 -0.9211668117296393 -0.018599093913686787 0.13837728070611546 -1.153068366919518 -0.01114494368522921 0.07621696652940621 -0.9921882419280132 0.019176469701507333 0.07465264314992465 -1.0371805765999698 -0.012903787025410072 0.10381013239652394 -1.19424671404236 0.1960418068345506 1.3210185225602284 -0.8958552234189588 0.385626603768195 1.5009921725525173 -0.6946117105336908 0.2574269132547175 1.3608921990569516 -0.6853294889928876 0.06142052925953197 1.4456977468781962 -0.862654783009541 -0.19756857595529037 1.48401462609555 -0.8686671567192144 -0.08835416371848571 1.5941140697836114 -0.6484297035671904 0.3124684877000178 1.2183318395781828 -0.9767267857472232 0.39216468730440035 0.9484284913872009 -0.9790751046071268 0.43225214727320155 0.696106677292335 -0.9470393943948984 -63 1.05 -0.22592226185654285 1.0022633128509435 -0.9630560196566398 -0.33774455623249805 0.6448535057603301 -0.7945923398613172 -0.4151763744832345 0.27155548795886186 -0.7857406538131766 -0.3740947978230409 0.1943052864605485 -0.6258200039655047 -0.43619998273443344 0.1941746178301195 -0.6650423832724423 -0.42294696782259034 0.25170955660780686 -0.7918171836901737 -0.06032464022189497 0.9072442480925015 -1.076936029992194 -0.05477320620312641 0.5232462767958502 -0.9249233855580571 -0.01537738373600016 0.13829160647807587 -1.1519935878181058 -0.011347342480141877 0.07181486532172024 -0.988467636464072 0.017732209849667654 0.07571907396127076 -1.0327877099875749 -0.012571396151304383 0.09699316441335483 -1.195716139738474 0.18619754735525487 1.3268820326540054 -0.8765244919957618 0.38366021728003413 1.5076747680510645 -0.6908947315083522 0.2571167343725127 1.3608594054159147 -0.6850028673436405 0.05537569668979561 1.446772542117632 -0.8460566118361921 -0.20828049651469008 1.482380762190107 -0.864693834836073 -0.10841395521200532 1.581776695566784 -0.6637166792230618 0.3109227997178281 1.2181298064690897 -0.9696422516874706 0.3840570199828452 0.9364888377914696 -1.0117459675580627 0.4282561925142182 0.6955277337494796 -0.942262318849634 -64 1.0666666666666667 -0.22199717870731395 1.0035834614399393 -0.9550247451587631 -0.3205354851772672 0.6357060596519158 -0.7903382268591554 -0.3645130451608035 0.2677503107379722 -0.7575251658808326 -0.33293460753905296 0.1863871995214411 -0.6236518487069124 -0.39873139333390245 0.18791600446193066 -0.6432510422726235 -0.37705913970597144 0.22458156256003767 -0.7737581991405782 -0.061853915162869956 0.9178213124099652 -1.0761846729236872 -0.051403392666244524 0.5234388557349237 -0.92751820499663 -0.00916802673333574 0.1495517439876273 -1.1101161321283908 -0.007051537635010451 0.07697882987344601 -0.9918835660746442 0.02304227578855173 0.07562169481473295 -1.0312407768782503 -0.012988582102280826 0.0980467738287957 -1.1962903160829168 0.1780075614403303 1.3390130428855282 -0.8697389069130992 0.3778091332210605 1.5114672811975118 -0.6731209955363257 0.25637714680470775 1.3644814362069793 -0.6844499745719872 0.04873010244967196 1.4528548746474244 -0.8421896604890173 -0.21454855922750246 1.474436956554963 -0.8619603761634238 -0.11409376187030582 1.5911895050333744 -0.6260998124039504 0.32224897717744955 1.2387828062165371 -0.9191429006521638 0.3857621122035159 0.9557981863260422 -0.9624513564884888 0.42712342934386965 0.7004884149385288 -0.9318117725511266 -65 1.0833333333333333 -0.22164338964694663 0.9957956518421149 -0.9491169880205806 -0.3028882868377298 0.6307087941966226 -0.7780949779598002 -0.33123339610265845 0.26453599046384824 -0.7431308466940861 -0.29632304113235863 0.21752528751553563 -0.5628341108715696 -0.3472035060435006 0.18547741896007244 -0.6305191293731123 -0.34815127293619375 0.23360791534563605 -0.762440967977232 -0.05700868568519574 0.9135240940357086 -1.0740255531092693 -0.04523204265667125 0.5220089945339438 -0.9214355174677684 -0.004875117678134062 0.1523597111496051 -1.1053638605977871 -0.003890758277874692 0.07782551598755609 -0.9884281958208222 0.0069911859915913034 0.07628624948004824 -1.0555103481889674 -0.01665564921282204 0.10322082109978044 -1.1937136096859058 0.1759730351714283 1.3441395626521457 -0.8674686874462544 0.3687932401512359 1.5110149278809717 -0.6752006244529838 0.2572231602111047 1.3607969119010326 -0.6854479534195284 0.044844228739188 1.4543988573887288 -0.8385053840153275 -0.2294065693125594 1.4738339008783141 -0.8533643110648741 -0.1223479435096413 1.5847132551641163 -0.6259760418779406 0.30529789535918267 1.2333994699427495 -0.9588268495037898 0.3792142358062982 0.9536302572254926 -0.9856195466922472 0.42803855011920416 0.7097095998730621 -0.9203333121505061 -66 1.1 -0.2167624344992259 0.9885523839608039 -0.9471807109096146 -0.2769912322070389 0.6226625540018175 -0.7669262580575223 -0.2936176740715756 0.23572433445344015 -0.7260918718673182 -0.22899755900151117 0.1474069789545328 -0.6293806073556628 -0.2848895554924371 0.1444624065864497 -0.6358799066575485 -0.2631635649038411 0.1836633831346539 -0.7820371786052015 -0.06377896151979984 0.9154937447630187 -1.0584553904820333 -0.06961989902110176 0.50414340251283 -1.0076979170326237 -0.017810010458248652 0.1392981485379077 -1.1444869090079393 -0.004717131914905742 0.06911629579966448 -0.9865728169062881 -0.0041714314624111855 0.07307479896131412 -1.057952536061501 -0.0209892873201588 0.09922010543813137 -1.1919762517015682 0.16878417518084626 1.3466242337828354 -0.8558932316486356 0.36996118712981363 1.5160114014542367 -0.6632374801102513 0.24813285507670585 1.3708815413075677 -0.679678190012196 0.0043732895265197495 1.4274512256223244 -0.8918945191704801 -0.24421156658027426 1.4654427848949159 -0.8447653723061601 -0.13830484684753563 1.5787634612575983 -0.6301089810461502 0.32058134711299346 1.246685483111723 -0.9000824485367827 0.3771313257648101 0.9531529288275036 -0.9775746048193062 0.42775689653862614 0.7068562356797682 -0.9048384813242147 -67 1.1166666666666667 -0.22371982975979865 0.9837588995956016 -0.9383600343455638 -0.25349995994041524 0.606811048270001 -0.779941264258627 -0.25945868676032785 0.21802417683239794 -0.7361064025279931 -0.2036073480076613 0.142144442812868 -0.6174868682988635 -0.23307435777212707 0.13035064394790827 -0.6270891996540608 -0.2718134117719818 0.1965706552847629 -0.7446127143691573 -0.0499654083178836 0.9117040932851864 -1.0538161656367158 -0.040156583953826805 0.5172805139133828 -0.9323057286423767 -0.011207489286847628 0.14415983688331588 -1.1006710448381407 -0.010244556472531944 0.07076780082383828 -1.0064300352778748 0.007957460547241226 0.07157474304852635 -1.069707637018343 -0.009266881597457722 0.10843292436933535 -1.127766528573608 0.16296552717385254 1.349340437819951 -0.8495818153104333 0.3566048444963455 1.5228455674412937 -0.6621902678160656 0.24785681490716693 1.3721401731493243 -0.6796386079254279 0.012704814527138453 1.4555188197719409 -0.8097552953420998 -0.24767295549907506 1.4644582769073373 -0.8426940812431225 -0.15269116144800357 1.5660958844045607 -0.5968166705893346 0.3108768291674489 1.254444244045797 -0.8815799652620184 0.37187023239833716 0.9691749359366634 -0.9756799584086827 0.42998276473851665 0.7241849328618525 -0.8952424314840042 -68 1.1333333333333333 -0.21896278532483052 0.9770459353411398 -0.9351120758604596 -0.2290668179603645 0.593421644836668 -0.7953475236866641 -0.22777420148382907 0.21034989057903244 -0.7450934850214148 -0.16259670014176142 0.13081619889065074 -0.6085399664128173 -0.2144355493680239 0.13380290573228332 -0.620780232709679 -0.2484196517808334 0.19268397388977812 -0.7393161732261617 -0.05639861404924575 0.9144473904534033 -1.0412238819801243 -0.04038631620653469 0.5176161348603017 -0.9259506651294003 -0.028616824773748578 0.14769528635832585 -1.1643310675077414 0.007490028413193564 0.0546098808300882 -0.9953990526571603 0.004711846937602178 0.07309246661257708 -1.0695984335700774 -0.03966723187496956 0.11128107680677503 -1.1902893695622765 0.15728890734738216 1.3577047587660402 -0.8445236583028992 0.29500298880781556 1.5511929801699456 -0.7808344200243039 0.23004664862535273 1.3831813627283256 -0.665297709324989 0.0077924986211784725 1.4563788328445915 -0.8048822352216822 -0.2684553730262563 1.4561063764430722 -0.8365833255956479 -0.16342450811471018 1.5365996024204969 -0.6456432137347115 0.3062774437454879 1.2672690619591764 -0.8761170298507349 0.3774324815275895 0.9754413275006849 -0.932996344125127 0.42851707411586387 0.7277867490631476 -0.8902575132734684 -69 1.15 -0.2138038869843958 0.9743580974021843 -0.9341338831856676 -0.20491144396258332 0.5794465506939954 -0.8073076370382343 -0.20764989220981828 0.19696805310371235 -0.7332599337866916 -0.13508164029655126 0.11368107657024965 -0.5975248928967035 -0.19578273853357017 0.1249911524355333 -0.5972213488721694 -0.21336799139234067 0.1746966341954784 -0.7362152224621916 -0.05198665040722866 0.9152893043607274 -1.0456535706311567 -0.04516550139196243 0.5227735740072135 -0.9308206014705338 -0.02801105000039513 0.17837188081126168 -1.132413280874778 -0.013600310699715 0.06465110512501575 -0.9941610756723407 9.512746072351957e-05 0.07321414163481281 -1.06338958943184 -0.03626986652181009 0.14081049728421455 -1.1448307014130925 0.15575936707289856 1.36173761077838 -0.8319546023302143 0.2790365972140899 1.5679201919663404 -0.7589622772016951 0.2397969868568262 1.387443485537692 -0.6624239263919176 -0.022065661984255483 1.430258314979294 -0.8534800885349967 -0.27382851915168416 1.4538387179893373 -0.8445451138185882 -0.18921032386741857 1.529580019497175 -0.6292712203745229 0.2941115799625913 1.2743015183701967 -0.8596847745825252 0.3737979433632564 0.9864067445302156 -0.931635637654032 0.42550953788412826 0.7394500105703553 -0.8750025001754294 -70 1.1666666666666667 -0.21327960146853178 0.9713507312450995 -0.9297171313527165 -0.21166877502966297 0.5468098799644512 -0.8197835396232619 -0.1716788230283194 0.18095916139123874 -0.7308871981458565 -0.12419547109382348 0.10079339317219849 -0.5855852411189888 -0.1730552904333971 0.11196190176341227 -0.5855939594503806 -0.17867406955080103 0.1567145429286862 -0.7082087044446185 -0.047877065679395384 0.9140633801128114 -1.034088573529705 -0.036495766072737454 0.5250454425094545 -0.9237616563106896 -0.028398346175410167 0.14747468442420966 -1.1544423538383888 -0.017311753395700166 0.06616178742311968 -0.9851192897741693 -0.004550934595435679 0.06937642076187288 -1.0576574159243208 -0.03050288003617326 0.12751163505063243 -1.135393533901845 0.14493966001480835 1.3696978158421023 -0.8167730314953189 0.2829356349224999 1.5435004117691005 -0.5940415343641042 0.22234167716735265 1.3903080485529378 -0.6452048561813283 -0.034828192944893206 1.431580331093474 -0.8538682205961575 -0.28184895403929955 1.4467843772629754 -0.8418788865919188 -0.20813625734954397 1.5413125762481377 -0.6033010234199587 0.2871994614053981 1.291483163757546 -0.8533931123449001 0.3688141133112761 1.004709640140829 -0.9353466445936784 0.4344683701515852 0.7556986850026621 -0.8752373603972016 -71 1.1833333333333333 -0.20890278535279672 0.9643533173302287 -0.9145534014008839 -0.19910963617007413 0.5456899813589419 -0.8206882310338809 -0.1395394374808258 0.1727574252595629 -0.7323348131701402 -0.12317420132493326 0.0842235497252226 -0.6036651897027775 -0.1562964216093644 0.09936900466947145 -0.5892456485467006 -0.15035657699037303 0.1542669348121873 -0.7092319264847965 -0.03573211644536501 0.90983272770477 -1.0247502755649518 -0.0345667703857186 0.5251776573132181 -0.9180003886090111 -0.02504226733399895 0.14759091354223217 -1.1565144938457368 -0.021204524990145458 0.07000450409261194 -0.9760128036882518 -0.002350390902159733 0.07372440826609579 -1.0474341592345073 -0.024256774324484802 0.12017019673016886 -1.1427007539447576 0.12772396087745116 1.3752791250846006 -0.8126230378871745 0.28971285593093776 1.5673300482763781 -0.6098093658964329 0.21406452648040325 1.3984499858613728 -0.6404159655415173 -0.01322265507327349 1.4532330464327008 -0.7894593261566984 -0.29537764081246437 1.4415216288517394 -0.8354640075917891 -0.2159401324800224 1.526319393767837 -0.5933002448648952 0.2759889119258176 1.2947781058554 -0.842589313458831 0.36212398120518097 1.0002103430061835 -0.9531485249211952 0.43590799534363556 0.7687916831560692 -0.8670380764288723 -72 1.2 -0.2020307033678284 0.9649380850832241 -0.898578400802225 -0.18990319958028623 0.5435385093531027 -0.8196579693999458 -0.12321894208567212 0.16964364544594535 -0.7298104882718236 -0.08679764709899786 0.08411850353193112 -0.5887614492509939 -0.14050910004762415 0.09098108100590746 -0.5863071447478101 -0.11603626334398089 0.14251333245590822 -0.7023363398013749 0.02602227660422451 0.8931144841060729 -0.9241589036370851 -0.015064889129267494 0.5221250972437353 -0.899986266076521 -0.022605906681047335 0.15044208195252445 -1.156683194818322 -0.011467271555508255 0.06752478896923524 -0.983512434680417 0.0066918790889158855 0.07152170227485813 -1.058119588724642 -0.02630680358523989 0.1317329167701373 -1.1425216714494992 0.12034262746187203 1.3792503155710756 -0.7898682396944698 0.2817192480609282 1.574239473560223 -0.6032659960107897 0.20481340237467588 1.4041325459240257 -0.6312651836327986 -0.01451594552680603 1.4582249565478653 -0.7596852615455252 -0.3025563626155617 1.4362615299281511 -0.842547514610295 -0.22275487020673926 1.522980413609079 -0.5545423368529848 0.2695265588716666 1.3021257791689058 -0.8252569918706747 0.3600315997299947 1.019674731612928 -0.9591021364177532 0.43511048151698384 0.7812028743482674 -0.868892857218564 -73 1.2166666666666666 -0.18971271209126003 0.9604549812997288 -0.8788919052533408 -0.16588945088652127 0.5191631087022496 -0.8269237728568067 -0.10496535355979708 0.158201179727019 -0.7293744817665706 -0.06994561364257329 0.07045830168780202 -0.6031430780067288 -0.11774708172276908 0.07162180349999328 -0.5918804002786042 -0.09415763254661096 0.1366826880046546 -0.7048295785806586 -0.019677160162012753 0.9047030597631306 -1.006732790006331 -0.01913245068883515 0.5232743458751417 -0.8972214997388435 -0.027437172016504825 0.14515998680392353 -1.1487386731056304 -0.010378278624734085 0.06333068396727835 -0.985899477793925 0.003063173866851602 0.067918600720936 -1.0513175934581882 -0.031980439946375 0.13022879240694848 -1.1167577369531938 0.11362766689574638 1.3863251373599534 -0.783580976730428 0.27268664837526996 1.5805084291591012 -0.6067900386641694 0.1880048825306281 1.4125672488187717 -0.618000942915409 -0.028452573302748776 1.4555257616958055 -0.7691657829393765 -0.3015785350101723 1.4241216320003933 -0.8028970361576188 -0.22859107276976612 1.5202772197725816 -0.5462488292628274 0.22832411316889692 1.2940265862769762 -0.918062969230514 0.3517462224357997 1.0331317257079773 -0.941278595902102 0.43853369064990094 0.8009851825235584 -0.8607370752923158 -74 1.2333333333333334 -0.18384095938609446 0.9480794453940394 -0.8666625705066845 -0.14175545248414012 0.5543889766890887 -0.7684780828726399 -0.09416713916696988 0.1493876122078331 -0.7363336615882845 -0.07278769874230286 0.06521787317372929 -0.5921765203485155 -0.1155655592594378 0.07103234996877585 -0.5964352059480891 -0.08035929693754493 0.10481251217142573 -0.7668105159652507 0.005023413455935788 0.9044613472034011 -0.9843587271194244 -0.009501004112479892 0.5185205571725743 -0.905606681900714 -0.02387945990782158 0.14858083542725395 -1.1525081954098901 -0.002261042623333855 0.07280207321983194 -0.9824577102209046 0.016691994901118414 0.06986633059870581 -1.0544783844404637 -0.029939822746782488 0.1365690576627229 -1.1230200972139603 0.10589255353457709 1.3935607951207054 -0.7832342266480055 0.2617442941057705 1.5890198559198447 -0.5909906354822867 0.18128416082472731 1.4212392023863474 -0.6026229087030153 -0.03821922284702424 1.449149981758263 -0.7525168020550598 -0.29625711815848843 1.3981674149998338 -0.8557699051682949 -0.25260287862965436 1.5041369105979616 -0.5755948970435713 0.22541866901863686 1.3107828555064684 -0.9185142878032403 0.3525855769491014 1.0541562249284158 -0.9452798941148811 0.44528675647451316 0.8405309094070691 -0.8358566095041666 -75 1.25 -0.179707971851032 0.9461391382762001 -0.8549101772351455 -0.13068131446270564 0.5554578362057901 -0.7583775917997977 -0.07607828044432537 0.14996009829423834 -0.7392810977201063 -0.05336031492423581 0.05152445818866831 -0.6129094447358397 -0.10209830905484225 0.06150163553576308 -0.6078214941508969 -0.06759317057123528 0.10862279902256862 -0.7401022294417329 0.009418120988129355 0.8961765624104615 -0.9722273123806398 -0.0046570966200257 0.5172658357263836 -0.906847874038549 -0.024208361147814942 0.15432319801386943 -1.1524426843496387 -0.0010949770413195734 0.0724289437896132 -0.9821947245588998 0.013105344668398763 0.07598750022467142 -1.0388548773996629 -0.03554043861386043 0.14598390905571046 -1.1284991297316538 0.09855319194869248 1.396728800933063 -0.7794022934755991 0.23395598877843804 1.6045737670539437 -0.5838053891830185 0.17192097359778669 1.435420714278783 -0.5967603951255254 -0.06343839633630353 1.43750646252424 -0.739138114314614 -0.33745346672021714 1.3940867222197797 -0.7711006385543147 -0.27922326232882516 1.4728269702423022 -0.5781725326962843 0.21940959385902897 1.3214077959485337 -0.9110321466098292 0.346815252809315 1.0732344687628412 -0.9781696251941798 0.46029630607683236 0.8559126661648466 -0.8183209941646062 -76 1.2666666666666666 -0.17216854537364634 0.9422156701969299 -0.8327469979958174 -0.11443452129506701 0.5478527270319394 -0.7383738507508121 -0.06411007199091692 0.1399435039552658 -0.7566260323142024 -0.054477543081605434 0.05073809593396521 -0.6207717184284662 -0.09255965024840226 0.054465289768842844 -0.6260662319668874 -0.05847817772394067 0.09048110413855018 -0.7856687141606375 0.02944635430032444 0.8898831973543839 -0.9229846525415804 -0.000494823872105122 0.516593328215205 -0.9122493365887143 -0.02849185860610474 0.159321464558173 -1.1508950284849637 0.002817442293036631 0.07265622398807031 -0.9807277205359742 0.014328072091932069 0.07703467394096337 -1.039011284136649 -0.03556746069018078 0.14776555165616165 -1.131622221015091 0.08743110226878487 1.4027236540354757 -0.765707599949688 0.20878289385715665 1.6110538306361335 -0.5569024898777217 0.1596949002142788 1.4389404944084958 -0.5948930957747752 -0.07003324115808773 1.4435021716902579 -0.7218852566175358 -0.3443271606996251 1.3891642221196348 -0.7679685184396191 -0.3085412685392629 1.423462507114031 -0.5494118758501669 0.22108994591933917 1.3263346267267984 -0.8741256975213803 0.352437953221192 1.0861586396679646 -0.9824334124445615 0.46643336617914183 0.8623956519064375 -0.8424736682064778 -77 1.2833333333333334 -0.16021987859930956 0.9385387820810533 -0.8291751011715113 -0.11348924964407973 0.5404153636436158 -0.7316442685733708 -0.05558678300382962 0.13798108519050303 -0.7628604497404247 -0.0663846219135419 0.035259621243800034 -0.6502492927935762 -0.08487502101024007 0.04146816004075573 -0.6324455218749915 -0.04242241672490535 0.08934747501665266 -0.7936543167756244 0.03857442106870228 0.8841604874136906 -0.908374036833165 0.00034138023116186234 0.5097912032660391 -0.8947466260195793 -0.02978045163845304 0.15637560883722718 -1.1432604163599271 0.0031375033386189404 0.07181136166027498 -0.980248476971888 0.012822025778194222 0.07109277873681875 -1.036523557223245 -0.031091691842390853 0.14710483758222914 -1.1322115262354002 0.08131284665774417 1.4083661162599794 -0.7605924714507262 0.18869294042718462 1.6213300303164904 -0.5399529145645261 0.1372763445464765 1.4626914063030985 -0.5692381194635512 -0.08518029029715568 1.4440269610602228 -0.7279624135050264 -0.33544411277772035 1.3609098477224477 -0.8215355105392146 -0.3153531482276687 1.4352941487038788 -0.5431217009026068 0.23054503909870347 1.34187208115656 -0.8083974306763796 0.3538575314475699 1.102681955377738 -0.9673828800634304 0.4814870829631114 0.8895201874170039 -0.8274237935562323 -78 1.3 -0.14629448264513806 0.9246396781763653 -0.8149110859458002 -0.10376624156076311 0.5331342618513532 -0.7302592353632629 -0.05079697926280492 0.12000106192097429 -0.7610232836339083 -0.07117334179378582 0.026948731215950712 -0.6434538023312729 -0.06504976355068696 0.020959349109943768 -0.6297132834373356 -0.033062774295212496 0.08489886146686444 -0.7879560126208907 0.04129302375972749 0.8797361877714204 -0.8949138888755934 0.007563763954445413 0.5098634261113498 -0.8884988303934571 -0.025455471959619187 0.16125789356992906 -1.1467456709890282 0.002230594519170624 0.07053857175741077 -0.9844768893422339 0.017084348889064366 0.07057692508205271 -1.0462176501035683 -0.03269932911888146 0.15344900398352307 -1.136348813941967 0.06588011778647154 1.4165754280001155 -0.7450157832578481 0.1717710623055235 1.6257223491947987 -0.5387519748808349 0.12694528510275013 1.469769656751671 -0.5738127602322817 -0.09506092262993832 1.4321005493310268 -0.7243629733249202 -0.36704365406083894 1.353093897002286 -0.7404394002828939 -0.3415266235150044 1.4305766358287153 -0.5499825617431825 0.2242093559109701 1.348767611247682 -0.8030933815402292 0.3534872052359732 1.1217546874966866 -0.9601961317595126 0.4828535351132735 0.9170125153429192 -0.8624297712669979 -79 1.3166666666666667 -0.1388917539656885 0.9221636565594951 -0.7975520477553025 -0.10066779930636684 0.5322662494405609 -0.709922172520631 -0.05188897156455836 0.12589047301674122 -0.7614650971230847 -0.04286710541916357 0.036590832700007334 -0.6195353055967598 -0.08139759922863367 0.04327962760546496 -0.6270172017830046 -0.03705166867414171 0.08304260172832054 -0.786110066481303 0.033580483051374906 0.8928873346900569 -0.9199861013285554 0.006937931968234864 0.48609540136322915 -0.9058121563913346 -0.022336455896537277 0.16584898050392766 -1.147344054350046 0.004252499628515319 0.07363694742780814 -0.9852368471731606 0.014303175725913587 0.0796949297560527 -1.0495963903146956 -0.03506118721429079 0.16591268225951394 -1.1483029263882885 0.05037675557909113 1.4167028259910226 -0.7291660289345443 0.15214331310443696 1.6218851487114452 -0.5584925433305067 0.1182179093989482 1.4763835829184773 -0.5652667881737324 -0.11916041233194048 1.4228043776425048 -0.7586153656537502 -0.36850083160086206 1.3422576678934026 -0.7191101233286484 -0.3800910663703658 1.4240273489373447 -0.5912286609118496 0.21491995043255907 1.362416238138736 -0.7826179038247234 0.37590860703980983 1.133307951168217 -0.9128722299747846 0.5120116181140536 0.942460345551523 -0.8342670391752238 -80 1.3333333333333333 -0.13837005457937437 0.9192706576914614 -0.7932794431016498 -0.09829013106364641 0.5296035690810307 -0.7007424101869257 -0.05112630581643035 0.12939009347534028 -0.7527181957531931 -0.04530303335836534 0.03902256639154275 -0.6116871958158785 -0.07921506809887406 0.04330289846063276 -0.625816160467356 -0.04226203949223991 0.08612035620068421 -0.789829691150114 0.07445089531317116 0.8758008970859626 -0.8193501578296798 0.018113050919301432 0.4857324094152027 -0.8922207901895979 -0.019744417211115087 0.17366632023797499 -1.1378637371208105 0.005623904605742686 0.07460610280929135 -0.9779985971253613 0.014131747392803646 0.07876690001092435 -1.037972881742679 -0.03303948589625891 0.17500143523217798 -1.145279817085925 0.04131444101939094 1.4181272523293964 -0.7188809985107025 0.12984116531718717 1.645862380596117 -0.525192507457726 0.09644316039426538 1.471472193464308 -0.5706399793064629 -0.12753833962513447 1.422089725802218 -0.7442871805376433 -0.37508519583522054 1.3275765708157197 -0.7255520333873886 -0.37332354627470266 1.3908441910059481 -0.5240656663846157 0.1961530129112456 1.3661448722299987 -0.8180223031875091 0.37111163909445766 1.165427645273694 -0.9021139338044343 0.517073753752534 0.9880314095503046 -0.8341927585059952 -81 1.35 -0.13408117960849475 0.9136301520322107 -0.7796781209346418 -0.11788057788608387 0.5131738979802822 -0.7289239272092346 -0.05405957791921155 0.12421244550988655 -0.7515365891028009 -0.06476360893799422 0.036766931634879416 -0.6452218341021443 -0.06959131965286428 0.024438090358567775 -0.6192443907975924 -0.04474594672028698 0.08407086011145548 -0.7861439063738804 0.08361375973469681 0.8842019839302824 -0.7935173561529498 0.023517535504523887 0.4850069633105603 -0.8809813312013708 -0.017204097248219908 0.1824777501084749 -1.1320739347089601 0.005721008335722152 0.0759055700086315 -0.9883889384775963 0.014541402822771901 0.08390523859253905 -1.0447520183714862 -0.02961900365039539 0.16343413688610153 -1.1823013800879927 0.023428780579326583 1.4202615364604347 -0.6998519470810829 0.09410760034314601 1.6376396112514997 -0.5234116066590885 0.05883373558176897 1.487579717157383 -0.5208091447352073 -0.15006485398244665 1.415013846737589 -0.7321685502426604 -0.38243414689415306 1.3180455981390207 -0.7258550204131495 -0.39617229761969336 1.3781182490300858 -0.5196755901579322 0.18231179143074164 1.3746556112336876 -0.7988106862695962 0.39417264698320786 1.199210810214281 -0.8380271472955115 0.5305707193394582 1.0310504601276023 -0.7984198723674869 -82 1.3666666666666667 -0.12624869692848345 0.9134263711684283 -0.7748679970060792 -0.08062371273288378 0.5680310551624067 -0.6190106921111309 -0.05460271645228806 0.12116422141031652 -0.7582398633277821 -0.05039711957398359 0.04271815978047462 -0.6169617535112313 -0.07481747581217758 0.022979591379205713 -0.6224108580318758 -0.040769003307634985 0.08378512829053532 -0.7941548772944593 0.06004501576700616 0.9000471710940094 -0.8712082614413099 0.029799972977155018 0.48884407545943404 -0.8708484526292112 -0.007240431177763287 0.20016353995906452 -1.1148855404384643 0.003450967919643634 0.08322825508367074 -0.9783236935429327 0.01180139353344319 0.11201906830810804 -0.9834272414569061 -0.02038130762426382 0.1805307036721311 -1.1828872830977 0.013290062207523786 1.419008114007019 -0.6939706088899207 0.06285817879653773 1.6414050255831956 -0.5055327701134147 0.05363689522937819 1.4850157458544955 -0.5242971128868124 -0.1482374145586182 1.4222608833353956 -0.6730928037206884 -0.37063602870216067 1.2974761526750236 -0.7246413612305856 -0.4532958576566501 1.3535039638533721 -0.5902401176580276 0.16258716278426147 1.3926956569927644 -0.8256576859222065 0.3776005005252315 1.214214189892494 -0.9007899973487248 0.5503454828163816 1.071816744727709 -0.8368428885069232 -83 1.3833333333333333 -0.12226685544955447 0.9104243651864861 -0.7747557021237375 -0.07427914117294526 0.5297306640002379 -0.6564356444684379 -0.055735484120448854 0.1246331593319088 -0.7536802428121953 -0.054351583122225176 0.03499209552852241 -0.609886933207591 -0.08442055536377015 0.03936681718777115 -0.6328825224975761 -0.04190735010066206 0.08696917251642428 -0.7906430490453188 0.0629981153384638 0.904875113408513 -0.8708157931361366 0.052022099599130546 0.48980205880940164 -0.8280895742010586 0.003284302977729053 0.20774789985288306 -1.0922279015112601 0.005972129440940675 0.07733881258861998 -0.9778734041612764 0.018827266976200168 0.08316810973411647 -1.0334320586080865 -0.0071316065629854 0.1866475141400466 -1.1731547231366375 0.013345810581844149 1.4134636326656826 -0.6960528354903651 0.03590804720867844 1.6425350432259016 -0.4895017551010601 0.03253776174526171 1.4898715019200193 -0.505516946550901 -0.16204687708695048 1.4198009718112108 -0.6707378271609885 -0.38699525690206904 1.2866803823041844 -0.7095264049424158 -0.44288308128135906 1.3347179153863462 -0.505776010031221 0.15322636672824122 1.3971538866387563 -0.8147587410600099 0.3465236867910108 1.2692200841363317 -0.9164815416702659 0.58070332819673 1.1089017987012022 -0.8049625055605873 -84 1.4 -0.1077246447558997 0.9121664791336123 -0.7646003070302617 -0.09833986407279664 0.5133997056429942 -0.6963172604022263 -0.048856260145802154 0.12316963395041748 -0.7543221088165141 -0.053090116402988004 0.03874615383778001 -0.6108487639505922 -0.06587889287847497 0.016709715389464978 -0.6288626133991264 -0.030283258963879626 0.08682609517708764 -0.7916698038842543 0.10858674591025433 0.8866993858803396 -0.7597699105590158 0.057685573999001094 0.4872904227545821 -0.8054035757811455 0.011239938491948183 0.2283598445283491 -1.0507037914111594 0.006708467395096327 0.07716832779467038 -0.9714975478616404 0.01720526857905708 0.12008888735311277 -0.9587252975331519 0.0028709379254950517 0.2162998427406044 -1.1124992261374695 0.006355718794968379 1.416968988463137 -0.6885565539037094 0.009815555800493979 1.6453130190138123 -0.46778880228403724 0.02405909828330836 1.4945341484909276 -0.4970065243814492 -0.16640509371818374 1.4163947860673147 -0.6540277102214863 -0.3870759246094857 1.2740833336444493 -0.6752174526392487 -0.4489624321176085 1.3109392584940767 -0.46437722112730834 0.14619820467950692 1.4072196981072644 -0.7954449763816851 0.37954220940778827 1.2820347033370467 -0.8618375478098729 0.5816478325218668 1.152455774511804 -0.7714602748004424 -85 1.4166666666666667 -0.10018095991983739 0.9087909816393872 -0.7517016663198852 -0.09828901668162765 0.5133098126149754 -0.6961605895500799 -0.04888533723745578 0.1314472333215609 -0.7560161527331446 -0.053049564284468775 0.03927685968583222 -0.5997474692962311 -0.08688930648359067 0.03935900426934913 -0.6334379367190882 -0.031960585595145766 0.09270324037662257 -0.7925683749422532 0.11077385057868301 0.8917707249936572 -0.756968945399308 0.05906166354449568 0.49285573004973815 -0.7683100111944793 0.016345181155736608 0.2278197416623117 -1.068284639303548 0.01144988291308443 0.09001157921030269 -0.9358230592821093 0.0242954492473333 0.12741672353117414 -0.9476075284174786 0.013176685083144095 0.2203403823417107 -1.1140273423036398 -0.0017196472510815587 1.411347903520844 -0.6707911500466515 -0.009649241984815581 1.6458672898817823 -0.45547033392322467 0.003129260284201111 1.4900448435596119 -0.48021041183369284 -0.1704105312674042 1.413514039118264 -0.635788576002499 -0.3915430294314823 1.2582981416528163 -0.6868283778087859 -0.43109721313692234 1.2899131971580653 -0.4679012909989931 0.13228282926563936 1.4106927950542683 -0.7826790716415563 0.3901460705535699 1.3230652356218877 -0.7740565873300163 0.5914503493232248 1.2111715514188193 -0.7697215281107358 -86 1.4333333333333333 -0.086130234543165 0.906498569764708 -0.7263804935033077 -0.08235157680623449 0.4966183007209965 -0.695242554290524 -0.05555340705252944 0.13504124229942727 -0.7448188057670995 -0.054993269215269244 0.0398001449432306 -0.6012558685225385 -0.09032657115131466 0.03571066722217789 -0.6347571361212032 -0.03531280377086726 0.09576163778653723 -0.7870692860484348 0.12204811249021272 0.8926490345936632 -0.743757064055228 0.06883012950903793 0.4978841312753222 -0.7447165753115935 0.022199581329039268 0.2499418413325253 -0.9942760912305988 0.026456566752405535 0.10410456357963768 -0.9152908201079385 0.04695325982396474 0.10885254198900744 -0.9725784689008047 0.0197198873692046 0.22531877905436426 -1.0912037124060132 -0.02853684977693958 1.4271441407604764 -0.636378166410375 -0.0220589634979799 1.6447676569057534 -0.44080441311100754 -0.01289024394735479 1.4888945178241564 -0.46085518266345965 -0.19458808458973972 1.404990832736143 -0.6303197615484284 -0.4122730274126167 1.2338834902029314 -0.7044361577520597 -0.48508660688426725 1.2682313014937865 -0.4285494940295692 0.12089972262691716 1.4204816206920545 -0.7589970199476745 0.3854985923067607 1.352708428517686 -0.7430167625433945 0.6062653648373335 1.2532571007370221 -0.7333774186417814 -87 1.45 -0.07586869497086875 0.9087700607639232 -0.7150799032593742 -0.08770193403294528 0.49779625654065085 -0.6909783221690275 -0.052555273102057244 0.14030755702920067 -0.7555862997464605 -0.059951416711044994 0.03732294639228848 -0.6052506814337362 -0.09161714347991678 0.033508893764545446 -0.640758822259056 -0.0404859172922248 0.10546524148643094 -0.8077507086756606 0.1301656413005621 0.8897066843524145 -0.7342016137170578 0.07742005974434706 0.5069705892248287 -0.705366778194247 0.04243908767334844 0.2492104916443137 -0.9512813528742229 0.03443383608248272 0.11126785881468595 -0.8841835142215674 0.06425949179619934 0.1258167634641457 -0.9425086961273949 0.03221547525517981 0.24024515897073026 -1.036883600337231 -0.0359488369686841 1.4235262403336009 -0.6270850297503284 -0.044312348101448656 1.6418949580815823 -0.4311358739953521 -0.025158359899259884 1.4935025618604247 -0.4554205342402019 -0.20124603345330888 1.3985259369967973 -0.6189183370722134 -0.4113194393125049 1.2262232912939317 -0.6978731972198167 -0.49665808224471447 1.2446281314792857 -0.4282746996751468 0.11573263411570692 1.4198708520378207 -0.7535943524161597 0.3407421966315874 1.3794057738687875 -0.7919374648151865 0.6060322956445016 1.3057210740142873 -0.7243171135889196 -88 1.4666666666666666 -0.07602474717983418 0.908902999832722 -0.715710542542724 -0.09341617896191214 0.5046209170659377 -0.6953009894082732 -0.05371857886923951 0.1431898554506402 -0.7534658845536819 -0.0546788525720737 0.03548700404208731 -0.6087179309096169 -0.09007029408638918 0.03445204125346508 -0.6445805993971465 -0.03300697506614665 0.11586747763795568 -0.8038966580068723 0.1366750609861644 0.8942857310284429 -0.7334158791583547 0.08495415112475238 0.5085435660525947 -0.6702200731739277 0.04289540778744673 0.23889123371472556 -0.9589389729130177 0.039498165161122964 0.11061164144640327 -0.8278550309764395 0.07896111876274212 0.13552166988810163 -0.9277048387013876 0.04301332311709577 0.24103997828875054 -0.9842775315119904 -0.04536819740508669 1.4173644340842102 -0.605773235104366 -0.06865249234524952 1.635812592209076 -0.40248749374556997 -0.047927027925472744 1.4890055599882637 -0.42926343421425606 -0.2096270113038589 1.380419131532219 -0.6553298564709917 -0.4047233384213996 1.2136550464709048 -0.6965481033963493 -0.5132613885896145 1.2227043749420072 -0.4334867822663089 0.10909757013251078 1.4310507991431805 -0.7306292954063845 0.37382353603238805 1.3920989686759895 -0.654334115883392 0.59480722791989 1.3447810034785486 -0.6956376933098246 -89 1.4833333333333334 -0.06919875844059915 0.9080233242932434 -0.7078366314228715 -0.09081352166865007 0.5078726637167058 -0.6853920480923357 -0.05251862485062859 0.144494460111397 -0.7427387213582066 -0.05425722809747158 0.03942488713165679 -0.6021159800314112 -0.09199739163141477 0.03837214376348658 -0.6433934746629896 -0.032458003402193215 0.11478124065582355 -0.7969699331390164 0.14066269388968233 0.8915906755771449 -0.7215553431768148 0.09050281523786265 0.5126354302867452 -0.6561507368590894 0.031111912184443636 0.21929680339473784 -0.916199587429516 0.0536471895921107 0.11354600288535219 -0.7999735057305893 0.08776524000739638 0.13092775952100413 -0.8735773827589264 0.05300583557425848 0.19457506129441207 -0.9032501308110394 -0.0476180859778956 1.4181181255035278 -0.599075552103622 -0.08572987865507854 1.632379992799698 -0.3889006279005648 -0.060733062264740574 1.4855528714430073 -0.3995403914809794 -0.21361319375796753 1.370670721445584 -0.6464769688888483 -0.4025948228822917 1.195565197978795 -0.6689767700309859 -0.5244682611752276 1.2045410137429784 -0.4284934709031587 0.1034184822094825 1.435299842157559 -0.721542366760862 0.3772619263065192 1.4094038545300556 -0.6436571407652018 0.6222072277859617 1.3920745833296573 -0.6430558887107513 -90 1.5 -0.07333128967883266 0.9055658291329508 -0.7009902453023594 -0.0906493745818887 0.5074297506858362 -0.6846901216710022 -0.049800217885293284 0.14840733509925688 -0.733333851417495 -0.052719025814642516 0.04179230970875889 -0.6027846771425933 -0.0928917321569905 0.03952673679964527 -0.6428499155208068 -0.032705274103536436 0.11615228391627513 -0.7936453890916345 0.13916677629499194 0.8916951407883341 -0.7119720134065839 0.08191161306190667 0.5199094811218794 -0.6721666962381656 0.03773560703937729 0.21117021678960088 -0.8864869689508859 0.056101295645878284 0.10645241249553748 -0.764200571027608 0.09168169340262454 0.12015697875040558 -0.8193323990984819 0.050924430121562364 0.2167493034945809 -0.913923940752492 -0.054998240558218676 1.4166537946342181 -0.5921080269870025 -0.09951885282440046 1.6238599308309736 -0.385107653495458 -0.0705904922761602 1.4805302303852637 -0.4004076707828556 -0.21104297335033778 1.3632896434388975 -0.6406269241498963 -0.41046040748714563 1.1763368376016587 -0.6762636437051671 -0.5261217688325394 1.1837579688057338 -0.433199195301116 0.1329303708750537 1.4369377029002601 -0.5998514810010941 0.3209979105032718 1.4421763954576616 -0.733307609812354 0.597671853196637 1.424689802521535 -0.602529115827521 -91 1.5166666666666666 -0.06832823336737029 0.9029781534475716 -0.7092575786222538 -0.091198779268867 0.5053890900472886 -0.6753260700902626 -0.05329600904736842 0.1441671494314431 -0.721810592244462 -0.059319174577852754 0.04491135576321335 -0.589258632877254 -0.08124863851731702 0.02322002692683873 -0.6480910912412762 -0.03172893829826344 0.10740294620135908 -0.7859747805544226 0.11231706147479013 0.9181926388089365 -0.8019771128298344 0.09773312474941927 0.5184498352388339 -0.6188120003943245 0.04729620660334199 0.20380911255930553 -0.8425566786045828 0.06223040512030563 0.1126245054117733 -0.7226218872142898 0.10008201155984188 0.11687734032134248 -0.7750113029935676 0.05032872074827652 0.180726846497583 -0.8964098034306223 -0.062345766489839076 1.4112505941783637 -0.581610688606094 -0.11885602792155993 1.6199688596080406 -0.36870783251133626 -0.07977057118801067 1.4644314055230376 -0.3989995009463496 -0.21293878458661095 1.357633234104641 -0.6392004218683833 -0.39969346252706645 1.1727740153439623 -0.6554028072955123 -0.5309769270879938 1.1604187279718912 -0.4533251822571492 0.12913940228964782 1.4357955063722692 -0.5954990581554747 0.33041876484984584 1.4385106324528265 -0.7173797148073318 0.5161724939023826 1.4808540761573117 -0.6899899633309 -92 1.5333333333333334 -0.06343040157291122 0.9024573623615727 -0.7120044488190711 -0.09494226545957919 0.5041032524189728 -0.671217139858836 -0.05055283002135948 0.14414693914555735 -0.7188591940552242 -0.05549335662136395 0.04244346590162773 -0.598697502383734 -0.10099104350340253 0.04552848699069454 -0.6555627299795286 -0.031092186638536027 0.10896466010107907 -0.7938184323509416 0.11622617291265508 0.9178469411466206 -0.7927582208763579 0.09374411126685185 0.5208024013851004 -0.6100192721127307 0.06752378411337881 0.2121981613962601 -0.8091635029429499 0.07056143491926045 0.10958197933388522 -0.6756459408154006 0.1074430716277289 0.125250135678754 -0.7242508440754073 0.06744575574482195 0.19041630707228277 -0.883541621304531 -0.06992820027394288 1.4086677207518556 -0.5720519569195206 -0.12865068885635852 1.6136457225279053 -0.3623397564128259 -0.07995613749243537 1.4602731621411746 -0.3959041366972595 -0.21666633670741672 1.3541703519048993 -0.6307604849029951 -0.3967456725787461 1.156441465800741 -0.6505866781836733 -0.525399541934117 1.1376623948323938 -0.4493751444898439 0.12283438160131457 1.442188797562837 -0.5925866184292492 0.33342638616206716 1.4556131130266212 -0.6925740429429211 0.5560277417372933 1.4938000353214038 -0.5581222996989299 -93 1.55 -0.06116214477070313 0.9075938480262593 -0.6988933417004867 -0.07802688252135073 0.5072316252063513 -0.6477114368554556 -0.04279008533655387 0.1484908632474897 -0.7141956826124922 -0.05932681707325224 0.05325978841740229 -0.6018938877240976 -0.10304830998144315 0.05092034057459522 -0.6488256530010297 -0.03005066400363057 0.10572352901342653 -0.797961181363505 0.11592794534307545 0.9152777064624686 -0.7792630942374904 0.09738508170507934 0.5248578031061146 -0.5976285817319049 0.07157804289541865 0.2129107557764783 -0.767096944351577 0.06534145632313594 0.10808178212622245 -0.6245491429649548 0.10542323035844596 0.11393244660070104 -0.6635516965911301 0.07451463460871526 0.1764720407997695 -0.8412851782140152 -0.07205024105169726 1.4032633705397703 -0.5596582953575114 -0.13447892906433254 1.6061663758858227 -0.3505241308976435 -0.09191944772010918 1.452566808016771 -0.36996168064651475 -0.21767664779411977 1.3514313295336657 -0.6290437635936282 -0.39188950728551786 1.1471985633600912 -0.6527170690892933 -0.5293754805746943 1.1178203436915333 -0.430781007294271 0.10089564711194723 1.4300161572450631 -0.6317933719277461 0.3314534670566495 1.4601504779752692 -0.6792905584171186 0.5423231781456652 1.5029135813684267 -0.5691804650100233 -94 1.5666666666666667 -0.06092569556861633 0.9078423134079252 -0.6986912732681264 -0.09906206315423101 0.4968033086376541 -0.6635705385445096 -0.04569855750139508 0.14273816523106944 -0.7133036086739153 -0.05813924987382215 0.04450511039889081 -0.604498627982211 -0.10086605984974745 0.04207636805650119 -0.6583515042757115 -0.023479993565466352 0.10374994790215926 -0.7931166610478323 0.15453580994529703 0.9034970769146942 -0.6702648956834792 0.09630610046891197 0.5315758257694021 -0.5891279797494162 0.07478086784028655 0.2120011990554989 -0.729407198292772 0.06840597885607037 0.11496557930780071 -0.5875976096486003 0.10618040411192806 0.11392401031881633 -0.6200353062303458 0.07131898173802427 0.1681955078193136 -0.8011301112115895 -0.07953586904017929 1.400330608288528 -0.5502654174484877 -0.13875424506403944 1.605461744684435 -0.34566235824726255 -0.08690439890131615 1.445506173508178 -0.38266415698585776 -0.22022505261715367 1.3451000988165058 -0.626175972595733 -0.3902780001996924 1.1407687695298858 -0.6554190752713541 -0.5262863337815209 1.104401626694386 -0.43559417200147216 0.09934753688885571 1.4317073322527454 -0.6136321702690899 0.3674405217243601 1.4664653235955463 -0.6417641589326166 0.5291440961074889 1.5259402225108962 -0.5101575434750828 -95 1.5833333333333333 -0.0648105389566821 0.9089066258280255 -0.6963491881994971 -0.10088481614507805 0.5080763980992542 -0.6628794020752655 -0.04734898741874419 0.1452240312252795 -0.7238694671574154 -0.06195502638150177 0.04333281104527601 -0.6035753296282944 -0.10084989510321683 0.041940876202281305 -0.6522991966586003 -0.025761714140505435 0.09822020145932732 -0.7866300183697631 0.12222806872906955 0.9173483994887229 -0.7564252460052119 0.0892991258084239 0.5308091316499296 -0.5736720933389088 0.07799610052739228 0.18930398694929576 -0.6783425919813287 0.0657037850991814 0.11495993736520323 -0.5262432098565886 0.09436265264948382 0.15914996838423623 -0.5110665553328622 0.07907741356027145 0.1672026971610921 -0.7013508694379309 -0.08159867707373838 1.3994525412187584 -0.5405678148905501 -0.14112507898842086 1.6043133210186498 -0.3346951275514922 -0.101751298402343 1.4482452724076857 -0.3675742824869492 -0.22189843490264782 1.3451705110341259 -0.6215672773070137 -0.38717011385238914 1.141201988364401 -0.6483188631827548 -0.5194338851534226 1.0871643113225093 -0.44329995848099374 0.09364384815480101 1.4353487901236575 -0.6004707790737812 0.36628668621825333 1.4807182540145285 -0.6418246215847676 0.5274071668631001 1.5441695975387468 -0.5054202025531757 -96 1.6 -0.06400701069905233 0.9026005827331824 -0.6904284812944326 -0.07495902159530467 0.5250811144783685 -0.5924768346652214 -0.04528243401862691 0.14181863679966814 -0.7264685898853455 -0.08590426804871679 0.0417053520246033 -0.6322566185011435 -0.10086813452310879 0.042301984584404914 -0.6514692983927178 -0.023105597577400945 0.10255919448566976 -0.7923543067569934 0.11584812886973092 0.9228659254955563 -0.7462148944190383 0.08826830509108108 0.5345171010407981 -0.560711252475044 0.08113246735511495 0.17719261591627675 -0.6425281980297188 0.05275349234886549 0.11514465065638578 -0.4845964520069503 0.10909379472665588 0.11444363373248705 -0.5311620735657226 0.08593107003566498 0.14261687339831466 -0.7082455191607636 -0.08597074572225359 1.4022645082702547 -0.5359241464078238 -0.14575863646202128 1.6075721989391638 -0.3286310182017893 -0.11413500277549914 1.452775536248766 -0.34446619112705407 -0.2207650692668622 1.3480061122226275 -0.613620722337865 -0.38792608771439807 1.1312406320105575 -0.6547213379689163 -0.5173419783570692 1.0776264219922886 -0.4434310138176661 0.08673935804098443 1.4389288184108229 -0.5861374332700368 0.3632277750676905 1.478132029449725 -0.6196591033818882 0.49869738431131977 1.5432656573527612 -0.46267257283560537 -97 1.6166666666666667 -0.06067866497659016 0.9034106943608661 -0.6836374212243694 -0.0836305481197286 0.5096727000094036 -0.636009453040395 -0.045083997633610526 0.1423458105439605 -0.725464324678037 -0.06446224566745522 0.05023359278728976 -0.5990501204001316 -0.09953813133507732 0.04708168955877218 -0.6590592046941589 -0.02310864310179102 0.0999925237152399 -0.7871738283397663 0.12320497632345365 0.9224019042195419 -0.7279422379018575 0.0831449148756887 0.5411494108846244 -0.5458019685497543 0.07804322823930154 0.17129766147112688 -0.6150302405515623 0.09215294466229759 0.1088099949845444 -0.4764812786595975 0.10347020600386987 0.11933011433062912 -0.47529394916368534 0.08505356360918731 0.12973330251431298 -0.6594310011650862 -0.08760413752035467 1.4073442055851169 -0.533767942950426 -0.1476835434775509 1.6078070259497248 -0.3237643041107552 -0.11426878243629707 1.4529507846335141 -0.34425274696158464 -0.21890768749800915 1.3467323323857836 -0.6075337714948696 -0.3839811790877942 1.1303155384967807 -0.6583270883786462 -0.5138775741169437 1.0727897132219186 -0.431454240316835 0.09247351855001831 1.4416872215715486 -0.5733015084210287 0.3687028030518101 1.4810319819498965 -0.6067678478148855 0.49226083206679017 1.5444756705399294 -0.4483915141597052 -98 1.6333333333333333 -0.060942924004104844 0.9033555831318579 -0.6834254706088341 -0.08336531018210348 0.5097010936236266 -0.6359228135901714 -0.051585142514054404 0.1412054463850776 -0.7273692461915637 -0.06501370771468308 0.05142247118906586 -0.6035437873728599 -0.10011099132804452 0.044701010824985676 -0.6541612294685822 -0.029679119254946575 0.0980266707510808 -0.7839186472796233 0.1266311764780734 0.9218202885680918 -0.7183334586644604 0.08615663188114768 0.5409407524985577 -0.5178311351719141 0.07976828515713712 0.16150049356420365 -0.5774682197876585 0.03909737919185297 0.13893923739092384 -0.39184142335150207 0.10293124125691944 0.12718285483581238 -0.43916899915167157 0.07952030498085193 0.11910456887522172 -0.6219772578693901 -0.08439241207253241 1.4062367933642212 -0.5222500441331239 -0.15229279159909423 1.6076687986350227 -0.32019240870952675 -0.11178595087475521 1.4547388756577506 -0.33635154431346864 -0.22031137781691645 1.350787790116352 -0.6077602098294659 -0.3803151348751399 1.1315457978634846 -0.6603337307526618 -0.5123304455721648 1.0697969948184836 -0.4510832741160095 0.08876268718325524 1.4423372255966218 -0.5614016899841126 0.3194012726230026 1.4799546130741001 -0.6303606066991947 0.4774945185862895 1.5505288848184022 -0.43539461232350835 -99 1.65 -0.08567414503182906 0.8895502503149539 -0.696415841497129 -0.07457604740076056 0.5347216140893162 -0.580758452550991 -0.05136746736932096 0.14379892889408377 -0.7316988943150137 -0.06879165860741843 0.04666580131106695 -0.6012373909421073 -0.0983993298559746 0.04550927439791481 -0.6603841798214382 -0.026786058637576007 0.1009399797487579 -0.7894053748317069 0.11569207611743 0.9286966728008744 -0.7025212510325581 0.0699840692948731 0.5492622576572809 -0.546721897776444 0.0816631226185864 0.1610147564212411 -0.554654005593579 0.03489870958861647 0.13779550693400472 -0.36220283040179235 0.10220473669914193 0.12588967283597352 -0.4116845959652798 0.08192703950561084 0.12427613775515091 -0.5991723642108464 -0.08854896421624027 1.4089527146472693 -0.5187399313734619 -0.15868889903085348 1.6063492088327365 -0.30990736070800945 -0.11179824468926398 1.4507470863845227 -0.33344669510397307 -0.22586930979449463 1.3553553893935237 -0.6035493064142331 -0.3780461623939177 1.1344375064711931 -0.6576057916393742 -0.5123419644763455 1.0696875951405858 -0.45118116239575207 0.09215103273485181 1.461577683440438 -0.5181371669790753 0.3214366907894637 1.4725440027589847 -0.6100712829103377 0.4688303073772196 1.5461072196546946 -0.4144491433286445 -100 1.6666666666666667 -0.05950876282587767 0.908462005237835 -0.659343271226699 -0.07883780552229111 0.5355456389153223 -0.578650717792863 -0.04910599693432885 0.14415610829192968 -0.726590380585758 -0.06481694272226819 0.04714457897903012 -0.6029285731670161 -0.0995852067477821 0.04401940022486813 -0.6547405444164972 -0.02690249366511207 0.0994968883345136 -0.781100990958706 0.11895267173893811 0.9278610680198827 -0.692509339126174 0.08713655823867913 0.5457795396502999 -0.49214652721707386 0.0798011364540599 0.16553392944497333 -0.5353490307853621 0.032632570098260524 0.13108262792619885 -0.35129803182831854 0.09245876685643947 0.11407456820919464 -0.394986983384761 0.08250748570667256 0.12711206328071403 -0.5744743541129288 -0.095499973177903 1.4105279440176914 -0.505443307065905 -0.16029353955067968 1.6138856065654832 -0.30656900649765245 -0.11948497205057865 1.4598495160157738 -0.3284065743732317 -0.21412757966417761 1.3652961902745917 -0.5552872415962108 -0.3780384816586033 1.1348353898555692 -0.6574316221558029 -0.5124691676373886 1.0697779551821915 -0.4511644477868675 0.09653532369144176 1.4610281552650952 -0.493955443508969 0.369148453715478 1.478891961188578 -0.5755604414122992 0.4575004589471131 1.5475270757731838 -0.38714628954066377 diff --git a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_filt_butterworth_0-100.trc b/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_filt_butterworth_0-100.trc deleted file mode 100644 index f38c338..0000000 --- a/Pose2Sim/Demo/S00_Demo_Session/S00_P00_Participant/S00_P00_T01_BalancingTrial/pose-3d/S00_P00_T01_BalancingTrial_filt_butterworth_0-100.trc +++ /dev/null @@ -1,105 +0,0 @@ -PathFileType 4 (X/Y/Z) S00_P00_T01_BalancingTrial_0-100.trc -DataRate CameraRate NumFrames NumMarkers Units OrigDataRate OrigDataStartFrame OrigNumFrames -60 60 100 21 m 60 0 100 -Frame# Time RHip RKnee RAnkle RBigToe RSmallToe RHeel LHip LKnee LAnkle LBigToe LSmallToe LHeel Neck Head Nose RShoulder RElbow RWrist LShoulder LElbow LWrist - X1 Y1 Z1 X2 Y2 Z2 X3 Y3 Z3 X4 Y4 Z4 X5 Y5 Z5 X6 Y6 Z6 X7 Y7 Z7 X8 Y8 Z8 X9 Y9 Z9 X10 Y10 Z10 X11 Y11 Z11 X12 Y12 Z12 X13 Y13 Z13 X14 Y14 Z14 X15 Y15 Z15 X16 Y16 Z16 X17 Y17 Z17 X18 Y18 Z18 X19 Y19 Z19 X20 Y20 Z20 X21 Y21 Z21 -1 0.0166666666666666 -0.06499776880731577 0.9015132201416932 -1.4005735926016618 -0.03953823544185486 0.4928670195675958 -1.448839828511972 0.043722239677169886 0.14392102600476311 -1.5950232476837725 -0.016930358013220917 0.06443271631692347 -1.4465817927970501 -0.023659406882450416 0.07649613531234171 -1.504955670851614 0.05998555151669328 0.10449043759287752 -1.6357123947955188 0.10412925185379157 0.9087452234460844 -1.458956309830576 0.03046064437340489 0.5362746404904442 -1.2634604115734183 0.013825475610293146 0.18117305106433995 -1.1375271880026123 -0.02223013087295598 0.0953830120230878 -1.0124216532378532 0.0025851125272346336 0.11342035499023559 -0.990095593125439 0.023243410985677126 0.1028104696781683 -1.2269404066275147 -0.028691117162967336 1.4640467742574672 -1.3966877075073407 -0.056374215891602755 1.7024200638322975 -1.2516128899060595 -0.05303771135621414 1.557240859333257 -1.1970460753409875 -0.1674420866482978 1.3929475880159556 -1.4130332081978965 -0.2729544608345023 1.1455669190225908 -1.4797215568705682 -0.3630780653479609 0.9229656892080704 -1.3696481415009016 0.1449346084625674 1.4142103983448606 -1.4453320504539167 0.27704655511782217 1.1648130235864793 -1.4725039614569537 0.35463254276602496 0.9377377304713108 -1.4579500717625873 -2 0.0333333333333333 -0.07104221539355533 0.9043857718248949 -1.3935290026984142 -0.038805900576076476 0.49350054440362784 -1.4465460135082697 0.04217122697865273 0.14565147789237595 -1.5952702035359652 -0.017262385969640824 0.06489677662461558 -1.4471475723743115 -0.02345028755342226 0.07552904378809129 -1.503324160367071 0.059097546234150346 0.10738317958349994 -1.6363855978384911 0.10071723690326367 0.9082867353873171 -1.4465696738127234 0.03768271444426348 0.5291465823978586 -1.2425930838408041 0.01121962229843961 0.17260176045855488 -1.1496284034840782 -0.023506949025494873 0.09085042852305744 -1.0128543960363166 -0.0017343510873574436 0.09846739691202129 -1.0095156760413928 0.01997929882811294 0.10451892856857677 -1.217635806244341 -0.023391910591897387 1.4638619184705208 -1.3856850474961646 -0.0439154255529272 1.7026548729321067 -1.251214540499297 -0.03847443176113137 1.5563502491214956 -1.198556437149986 -0.16398493590089236 1.3941321603107173 -1.4213321802361238 -0.2759160080730408 1.1487930488475557 -1.480196205893876 -0.3657281633285029 0.9359377608915419 -1.3600641652438603 0.14974467918964884 1.4100972780266512 -1.4377593851411465 0.2812419795732822 1.160081452984563 -1.4560701338965323 0.3594463665724556 0.9320159286709566 -1.4383584093558017 -3 0.05 -0.07645198561087348 0.9069940575482708 -1.3860215927221442 -0.038227439228741375 0.4940966222130925 -1.4441913244044569 0.04056369624500279 0.1473499267457264 -1.5955052910731293 -0.017867244863870847 0.06548552267980098 -1.4470331418421112 -0.023569211114986256 0.07515743354397737 -1.502082608316526 0.05811804871081579 0.11063680953086519 -1.6371707607470438 0.09720199175920109 0.9080798844258202 -1.434618509878132 0.044902962037864425 0.5227327874168545 -1.2224064807806698 0.008571391007693115 0.16532945071881142 -1.1604310273260348 -0.025311324790691793 0.08630322930003084 -1.013103118199981 -0.006238421296751682 0.08592374531436081 -1.0256116295051165 0.01670885248640717 0.10632323927943743 -1.2092765448339104 -0.017674284528190285 1.4637634851026238 -1.3748427241451058 -0.03143945788304643 1.702888000773387 -1.2490642166058659 -0.0257553553470663 1.5557296820248763 -1.198508612163198 -0.16003403293788868 1.3961490903770342 -1.425581797180182 -0.27883793278827673 1.153147979638046 -1.4784308333066012 -0.36904576783022647 0.9489834612139577 -1.3489596196531612 0.15414429522636172 1.4069074383212918 -1.4308213593572152 0.2851207810674118 1.155062224557352 -1.4402949572916393 0.3635767731251191 0.9264522765272559 -1.4192295497769492 -4 0.0666666666666666 -0.08094892532689264 0.9091861124521755 -1.377468194814903 -0.0381601656988083 0.4948452671561543 -1.441234779686184 0.03879492924989393 0.14901982475943637 -1.595545465236154 -0.018881909828377067 0.06633042749208148 -1.4458379719028602 -0.024144237348149716 0.0756412317770079 -1.5011868517683955 0.05706870630371764 0.11435847101940755 -1.6381125543681598 0.09349261870507852 0.9080862478436125 -1.4231340468339024 0.051277140359255104 0.5176337434335633 -1.2039577995786597 0.005918700949584895 0.15991981061468694 -1.1692039690213791 -0.027231072425253466 0.08212569818762001 -1.0128943064012912 -0.010404052359622778 0.07722823888358349 -1.0365069303177339 0.013495919915579373 0.10816672049824703 -1.2022530830656484 -0.01119191972260285 1.463813828185207 -1.3641796776284827 -0.01876052426662717 1.7030933248098703 -1.2437223159825277 -0.015783051466802225 1.555665444357744 -1.1950548290626313 -0.15506064269938116 1.3995831233356526 -1.4223134646599132 -0.28138363213027867 1.1596958040057763 -1.4723493709012097 -0.3735805798653687 0.9625872373799477 -1.3353134211805007 0.15808200884511173 1.4050796793839504 -1.424636248866424 0.28837918161502657 1.1496954209767243 -1.425961908056711 0.36642809816266 0.9211729638784384 -1.401036775382437 -5 0.0833333333333333 -0.08470151873521656 0.9110495547770567 -1.367480909517751 -0.03894896641974888 0.4961502747897474 -1.4368520197215917 0.03691792745993102 0.15080130153079488 -1.5951031291161535 -0.020170144468770676 0.06745612556398119 -1.4437141664554225 -0.02503019445762778 0.07678232736241634 -1.500339465930817 0.05614280237944806 0.11842494149881613 -1.6391919833708868 0.08958184945738985 0.9080475483985258 -1.411684568137903 0.055354841285950536 0.5141475580229876 -1.1883663741642376 0.0033934473132109996 0.15633707429250063 -1.1753679885848811 -0.028649065099440988 0.07878718081333173 -1.0119670239906784 -0.013497949423146659 0.07248460554607657 -1.0420646396604276 0.010553408056287435 0.11004588519680049 -1.1962153616573565 -0.003790019429250878 1.464013021130426 -1.3535789823238118 -0.00569697560721974 1.7032529297409906 -1.2346767255592301 -0.008006670846950496 1.5562640871524764 -1.186963764082489 -0.14878038473734667 1.4045049379022188 -1.4104861891999847 -0.28325025182594626 1.168791101487968 -1.4614300447040782 -0.37938690672629377 0.9773437232374698 -1.3189227211304684 0.16200912508988088 1.404409698951597 -1.4183926306247607 0.2908076337307041 1.1442538746968962 -1.4136003231564116 0.36777743007203745 0.9162071448560821 -1.383962655672738 -6 0.1 -0.08810515478109146 0.9128997693016946 -1.3560727876162544 -0.04102364059676942 0.49857989792743934 -1.429808622170096 0.0351921856007892 0.15296791102944726 -1.5940072159332872 -0.02138511803604224 0.06871831205429015 -1.4412958924988089 -0.02593309624978893 0.0781540595882253 -1.4994014052654077 0.05552809579940724 0.1227816673509911 -1.6403352315602997 0.08556212554777833 0.9077657586194066 -1.3995873471919988 0.05601342361413436 0.5119959348035746 -1.1759813320846202 0.001190662033507884 0.1542991522011091 -1.178630413123191 -0.029898169928074612 0.0762849253155347 -1.0103373891842766 -0.01520495490475662 0.07109005353284108 -1.0431058095878734 0.008219007568097127 0.1122223639257979 -1.1905855175025126 0.0045589127422791835 1.4643184333496837 -1.3428888780013988 0.007745672468595218 1.7033361094681323 -1.2227596748538672 -0.0007889499867376452 1.557320095164916 -1.1744200983780981 -0.14130075179981252 1.4103992235151253 -1.3926313081634158 -0.2846033475061154 1.17976198384707 -1.4474618793776577 -0.3858318046126758 0.9937582970410607 -1.3001904793680463 0.16677659880148613 1.4040893790768803 -1.4103073178833734 0.29252682017327325 1.1390974599944508 -1.403024338672029 0.3679474985371112 0.9113334128977028 -1.3677978444864718 -7 0.1166666666666666 -0.09148949719783074 0.9150605803002246 -1.3436322672639034 -0.04506123854212721 0.5026266704531391 -1.418545796856697 0.03377363804611967 0.15576977942481474 -1.5923536424293854 -0.02224292170365014 0.06990110270720257 -1.4392546002206923 -0.026614953802447588 0.07940759164725049 -1.4985206571813947 0.05518094092891565 0.12753930626385632 -1.6413338978410155 0.081546226357615 0.9072166355434922 -1.3863859678263675 0.05303985545055154 0.5104380830939488 -1.166199408290691 -0.0005108844402248486 0.15343805965052992 -1.1794619095601078 -0.03187252470777266 0.07424943954774091 -1.0082459477860977 -0.015554500695349803 0.07248235709386942 -1.0406122542155787 0.0067473043638740775 0.11496380282035001 -1.1853058777939616 0.013796937132589273 1.464693974332061 -1.3320821637927454 0.02145594381147727 1.7032287790647165 -1.2096545098796678 0.007537839951050856 1.5584350194251257 -1.158831979293666 -0.13303723368987716 1.416448453967284 -1.3732840839395395 -0.28583393836468646 1.191591772075791 -1.432879442282582 -0.39187677601067916 1.012170377475351 -1.279875419712732 0.1732118253047748 1.4030326714397212 -1.3986203039858092 0.2940507554290211 1.1343730557091114 -1.3935212141267137 0.36764282395828085 0.9060552467772033 -1.3524131374651023 -8 0.1333333333333333 -0.09499939536551538 0.9175971344590588 -1.3308069811211491 -0.051922744611347604 0.5085355561724304 -1.401395703592028 0.032348396768070026 0.15932352323788282 -1.5903235635448407 -0.022742858250401995 0.0708345818149079 -1.4378743573039552 -0.02699681500826892 0.08037315824456641 -1.49793431780833 0.054831323148440456 0.13274863277870555 -1.6415621814665844 0.07744347841673717 0.9064821143471855 -1.3723243167937762 0.046943816987826806 0.5088146754851912 -1.1581335711100949 -0.0016390140603991406 0.15342964172541504 -1.178775609358991 -0.03472947529121204 0.07263152866314007 -1.0058838495902003 -0.0146423001720311 0.07635130700133445 -1.0352053083802457 0.006102625562696817 0.11809639315790903 -1.1811227535999949 0.023739781296445463 1.4651211919627483 -1.3212425030017396 0.0355859832410173 1.7027158127128525 -1.1967707784985027 0.017953393485655618 1.5592155280641733 -1.1421133752293486 -0.12460997812656376 1.4219254611821461 -1.3563351722172996 -0.287214996914606 1.2037502579161392 -1.4189220643481304 -0.3966979035712594 1.032792592619491 -1.258884667239795 0.1814249996717535 1.4004574244601986 -1.3832367568294672 0.2960343887697618 1.1299482273354136 -1.3842747536172482 0.36759877433815735 0.8997165274707448 -1.3379647785574198 -9 0.15 -0.09857750917585226 0.9202327411674395 -1.3183147852718105 -0.06226521521642865 0.5161483936039275 -1.3772537519928088 0.03016874906418586 0.16359239957385002 -1.58784632808046 -0.023148847209485297 0.07145696931836532 -1.4369441959439593 -0.027169562409963585 0.08107136515057431 -1.497613595709524 0.05411006490483608 0.13829440900129275 -1.6399492646155869 0.07288836509202935 0.9057064484128329 -1.3584207418139878 0.03858555590093553 0.5070335155784254 -1.1512040663659446 -0.0022433190381962714 0.15405524760057773 -1.1773495590866003 -0.03752890231222313 0.07191283751376737 -1.0034211002638012 -0.012596804930980336 0.08237174853713711 -1.027230877284735 0.006016924177279882 0.12108827026708331 -1.1789227781595808 0.034164120256227594 1.4655737185903615 -1.3103626274829694 0.050578473064726126 1.7016072390286403 -1.1846865872023948 0.030658016870716454 1.5593981902145795 -1.1260328987753918 -0.11664751504931781 1.4263817665501657 -1.3437465608524488 -0.28888874613749854 1.216204328569703 -1.405772999537781 -0.4002537440245552 1.0559288108510203 -1.237878338451434 0.19043282061771666 1.3962840509138867 -1.366260643193573 0.2989727383963946 1.125466636289083 -1.3745635582926858 0.3683027978966646 0.8918152160606754 -1.3242810378856038 -10 0.1666666666666666 -0.10204764769434609 0.9225561839068854 -1.3066732679615554 -0.07588707519058273 0.5243182736393817 -1.347316897796487 0.02645300848891586 0.16844388950576464 -1.5845339442203084 -0.023826320412501944 0.07187022708383614 -1.4359421636257041 -0.027396589865805832 0.08170693349342968 -1.497079910919289 0.05246077192922586 0.14437629135467595 -1.6355880902192546 0.06767511582044387 0.9049861672041326 -1.3457701268902347 0.0291087358035665 0.5056904088475026 -1.1452031666012192 -0.002425170434724559 0.15518733905027424 -1.175620053614425 -0.03878808625965977 0.07262615633167564 -1.0011946298746146 -0.009702652612027471 0.08968901669676003 -1.017651831081372 0.00622498417677048 0.12350700416725854 -1.17907761052222 0.04500976340679286 1.4659608048062656 -1.2991938518170496 0.06666290122168826 1.6999192663542797 -1.173381340388293 0.04530537413050509 1.5588579463267156 -1.1118693979815497 -0.10945114482669002 1.4296999591516903 -1.3353450744979396 -0.2908510469183052 1.2290396802363142 -1.3933500774910357 -0.4033722958300397 1.0820171627679507 -1.2170628809384354 0.1987305060965167 1.3909663420665126 -1.3505247104920572 0.303037305422192 1.1204147489593446 -1.363798207263816 0.3699035608519509 0.8823964965046848 -1.310372750882796 -11 0.1833333333333333 -0.10535707800882135 0.9243339027043136 -1.2960870538462042 -0.09118849111362157 0.5304184792519384 -1.3165203289531142 0.020710460176959825 0.1738099733411116 -1.5798865372868678 -0.02510732071280492 0.07238177870993204 -1.4343116095063524 -0.02811165284501997 0.08260795997163464 -1.4955625709231353 0.04912839083691688 0.15186084061770533 -1.628168330462395 0.062093065906149436 0.9042225996360822 -1.3347265851937269 0.019935177893422477 0.5056958175073892 -1.1398802266309411 -0.0022903167001567986 0.15672996022250507 -1.1737090836064443 -0.037216175059653835 0.0749448041020027 -0.9996926748905268 -0.006453879031285151 0.0965299695064573 -1.0087598520940095 0.006571865286737321 0.1251962253173975 -1.181441568350157 0.056326590169813964 1.4660593355601412 -1.2874398245555994 0.08350383173510587 1.6978731462653376 -1.1623600869466149 0.06124637173083444 1.557494867835591 -1.1004344846742247 -0.10278484978830152 1.4320467888431436 -1.3291372015143739 -0.29285871718880263 1.242330652606402 -1.381454642220159 -0.4070652937872308 1.1111694213111436 -1.1966792990791617 0.2054223251639423 1.3849628242985983 -1.337558801381961 0.3080468640518558 1.1142818473439087 -1.3515426668881183 0.3721710168637861 0.8721088314795163 -1.2949180412746781 -12 0.2 -0.10869702418154123 0.9256259631625757 -1.2865175298513576 -0.10601208596812825 0.531823647554224 -1.290831823084379 0.012798291025624065 0.17983469226856338 -1.5734103519713454 -0.027320010847118107 0.07346057839664451 -1.4316093299332853 -0.029919828214914373 0.08421673992931443 -1.4922165802567648 0.04350332513550988 0.1615467525253416 -1.6178619207231968 0.056514463084843786 0.9032431588839847 -1.3249830247523535 0.012113261014764478 0.5073240720459484 -1.1343128684674442 -0.0020176347411620817 0.15848910783798553 -1.171487169394994 -0.03258065849079209 0.0785313090348627 -0.9992479613807612 -0.003331500492622567 0.1007634696761304 -1.0033415812430075 0.0069237452251005895 0.12625075462883062 -1.1851544458884578 0.06797180384440057 1.4655266805700882 -1.2751336137995937 0.10047481078255623 1.6956888169792168 -1.1505941859817432 0.07759960718824023 1.5551362446708725 -1.0920316727699582 -0.09600699286340503 1.4336558130123174 -1.3227549672518246 -0.29438726675098204 1.2561510203326445 -1.369528937695527 -0.41170760306413395 1.1428037988011288 -1.177173946839984 0.21086809258067724 1.3783654488659727 -1.3267893979535914 0.31361597574664607 1.1067531396220407 -1.3376128139677952 0.37453348346123966 0.8617666494260308 -1.276942506678187 -13 0.2166666666666666 -0.11231835752752012 0.9267037397119464 -1.277735890489607 -0.11964960059929876 0.5286504181478262 -1.2718771680630692 0.002825770327939434 0.1868557516749037 -1.5645057483828777 -0.031052632588713568 0.07562834703077662 -1.4273916959114532 -0.033663017278334866 0.08708727695047179 -1.4862271979758348 0.03532720162239567 0.17320289908351014 -1.6053895650180703 0.05092824079451126 0.9020004396402679 -1.3161369826347824 0.005639326991558334 0.509586755974032 -1.1270822105379525 -0.0019299900135762464 0.15999159782460526 -1.1688248424771748 -0.026104591235731316 0.0825243544712452 -0.9997358032195729 -0.0004934992920610002 0.10133563269182312 -1.0027708352959708 0.007095934580157619 0.12677768490941163 -1.1888384742360367 0.07950458004133783 1.4640224647437179 -1.262778441002858 0.11717933031278244 1.693445438885007 -1.1369850128178154 0.09333007470426669 1.551674280254924 -1.085958355176457 -0.08842085441179812 1.4346689475860737 -1.3150500642476854 -0.2947617700516437 1.2704460631836374 -1.356696910268226 -0.4169297399556389 1.1759244761209764 -1.1585572822053491 0.2164696404441979 1.370911708662916 -1.3160647946426325 0.31934864838739857 1.097798997165652 -1.322221364814877 0.3762859637365209 0.8517882927266436 -1.256284966366759 -14 0.2333333333333333 -0.11628549816079735 0.9279248323809287 -1.26949391208858 -0.13334606757018713 0.523896369626905 -1.2563014540296273 -0.009036060271371844 0.19523473125847204 -1.5524035329661139 -0.03738271855950629 0.07932650828276572 -1.420966035011952 -0.040404476419140134 0.09169359824308851 -1.4769158775610374 0.024649924079241024 0.18567808086590662 -1.5916988622769337 0.04507804670099426 0.9005044281266912 -1.3079619475127202 -0.0003578093256926259 0.5110334717399895 -1.1176124002165864 -0.0023832227343604665 0.16038852699202633 -1.1661576187923646 -0.01951707241681259 0.08595543214962861 -1.0007186913770618 0.0023070067598416426 0.09904875182873826 -1.0060771484462316 0.0069511969516306985 0.1263489332541079 -1.1920835318746843 0.09044867615964336 1.4613366006979178 -1.2510955066407223 0.13367021371094287 1.6911187826608818 -1.1211964684985785 0.1076524691741885 1.547274453618451 -1.0804066534664418 -0.07964229688577543 1.4351711178877264 -1.3065536196633705 -0.2934170371244156 1.2848888088470694 -1.342332304514798 -0.4217678084015988 1.2096477026713062 -1.140326362073107 0.22384918992325772 1.362289784022314 -1.302989532963777 0.32488199378833693 1.0876634623315036 -1.3059948650465196 0.37688024176645785 0.8420160151521956 -1.2340629585065985 -15 0.25 -0.12045696664578437 0.9295676639766364 -1.261690137911849 -0.14879027923365118 0.5207668748532011 -1.2400919433399151 -0.022806688128699466 0.20505205110235977 -1.5364524684355036 -0.047655299522160216 0.08474292447538878 -1.4114670271243437 -0.0511871479201884 0.09812575709398928 -1.4639001046583018 0.011727108758264042 0.19776819416401925 -1.576991427866032 0.03884571858108524 0.8987120200069302 -1.3003672728885516 -0.007018753985087049 0.5109518714326977 -1.1069479550805525 -0.0035221827152094377 0.1587270247140151 -1.1646657308752368 -0.013708286404889473 0.08833121734214458 -1.0018594928294073 0.005656724023135782 0.09562790441313984 -1.0112521070118672 0.0065402683449290525 0.12403490774798735 -1.1962560197503267 0.10057648374638191 1.457455262011164 -1.2405280144152886 0.15017684166419978 1.6885809368987623 -1.1041261923697772 0.12033724639326665 1.5422656966563777 -1.0734777635835167 -0.06977133506623341 1.4352909960241278 -1.2985863232917267 -0.290052983503002 1.299017897213378 -1.3265903360642337 -0.42478778981600485 1.2433506985721878 -1.1220872881717956 0.23380317652981372 1.3525456547079986 -1.286584217180733 0.32984786799352883 1.07681319247418 -1.2897196617236306 0.376181569629109 0.8320930200724055 -1.2124557879878715 -16 0.2666666666666666 -0.12466974448002109 0.9316909260160658 -1.2542090989080594 -0.1669031716106687 0.5209035183346014 -1.2215766642422727 -0.038835420230744905 0.2158543029151789 -1.5165311916025914 -0.06294594754344482 0.09168727958113038 -1.398314358457667 -0.06686463118557415 0.10601009906008008 -1.4472390054529536 -0.003272158954922188 0.20875737272579886 -1.5607560873150164 0.032465568039572054 0.8966059832014158 -1.2932219274341166 -0.015099791743690676 0.5094943840056897 -1.0968274071471524 -0.005183404501829339 0.15471897967624842 -1.1652723091692694 -0.008841322708561472 0.08972146602657274 -1.0029344822246962 0.010078506621428528 0.09215682293351925 -1.017281768547965 0.006092000703911417 0.11948260378077365 -1.2029037129100415 0.10995335585592782 1.4525765784797222 -1.230876615151337 0.16655384534260853 1.6854673353817937 -1.0876639144989535 0.1314370301909382 1.5368864759991376 -1.0643379919098734 -0.05920506136413395 1.4352919593771174 -1.2914695359098176 -0.28469972259980986 1.3125421587368158 -1.3103345291668902 -0.424770067009818 1.2763882007411613 -1.1038701126022705 0.24567007019656803 1.3422991708564953 -1.2679774769686718 0.33392329975196294 1.0658300237780916 -1.2738612696232428 0.37453184244161547 0.8218982543235517 -1.193587321284448 -17 0.2833333333333333 -0.12885582394500997 0.9341849033176206 -1.2468134328030585 -0.1877990833535587 0.5245871151661963 -1.201415582367193 -0.057677086195263044 0.22684875992614448 -1.4932502660032287 -0.08361380798580406 0.0995892571082026 -1.3813647510170508 -0.08805901518502321 0.1147122088652289 -1.427412296182124 -0.020385322700204822 0.21825364656545554 -1.5425455937431845 0.02649704524135623 0.8943152592934949 -1.2862565362409537 -0.02459418045563433 0.5072205707434453 -1.0882582407262613 -0.0070693246608467975 0.14920665349512813 -1.1676104320968643 -0.005351192833357491 0.09050960453692419 -1.0035121252554755 0.015336290300206785 0.08893895377308916 -1.0240092712326925 0.005794406864456744 0.11378740689760372 -1.2116411142910328 0.11886113676267318 1.4470755765646413 -1.2214012482240233 0.1820683424077611 1.6811839557131882 -1.07374543936252 0.1410295807847346 1.5312429505096836 -1.0534837818278477 -0.04843123799666721 1.435437404227524 -1.2842425645406896 -0.2777873703244059 1.325352218556272 -1.2946807407695273 -0.42137498975826854 1.3078119655932212 -1.0863528562077491 0.25774863062888875 1.3324405826197965 -1.2493159837607535 0.33697214828397387 1.0552269964216092 -1.258272042622032 0.3724310565391734 0.8115720352673838 -1.1785497331495978 -18 0.3 -0.13299370488172077 0.9369382245917691 -1.2393683587597424 -0.21106101002505828 0.5314106587603219 -1.1812826047692102 -0.07976248928212558 0.23726745930120283 -1.4680477786551367 -0.10896483781033353 0.10759842048584692 -1.360531549397216 -0.11490789331818671 0.12346437396210438 -1.4050451029081379 -0.0397025733956273 0.22584606772287447 -1.522281449053003 0.021619598979671684 0.8920990700808399 -1.2791152083068253 -0.034727622674030685 0.5048527795684083 -1.0807918533571457 -0.00897123468071305 0.14356456475381238 -1.1704137555642502 -0.0037855911830567733 0.09110096193952466 -1.003130126696997 0.020415563636714578 0.0863440895066439 -1.0306843445860698 0.005488045824705014 0.10878561521077898 -1.2200922652843007 0.12763346635428396 1.4413931886062112 -1.2113785727911082 0.19584083785214776 1.6752236484154326 -1.0632544583986676 0.1493827301337756 1.5253546298300245 -1.0420805188212527 -0.03798014161126919 1.4357085808847665 -1.2762826729849395 -0.26997086176961643 1.337237789185049 -1.2806965833760156 -0.4149354789111334 1.336545909345972 -1.071130794852478 0.2684655321692959 1.3235491932796266 -1.2321948907098572 0.3391245345393732 1.0453053122845353 -1.2424497218728208 0.3700825166633388 0.8014550055593465 -1.1671656087934879 -19 0.3166666666666666 -0.13705775164612788 0.9398714063017327 -1.2319381598586487 -0.23587993522219003 0.5406940074647134 -1.162401865839678 -0.10514341198918344 0.24628636613366447 -1.4426253040033272 -0.13744315668509127 0.11480908636634346 -1.3356367897107937 -0.1468096834038131 0.13140051548754172 -1.3805358149839304 -0.061633669459381354 0.23115289150020038 -1.5006371396320581 0.018297894729294432 0.8901547804170516 -1.2713317071048453 -0.04399417006259239 0.5031328792362139 -1.0725898410496364 -0.01083613466882307 0.13889613154486907 -1.1724355039859344 -0.003944361221226331 0.09158877451360133 -1.0018076293967386 0.02424091068319004 0.08473562720253944 -1.0361638558477602 0.00464917840088433 0.10556495018265756 -1.2257427865994002 0.13642993690889504 1.4358357986634551 -1.2006703792209827 0.207407979406456 1.6674412429136651 -1.0557438274677609 0.15703188714037225 1.5191665984751874 -1.0310350776731247 -0.02822874297846133 1.435865105986172 -1.267797872421102 -0.26169108389491846 1.3477865162703622 -1.269203006540564 -0.40607083603951066 1.3620233642700537 -1.0604603849872065 0.27711283171464285 1.315712968231625 -1.2171746561626886 0.3407215168404028 1.0361266827455644 -1.2260577751745896 0.3673091252119201 0.7921221210723626 -1.1583256682416316 -20 0.3333333333333333 -0.14103492743359902 0.9428310075096434 -1.224666734634737 -0.2611684165697839 0.5516242307922521 -1.1450043327720647 -0.13352989918393238 0.252935930875827 -1.417461804288169 -0.16786387896489682 0.12060737617572882 -1.3069532178399543 -0.18257339636288583 0.1378030631760827 -1.3539627213529293 -0.08736822188890904 0.2339560785605274 -1.4785531691947504 0.01655201421509515 0.8884265901556342 -1.2622716593795773 -0.05086205238808672 0.5027465895985554 -1.0612868668317779 -0.012663529336606645 0.13593981727493049 -1.1728142941628683 -0.004994923360231998 0.09171321106932172 -1.0000436991751431 0.026228982328215904 0.0839779171729279 -1.0399414426593805 0.002848136657995344 0.10419987035990182 -1.2275586001186207 0.1451640866368158 1.4304222262916853 -1.1897204922180087 0.21690853647247166 1.6580063680167458 -1.050074383099625 0.16459448553827327 1.5126102579754737 -1.0206084410943346 -0.019250637483892108 1.4357588314976726 -1.258895954226637 -0.2530248489096552 1.3565819509242931 -1.2603647700967406 -0.39582208193494933 1.3846023430749248 -1.0562959453912986 0.28374863751247714 1.3087137060232623 -1.2041202913285078 0.34215936631701316 1.0274860166840913 -1.2092759807509785 0.3637540948556263 0.7840453492987656 -1.1508953020752315 -21 0.35 -0.14495538402385033 0.9455629683576853 -1.2178410544969855 -0.285707800102626 0.5633144946091947 -1.1287907591473978 -0.1644881564808858 0.25652166880682986 -1.3919647613664714 -0.20019145147259867 0.12505124673463738 -1.2757170142265044 -0.22086124392458453 0.14230937850076933 -1.325397539612965 -0.11824216620016577 0.2340561658833864 -1.4555078088156599 0.01619198271289793 0.8866801443895548 -1.2512752852057338 -0.05499203174954528 0.5043474765796363 -1.0454033345742677 -0.014322248851789676 0.1351697410905539 -1.1712260967751504 -0.0061496888945560485 0.09121212282907289 -0.9984375916338688 0.02648423349955647 0.083634908244445 -1.0421656568906619 0.00020684792566020085 0.10451882603624678 -1.2261214658792956 0.1535930162641852 1.4249682380269857 -1.179156221096275 0.22504708902831783 1.6473835981537557 -1.0448833224700114 0.17258273792828457 1.5057105288415165 -1.0105322135335721 -0.010935840984384642 1.4355021245504311 -1.2489651031413977 -0.2440383690175068 1.363475107143478 -1.2535897062840968 -0.38570127530461706 1.405130113970518 -1.0588163272912916 0.2888478494578563 1.3021688055549103 -1.1925889801572616 0.34366439952172073 1.0189952568347158 -1.1928907266990674 0.3591049452055227 0.7769836507356388 -1.1443246538678138 -22 0.3666666666666666 -0.1489028033710148 0.9478085936843881 -1.2119654801712714 -0.3084082922729915 0.5750114831133856 -1.1134563096536023 -0.19758892810232523 0.25690752404427697 -1.3667435103368413 -0.23454221857733792 0.12884283730004548 -1.2438546904451893 -0.2605802679693652 0.14485700333079793 -1.2952100502018216 -0.1541381686076774 0.23143285804950123 -1.4298987019321103 0.017177940400576186 0.8847359983938803 -1.2378632719009457 -0.05728474851018255 0.5082362316524491 -1.0253419573505906 -0.015511578124794888 0.13653948338578153 -1.168081832195867 -0.006988537858631426 0.09003239418107951 -0.9973557507299061 0.025754452668190972 0.08339568584088926 -1.0430959342127237 -0.0026048467271235303 0.10633906795050081 -1.2228709296198106 0.16145432745573005 1.4193122265420748 -1.1695967014646427 0.23290150983751917 1.6364735564569328 -1.0387031294481675 0.1812209565160236 1.4986953020006977 -1.0002587975327737 -0.0031396746440991085 1.4353416505469878 -1.2370982489426432 -0.23512124047997973 1.3687768326933574 -1.248044002071215 -0.37703245473781366 1.4240532225812441 -1.0655672054279537 0.2930361980468971 1.2956919331163583 -1.1821762661989033 0.3450871061659178 1.0105271264069444 -1.1780548010583274 0.35345261963670094 0.769948563101919 -1.1377621232747335 -23 0.3833333333333333 -0.15296033534079384 0.9493629806328308 -1.2075150148839329 -0.32862895613260473 0.5862825499223977 -1.098922520478953 -0.23233244892650498 0.25442911801701945 -1.3434490005884874 -0.2702053358806926 0.13256508120862906 -1.213219773244032 -0.30098362841917875 0.14575188603148898 -1.2640949099120133 -0.1932148957603264 0.22685248264983332 -1.40155583186126 0.019414758720144868 0.8825703153263322 -1.2220438863608596 -0.05876895584494688 0.5138305815771746 -1.0032621233899497 -0.01595833262265066 0.13931747609739917 -1.164348087158718 -0.007482908749834422 0.08823033786521908 -0.9968045469766442 0.025006131224329816 0.08318041644359647 -1.0427819308851936 -0.004771355322436286 0.10916507672530314 -1.219286643850185 0.1686215581642576 1.4134317978484947 -1.1614600684412881 0.24149039255203394 1.6264410073108664 -1.0304831430730435 0.19025829794033733 1.4920212618014914 -0.9894574406272849 0.004211581402650489 1.4352698206873813 -1.2233644333971385 -0.22686892320814012 1.373184586495739 -1.243048204720023 -0.37018066747983885 1.4410464793918203 -1.0727693053981977 0.29687711714361215 1.289073761071116 -1.1727509844365347 0.3459338063059574 1.0025097669903258 -1.1657233450358107 0.3474994391604839 0.7618693559954222 -1.1293761019173518 -24 0.4 -0.15713876346992606 0.9501030787920461 -1.2045860924039795 -0.34625809989042117 0.5968966208337327 -1.0854566003524675 -0.2680972578336293 0.25003429754391493 -1.3220242311503705 -0.30625111918301684 0.1361092161648916 -1.1848875930885885 -0.34152005755425974 0.14588396690078645 -1.2330330287874376 -0.23359584176795492 0.22187058551655228 -1.372164165035485 0.022248287811400744 0.8803038935174686 -1.2047806010107973 -0.059899748112168506 0.5198013596110121 -0.982006551267724 -0.015597631033647447 0.14243344459306892 -1.160927135518574 -0.007870375474843894 0.08597347933944925 -0.9965684673020017 0.02472340491890192 0.08293934164197608 -1.0412590802713846 -0.005831495542396865 0.1121346546995476 -1.2163106145980864 0.17517013826845207 1.4073896530559296 -1.1546361607053244 0.2514086630997213 1.6182168640316872 -1.0199789963773644 0.19905938363874878 1.4861936827219158 -0.9784879816910824 0.011148205477226496 1.434901838232622 -1.2089083544295218 -0.2197332516715088 1.3774714219711532 -1.2381529860089246 -0.36454278365057047 1.455578708597153 -1.0779121835690049 0.30069194448399933 1.2823033523569114 -1.1643950179694882 0.34574533223793597 0.9954196976870302 -1.1561724580497799 0.34216613504385457 0.7523002355720722 -1.1178328092447702 -25 0.4166666666666667 -0.16137172266158942 0.9501119730948773 -1.202654519502564 -0.36157654504964576 0.6065235481711881 -1.0735756095397178 -0.30459039282544376 0.24544010296016638 -1.3005550954418628 -0.34265213206415973 0.13924462129981852 -1.1586898070941019 -0.38177463467710837 0.14658924960432757 -1.2031794127313187 -0.27456279358036767 0.21788958261787647 -1.343528629342868 0.024563003780656262 0.8781480098704462 -1.1878173657248439 -0.06069491271540117 0.5247976789501865 -0.9638416082407807 -0.014579427021411786 0.14495506819952447 -1.1582566707497146 -0.008442839812046871 0.08362456210290962 -0.99638624124761 0.024636723547484727 0.08251044590542737 -1.0388836686675325 -0.0058556266475093925 0.11433406155638451 -1.2141975572381056 0.18129778393629664 1.4012338872702634 -1.1485414032913543 0.2627379062366782 1.6121186590168188 -1.007446600118298 0.20702147418722028 1.4814479850345212 -0.9681871162309398 0.017828744867804 1.4338881074244858 -1.1946354969482738 -0.21381924953250697 1.3822703664754203 -1.23314215824259 -0.35917743185289974 1.4677209120596704 -1.08074462045045 0.3044725922993978 1.275479101182261 -1.1571642518500047 0.34443099174336456 0.9891686483910285 -1.1490055623687758 0.3379922847347823 0.7417457532136891 -1.1037668477965785 -26 0.4333333333333333 -0.1655026883026276 0.949810519705981 -1.2003209919118736 -0.37515017641499315 0.6147348872232554 -1.0636338798675549 -0.3420021882784946 0.242599935063365 -1.2777090746693565 -0.38016103776361554 0.14252487693526306 -1.1334503579190724 -0.42157684378234567 0.1490197590104369 -1.1755285644106566 -0.3160499757668893 0.21557311898519316 -1.316650736082144 0.025498730977624496 0.8762830252201075 -1.172726198363987 -0.061149825388912074 0.5279435262093934 -0.9498483465768177 -0.013234768108774603 0.14631820712141627 -1.156380693408639 -0.009307895154253088 0.08158196025652187 -0.9960721450400819 0.02428381337309814 0.08178810620965431 -1.0362351596917103 -0.005226364507554374 0.11517285560999575 -1.212742804454741 0.18716793011034424 1.3949653429787092 -1.142499664938409 0.2750518846948283 1.6077258145918174 -0.9934804932622108 0.21389033796393508 1.4775595473270118 -0.959213092564736 0.02451382958329297 1.4322259945917737 -1.1808002337234247 -0.20890074750199067 1.3879759236946492 -1.227947566184491 -0.3534484472946507 1.4782145008502006 -1.0820197969496934 0.308016685182771 1.2686990630018111 -1.151018385491224 0.34220216768750966 0.9832523500879298 -1.14349264938433 0.33498248728831065 0.7313900467210515 -1.0890031002627734 -27 0.45 -0.16922859067195367 0.9499206115896185 -1.1953334855696918 -0.3876868356933439 0.6214344063064057 -1.0553193918633015 -0.3801525938030294 0.2427152481639368 -1.2538739552498919 -0.4189412575728482 0.14731680655465176 -1.1080432212733875 -0.4607779888009497 0.15369087031495762 -1.150692127274724 -0.3577973863638751 0.2152691332890708 -1.2919485796788337 0.024893005824318113 0.8747972183241136 -1.1604140054757357 -0.06148720962606926 0.528960521012617 -0.9400369083414268 -0.012015143669911065 0.14638611245619265 -1.1551685100180704 -0.010302715718815485 0.08005190173649007 -0.9956464413486324 0.023607190853014076 0.0808520178718411 -1.0338482403472606 -0.0043915899571706244 0.1145854135876248 -1.2115736069577487 0.1927648167691147 1.3885895259952692 -1.1360117147994915 0.28750531453350536 1.6040242439721741 -0.9793248846085164 0.21978570853124266 1.4739304060398208 -0.9516838931438146 0.031329494700845346 1.430120155674091 -1.167527950073826 -0.2045721174959234 1.3946112920323144 -1.222576169094915 -0.3472856628224424 1.4879292747285717 -1.0821910648615987 0.31120093877914107 1.261979373523445 -1.1459285679538145 0.3394901428193596 0.9772065557270878 -1.1388054951946789 0.3328678487213647 0.7223771666492528 -1.0749025264224377 -28 0.4666666666666667 -0.17220721227509592 0.9511147769587119 -1.1858394140002044 -0.3997613748115564 0.6271489819321125 -1.047608928893191 -0.4179518582203687 0.24582960157949957 -1.2303459574971094 -0.4578708947588279 0.15486485626266974 -1.082427910374431 -0.49873510505014407 0.1607042704274345 -1.1288774853459946 -0.399189254768435 0.217283661713707 -1.2695168772550744 0.0230419665102749 0.8737013800574613 -1.1513164778229172 -0.062057944619312945 0.5281071774692848 -0.9337337708441392 -0.011308872191437397 0.14543167192684264 -1.1544798815230353 -0.011158637760632433 0.07901991166169237 -0.9953786716696384 0.022898007984520217 0.0798705709667985 -1.0320757898923048 -0.003733467003902832 0.11299556925172125 -1.2104025764359156 0.19793611027830152 1.3821989529128946 -1.1288788290773621 0.2992195520955285 1.5999051571624172 -0.9666031860127516 0.22515733039563002 1.469828766126502 -0.9452308898445675 0.038158430874543736 1.427754312269444 -1.155046472780402 -0.2004435451829196 1.4018194700618383 -1.2170294116651443 -0.3409253482960137 1.4974885943393585 -1.0813714883162118 0.31408837128884 1.2552773251295963 -1.1418056070138065 0.3370279456527293 0.9707987908700982 -1.1341006714114505 0.3314016924805802 0.7152696878554314 -1.0617696015176386 -29 0.4833333333333333 -0.17438549991499602 0.9534816411591278 -1.172221235849167 -0.41162927777172686 0.6327138480109831 -1.0394884992087605 -0.4540534498378205 0.2513706678355144 -1.2080908930749077 -0.49513328402612605 0.1652433017241726 -1.058014677432592 -0.5343754956239646 0.1700626829995782 -1.1097707461315542 -0.4393675544504144 0.22156974660626572 -1.249192564723837 0.02027542456647544 0.8728784843978026 -1.1453990971181616 -0.06302240618134623 0.5259275056980356 -0.9299797838438666 -0.011244957011518349 0.14399560932625788 -1.154253137131342 -0.011677895555681881 0.07834964421046567 -0.9955992336407475 0.02243495538220269 0.07902853859881807 -1.0310150717685804 -0.003475088567090025 0.11103694400151257 -1.2092011892525163 0.20259589948818466 1.3759965272057342 -1.1212523444188984 0.30980880616136774 1.5948064992193196 -0.9561358167300675 0.23069567559872514 1.4645647023154869 -0.9392571252140518 0.044688947167284186 1.4252172716662148 -1.1437554350253383 -0.19633816634949505 1.4090527511793531 -1.2114349039369852 -0.33446057981228344 1.5072632941344444 -1.079644202389332 0.3168219808223695 1.2485808547534698 -1.1382929822823284 0.3356629680829665 0.9639994193258427 -1.1287069594978776 0.33048962575509233 0.7100101422997968 -1.0493309567140086 -30 0.5 -0.17616706514134164 0.9564401793810299 -1.1569712870343714 -0.4232975948926023 0.6386813076825172 -1.0309224100388568 -0.48762231685137014 0.25880576697375746 -1.1872661953394483 -0.5291011309914729 0.17724381521200738 -1.0370447431862972 -0.5669083224350543 0.18160791738868529 -1.09259409883172 -0.47730818947856973 0.2277183078471754 -1.230630024940236 0.016919270901108174 0.8720545447747801 -1.1417904241112817 -0.06415224087635081 0.522950652217476 -0.9277834450804237 -0.011680014596082202 0.14262670237885003 -1.1545283688493755 -0.011760735681651542 0.07787366321782643 -0.9964061724269335 0.02231029985181872 0.07848856295360658 -1.0306008884790319 -0.0036248509361657645 0.1092376317518857 -1.2081750560416697 0.2067630270708108 1.3702374256563954 -1.1134862390666036 0.3194949138084542 1.5888948189762115 -0.9474313274988463 0.23705437043089925 1.4576465843983475 -0.933202001971071 0.05049380488766271 1.4225525975934867 -1.134334198237638 -0.19242921678375377 1.4157791236725394 -1.2065041469479618 -0.32771383845727514 1.5174805587501001 -1.076928866703914 0.3195009773741981 1.2419671959500727 -1.1348204439720284 0.3359709738253929 0.9568547172689806 -1.1223726602736352 0.3301460940419738 0.7061359325461648 -1.0373826750082449 -31 0.5166666666666667 -0.17813722978947388 0.9592799586083036 -1.142628362898413 -0.43465611366867524 0.6450220646784588 -1.0231301659770862 -0.5183844508458401 0.267686196300247 -1.167729794854836 -0.5590804493920238 0.18912083925958023 -1.021350219025776 -0.5962710868325497 0.19482570433767674 -1.0765565512867994 -0.5121977660495586 0.2353224581851978 -1.213394753310578 0.013459300331265045 0.8709419747221339 -1.1387176626982127 -0.06492292824169532 0.5196103362794936 -0.9262417867081932 -0.012340546401666376 0.14164070642464488 -1.1553024146293844 -0.011353098482415353 0.07744459643128628 -0.997631668364084 0.022470032805869195 0.07830688119904755 -1.0307655947835728 -0.003999998523404626 0.10790892719048051 -1.2075977752780194 0.21043967850785764 1.3650921352697463 -1.1058256325053288 0.3286993729658914 1.5825320724313645 -0.9397139870882177 0.24461660187391526 1.4490191823584524 -0.9268685769259671 0.05520558114929861 1.4198318601802153 -1.1275739812573096 -0.1891701888207652 1.4216294991069787 -1.2034070712332992 -0.3204104039749678 1.5282373584195803 -1.0729325912403773 0.32213646361426207 1.23558264864564 -1.1308423609432323 0.33798773431415385 0.9494071304521009 -1.115465467649596 0.33040314163773266 0.7029399396591968 -1.0260995492694058 -32 0.5333333333333333 -0.18063742453722254 0.9616330360010503 -1.1305105401382907 -0.4455547609172053 0.6512239230654646 -1.0177188583595906 -0.5463774750120076 0.27743219436887745 -1.1496232208077932 -0.5856098628833627 0.19967282612614207 -1.011135910637083 -0.6229828372020324 0.20882844567212303 -1.0612819622481169 -0.5437945508175981 0.2440900381631697 -1.1969767986393753 0.010362515849527831 0.8694229673608411 -1.1342696441625248 -0.0648332142154741 0.5163050073056561 -0.9246810703148167 -0.012962423786505927 0.1410399231988657 -1.1562897167157284 -0.010467232101612062 0.07696415634705372 -0.9990513334079222 0.022759147067013662 0.0784084776252318 -1.0313992218588108 -0.004370635458701669 0.10716620491576803 -1.2076370997008172 0.21361522377853262 1.3605002807816189 -1.098311766903521 0.33766201822770164 1.5757129194467092 -0.9328299365373385 0.2535535208111766 1.4391437316673585 -0.9207576399810082 0.05874735971381923 1.4171583110807306 -1.1240178139533263 -0.18699408957927244 1.4264670260124679 -1.2028665490281756 -0.31234301154250615 1.5394540063754474 -1.067545154952394 0.32468724659718345 1.229574522528294 -1.1259088116342941 0.34120138649987747 0.941770807483417 -1.108963101230524 0.3312659715786536 0.6995499886182975 -1.0161230970683042 -33 0.55 -0.18367281314476833 0.9634299681223784 -1.1209796534750216 -0.45589677745466206 0.6567634240838147 -1.0152355431110571 -0.5718988523897053 0.2875006886172992 -1.13321207304783 -0.6101042929378648 0.20933907558628836 -1.0039816860115227 -0.6477978675120394 0.22273201357442113 -1.0467954263297594 -0.5723391773013288 0.2537344694644978 -1.1809104503091348 0.007780305849263617 0.8675718454941205 -1.1274180257350497 -0.06379494866163879 0.5133376119284314 -0.9228216929647884 -0.013415173553066399 0.14066998826064447 -1.1570036327659778 -0.00930873530613658 0.07638861834362551 -1.000482761528536 0.02294538111328637 0.07862723391044064 -1.032331365811034 -0.0046708796631762545 0.10701622039396227 -1.208238977837789 0.21638132070923663 1.3562001053307262 -1.0909840970632876 0.34639330443812116 1.568189819907681 -0.9269123616049124 0.263852235514655 1.428797069058103 -0.9157496282069912 0.06136732549304931 1.4146183717991385 -1.1236474583099267 -0.1859970828314306 1.4303726410017341 -1.2046711550162321 -0.3034589744315514 1.5509531995011014 -1.0610630683451103 0.3271493609033501 1.2240616400082809 -1.1196482188983305 0.34498642782001676 0.9342088054520588 -1.1039333066100325 0.3326911642451029 0.6951290068967361 -1.008383688972254 -34 0.5666666666666667 -0.18716157224025676 0.9646181638761036 -1.113966035737067 -0.46566767979321616 0.6617196475663767 -1.01431450680193 -0.5955082129952134 0.29777253228880574 -1.1183522697415307 -0.6341720090228028 0.2200433301954995 -0.9956232078361742 -0.6714648661187543 0.23610955232372915 -1.0331932630742964 -0.5984208815067864 0.26392755038021004 -1.1650728301157345 0.005500744529203873 0.8656177013919791 -1.1186515090555917 -0.06233911215839846 0.5109017071560058 -0.9208636279214265 -0.013769580898765814 0.14048866597369014 -1.1571541221187824 -0.008259311469252892 0.0757321653700776 -1.0017209571918293 0.022828388924294184 0.0787376167492016 -1.03348725003272 -0.005047342457457355 0.10744796389949825 -1.2091254355378827 0.21893862870889338 1.3519202867320064 -1.0840156139465078 0.354764447689176 1.5599240483534338 -0.9220425114505819 0.2750704343341429 1.4187981200180169 -0.9122337005216934 0.06348174937946947 1.412287598004937 -1.1253457781598264 -0.18584934301780429 1.4336552667580988 -1.2077200375692025 -0.29384552739676906 1.5626237671550427 -1.0538302951224934 0.32960329497890967 1.2191159381875947 -1.111869243458674 0.3490280350629199 0.9270198644087486 -1.100878687349472 0.33459266409347094 0.6893040976315492 -1.0033280215134404 -35 0.5833333333333334 -0.1910746393887531 0.9650814199529043 -1.109182552695356 -0.4749366808041007 0.6667429371924909 -1.012408503314233 -0.6179096097028821 0.30858903737157956 -1.1043640012687945 -0.6590912230562385 0.23355768943315192 -0.983065212212066 -0.6946632335381209 0.24903587078014877 -1.0204214878134004 -0.6229345456590935 0.2743557706668815 -1.14957061266663 0.002980829168599081 0.8639123430270407 -1.1099753330144588 -0.061416523449248195 0.5092260661797982 -0.9192795678840543 -0.01420085579157436 0.14064129975204612 -1.1568608813474988 -0.007649858793734902 0.07508875585220232 -1.0025048945445372 0.022363063236406775 0.07855039047094514 -1.0348514479227162 -0.005670734118193656 0.10841985192247643 -1.2099412997025658 0.22146679556270066 1.3475267378419553 -1.0776320109720625 0.3626378013636357 1.5511670092863774 -0.9184980932338259 0.2861993117855521 1.4098331681095142 -0.9098173756109307 0.06553551089958502 1.4102937427911428 -1.1266703977887416 -0.18591336833805575 1.4368572132031936 -1.2099169445848499 -0.2835709490275926 1.5744322860842854 -1.0457869036720329 0.3320670255379381 1.214734412035101 -1.1028419701981018 0.3532189009582732 0.920396306534927 -1.099539682598032 0.33690381642236455 0.6823682223652919 -1.0004055571993737 -36 0.6 -0.1952275412843392 0.9648551695844209 -1.1060449892437805 -0.48383615902791366 0.6723786360914035 -1.0076019519037493 -0.6398246800890196 0.32038003392399217 -1.0903644542626998 -0.6853684789514556 0.2500864818946266 -0.9667126894263526 -0.7178949698817533 0.2618365241364203 -1.0080950324947358 -0.6468113557896951 0.2849580774579608 -1.134266603876595 -0.0005031663568064314 0.8627468120071713 -1.1038394653819517 -0.06183061142970237 0.5084707962556141 -0.9182354253341195 -0.014827875225434788 0.14126297752553377 -1.156469260508868 -0.007598538517402192 0.07461474618385298 -1.002594158882761 0.021648649039089436 0.07811851688121575 -1.0362007510478828 -0.006585458812530566 0.10987552756131228 -1.210448568208017 0.22406575448315022 1.3430317194992394 -1.0719067870821017 0.369977787223541 1.542228777167002 -0.9167864599768262 0.29607602195753896 1.4023345787480523 -0.9077647161372707 0.06779155678991344 1.4086657423213322 -1.12528085652448 -0.18548879137619906 1.44057905883751 -1.2087627260533877 -0.2725417282827486 1.586256603981968 -1.0364851529692871 0.3341776692577254 1.2108307603912554 -1.0939116186665343 0.35740543063761687 0.9144117074459839 -1.0992159478482542 0.33969123092992604 0.6749136421969817 -0.998678839408567 -37 0.6166666666666667 -0.19892585694318943 0.9644530382906034 -1.1031088701469312 -0.4923320757951638 0.6787609008646512 -0.9995003234391174 -0.6617996686705709 0.3332728557754397 -1.0755834153555812 -0.7123367509163406 0.268231129698208 -0.9487901382553836 -0.7410459271311601 0.2747599146347078 -0.9954480893328717 -0.6705465026703464 0.2960983275830861 -1.1187649510541835 -0.005419210119161639 0.862156718426323 -1.1015332024730446 -0.0636036184351413 0.5084314298235244 -0.9170437251903442 -0.015611371106006121 0.14225618730592068 -1.1561219489436636 -0.007992272488316384 0.07449447267998702 -1.0019040503486156 0.02089130303620639 0.07779543681650153 -1.037039666990679 -0.007711325592818911 0.11174557783694727 -1.2104966121173382 0.22678312493744152 1.3385373855764158 -1.0665266454495645 0.37683874760070607 1.533362292180641 -0.9173250225453999 0.3041090362107042 1.3963399501085985 -0.905353062947741 0.07010819974616722 1.4071201606829908 -1.1207489365893744 -0.18417510926977165 1.4451883488397101 -1.2029395085045498 -0.26055736693218406 1.5977902880878598 -1.025496443759045 0.3350716346224994 1.2071540016130116 -1.0879183866540718 0.3613899382885898 0.9090307564865564 -1.0992716933457967 0.34324578117586935 0.6674982368510844 -0.9974563368808698 -38 0.6333333333333333 -0.2011191781861913 0.9648547421223309 -1.0980731923272518 -0.5000605265736944 0.685818021088923 -0.988642058660632 -0.6839234847309188 0.3470498273350776 -1.05952139939138 -0.7385255068565642 0.2862449645709298 -0.9303753622565302 -0.7631201965104959 0.2877488681648511 -0.9818429333187446 -0.693861149198248 0.308317846676826 -1.1027526121037479 -0.01163370162126766 0.8619590882005299 -1.1025532679714822 -0.06586492844355692 0.5086687205493595 -0.9144287628204909 -0.01636363221660533 0.14331144951371272 -1.1555336889552026 -0.008568109765379925 0.0749087657075738 -1.0005636794245696 0.020372586926822565 0.07795936770102822 -1.0369157259656132 -0.00890325370969442 0.11378784831969194 -1.2098004368340858 0.22958333074919363 1.3341915654115784 -1.0607308710433239 0.3833489598897379 1.5248616822042398 -0.9199532347153089 0.31049570341661215 1.3914936872176327 -0.9020012591684876 0.0721188012909962 1.4053565342917804 -1.1140151313537687 -0.18207374701973883 1.4506534056776486 -1.1929403787270099 -0.24754732465211457 1.6086613323517625 -1.012731346944535 0.3338128096565532 1.2032670809685255 -1.088069801008945 0.3649950395111579 0.9041791079035728 -1.0993470676404513 0.34794482425751827 0.66064617501909 -0.9962521640864719 -39 0.65 -0.2015055262366446 0.9667323307785285 -1.0898697381111617 -0.5066282216556559 0.6934182890631287 -0.975905394648527 -0.7058174885738887 0.36138362684804765 -1.0421705001774304 -0.7625035243128575 0.3034248049155576 -0.9108323479789304 -0.7829157776361624 0.30055363181707967 -0.9673128569939866 -0.71600536682153 0.32198259202986895 -1.0861623702408458 -0.01864851345416309 0.8619355576425443 -1.1054850031603347 -0.06763950389516876 0.5089464648402305 -0.9098645516089409 -0.01693321111290742 0.14415267323503936 -1.1544073283595946 -0.0090870590573413 0.07586009186445174 -0.9988409105140887 0.020208871678772545 0.07868060144671149 -1.0358583814760296 -0.010078800818579441 0.11555548184687421 -1.2080970172619434 0.2323646258460936 1.330154387920141 -1.0535369434099637 0.3897301606911582 1.5171546262425861 -0.9234953919507106 0.31570587986871534 1.3872240753753544 -0.8973973466113568 0.07365500768409074 1.403459799034593 -1.105674492960899 -0.17958919119797412 1.4565925381255986 -1.1801149127946973 -0.23376287812492239 1.6185820732207392 -0.9983796030147206 0.33015727327514244 1.1988697249211155 -1.0953854198261974 0.3680275917154385 0.8998764188120211 -1.0992479038809617 0.35383613722471674 0.6547466836247555 -0.9948844464917179 -40 0.6666666666666666 -0.2012111503575064 0.9697776654358887 -1.080400641232243 -0.5120265439736716 0.7014134909579824 -0.962332729094107 -0.7269192994114205 0.3759470449349993 -1.0240969367297827 -0.7833094476747646 0.3202595298076534 -0.8892450746994256 -0.7999984623665606 0.31312039308109507 -0.9524530110185198 -0.7365196872751701 0.3371735611190711 -1.0691566896903009 -0.025918337457981434 0.8619747181488101 -1.1089678402504852 -0.0686191820639823 0.5092684292020672 -0.9043776667100702 -0.017304206284720826 0.14465815569360993 -1.1529406200802501 -0.009407445017329681 0.07703682291261141 -0.9970989199970489 0.02025503877204243 0.07965261839107673 -1.0344464030873903 -0.011213314402518071 0.11660740338208857 -1.205628321941348 0.235106484850314 1.3266094446779562 -1.0440896591851518 0.39616116082888786 1.5107138883361737 -0.9259895909693119 0.319958281635708 1.3829525299344378 -0.8914572535605246 0.07498712697019262 1.4017445737751557 -1.095755954424334 -0.177076286341276 1.4625069053172304 -1.1657309401071128 -0.219657478953456 1.62735665275193 -0.9826240870115754 0.3249425498853659 1.1941480177141606 -1.107230052316356 0.37036566613783617 0.8961950249029214 -1.098834308852273 0.3604397342217368 0.6498763087415 -0.9936319131788718 -41 0.6833333333333333 -0.20183155623176627 0.973177138419815 -1.0731395687694782 -0.5166725595460858 0.7096602085715931 -0.948751833917451 -0.7466178496577308 0.39036311824291375 -1.006145407015284 -0.8007412131177057 0.3373255046272122 -0.8658755661469547 -0.8147867388743656 0.32582494746659163 -0.9378675757908392 -0.7554649945103626 0.3535815893036358 -1.0520825225914416 -0.032818751156818114 0.8621177213491057 -1.1118268516446759 -0.06897485044167509 0.5095632153859154 -0.8995537528694288 -0.01740566604743427 0.14473052389596391 -1.1516347060806944 -0.009397608223889343 0.0780433071872213 -0.995802228645262 0.020454641477242498 0.0804065867677323 -1.0333365907056042 -0.012118371287299479 0.11669879830455483 -1.2031625655032359 0.23795277617824057 1.3237582200481972 -1.0319829990668394 0.4025631551528561 1.5058466438897702 -0.9253945723631947 0.32317730487500546 1.3783532174593611 -0.8840982701707286 0.07668807340677194 1.4003906667780475 -1.0846398678785494 -0.1746682028767884 1.4680556161061589 -1.150760977065922 -0.20554515131342355 1.6348631537196823 -0.9655049160092773 0.31957851431935047 1.1895849125027451 -1.1188701466010735 0.37216272950122986 0.8930892922947987 -1.0980328143960398 0.36713905290373455 0.6458498694794628 -0.9928630237880789 -42 0.7 -0.2043613403932461 0.9763977469869234 -1.0709454139172336 -0.5211104958950281 0.7179422462867238 -0.9355595495078156 -0.7642404083181722 0.4042158829764392 -0.9892358791107955 -0.8153601724325721 0.3544611194007254 -0.8424688539902796 -0.8278833499051296 0.3391167759820271 -0.923623174490793 -0.7729872196133424 0.3703410364053465 -1.0354072118959232 -0.03885338041543122 0.8625350782732798 -1.113302892771432 -0.06892714488362067 0.5096526962695751 -0.8963101869418415 -0.017068158133819917 0.14426349370301964 -1.1507845030954087 -0.00894957094211245 0.07866030451215124 -0.9953882271089948 0.020967197450192276 0.08061069300126465 -1.0328298780736165 -0.012470423578370927 0.11590334608192818 -1.2014746458331682 0.24101139448775896 1.3216487036323394 -1.017682910407831 0.4086516222544487 1.502502381182494 -0.9201901930631379 0.3252692734753836 1.3735303758376158 -0.8752595755474493 0.0790146669434454 1.3993186660426191 -1.073701517115843 -0.17233424911239803 1.4731599806191655 -1.1357928870399736 -0.1914585790752596 1.6410892994552282 -0.9471931585735298 0.3151274276941699 1.1854986777412426 -1.1264243434048522 0.3737958380240243 0.8904288783991114 -1.0968330404497546 0.373625423886086 0.6424716978928707 -0.9926424343640109 -43 0.7166666666666667 -0.20914973074023915 0.9793450353936556 -1.0749755009238036 -0.5255831247147027 0.7258994539481228 -0.9230118984889115 -0.7791597452933616 0.41704278714534015 -0.9743568136631264 -0.827775355576744 0.3711786491383258 -0.8205306773354936 -0.8395088064650058 0.35296505744891904 -0.9091308514083809 -0.7889108362129336 0.3862890975176284 -1.01962683020453 -0.04396125927466005 0.8634263287532598 -1.1133830827681679 -0.06873578140940137 0.5095244550196316 -0.8947270778027895 -0.01630834232196202 0.14331617869105712 -1.1503265046366045 -0.008118010212722754 0.0788017363790851 -0.9960545135658104 0.021842909813460213 0.08023260159292281 -1.032886514249121 -0.012161254845641569 0.11466812011349102 -1.2008547559588811 0.24404970401322065 1.3200262557646665 -1.0028088472596999 0.4142211743436977 1.5002000249259435 -0.9100061568671415 0.32644953493476125 1.3689041712762966 -0.8652522804975119 0.0816211289568111 1.3983892339860537 -1.0644030537013576 -0.17005299829917386 1.47792923397373 -1.120781243087015 -0.177347478087575 1.6461170637912403 -0.9283903996242118 0.31199816104808464 1.1819979674037646 -1.1281272073896054 0.3755900336829938 0.8881656428719676 -1.0952253782180894 0.37988099724128804 0.6397507172705849 -0.9927734927134815 -44 0.7333333333333333 -0.21587741897051566 0.9821737427702943 -1.0835803761951401 -0.529813566010392 0.7331202023266554 -0.9114381262885105 -0.791013809998346 0.4282922286260613 -0.9621560534176505 -0.8381431641578564 0.3873477053827119 -0.7997184412265754 -0.8494809364355063 0.3668900588896325 -0.8936088776261478 -0.8026891086329178 0.4006514035133713 -1.0052517169470991 -0.048400155809399256 0.8648679688365439 -1.1125290350448818 -0.06875120156669327 0.5094303285866711 -0.8944374501654409 -0.015425773222186741 0.14219100417020386 -1.1500607125827889 -0.0071436489108826695 0.07847404794835225 -0.9976548655227031 0.02287038600466445 0.07951767612298848 -1.033293876063701 -0.011429353374384247 0.11367865685464205 -1.2010398632459227 0.24655071126860437 1.3185430379130516 -0.9894043362686418 0.4192593700744937 1.4981830901267041 -0.8959252492779085 0.32731956015282093 1.3648989727878085 -0.8549341469297099 0.08412868845301187 1.3976986922078367 -1.0565777369798817 -0.1678749617660034 1.4825257688612454 -1.1050089579318927 -0.16324789530664557 1.6500624591435165 -0.9101063566296792 0.3102901257689245 1.179254580682243 -1.1237099991819952 0.37767453872398893 0.8862492784065577 -1.09329656108969 0.3859580599062035 0.6378332620352607 -0.9930276283566456 -45 0.75 -0.22320414286837054 0.9850528673106993 -1.0918604507867626 -0.5332122886248934 0.7393286242869681 -0.9010971006682469 -0.7998245223965711 0.43747025027714914 -0.9524031586920652 -0.8463176245831159 0.4029618065630314 -0.778792689962951 -0.8574371836887817 0.38015939811386057 -0.8768719244712656 -0.8136430048396674 0.4132409628342439 -0.992767814279124 -0.052484230529466595 0.8667756968858333 -1.1111133522765047 -0.06932054484519502 0.5096597819392049 -0.8950746300476409 -0.014760409668754124 0.1413036236822199 -1.1499287112322225 -0.006330532832791726 0.0778839613730831 -0.999729970695775 0.02374749396410541 0.07884636464600368 -1.0337718500470554 -0.010649035693348099 0.1135226723651804 -1.2015331519031835 0.24811458692178487 1.3171269029049442 -0.9785568360096804 0.42379078249503993 1.4957923010886256 -0.879889245716018 0.32849287588395465 1.3616735074412347 -0.8452949144498343 0.08647919823108731 1.397529677794864 -1.0486614762879016 -0.165787112540378 1.4870108755844007 -1.087602143463054 -0.14922717739504898 1.6530236704880976 -0.8929695528430807 0.3100954083049905 1.177563174815711 -1.11369577091737 0.379957151629785 0.8844886833881807 -1.0913293809271147 0.3918425830587384 0.6367725662168529 -0.993350690852735 -46 0.7666666666666667 -0.22911724304167544 0.988031984805337 -1.0939959508856347 -0.5352274294490267 0.7444351952211197 -0.8919754038344287 -0.8058005112069565 0.44439923752738203 -0.9441566316512429 -0.8518064587249605 0.4170408509554783 -0.7579318479514765 -0.8626536671408895 0.3912116368749876 -0.860446252406432 -0.8212976043999586 0.4238822828708038 -0.9823534854340195 -0.05634890231677588 0.8690515656480037 -1.1091605314505026 -0.0706431676986685 0.5102955018031001 -0.8963660084864858 -0.014506375722225181 0.14097114469421837 -1.150052979636012 -0.005881327618933931 0.07741703554132442 -1.0016368985870039 0.024251520667998815 0.07854098905485213 -1.0340961322459576 -0.01011583848389371 0.11433844881709435 -1.2019200920760793 0.2487583347152877 1.3159942424631266 -0.9699592898926636 0.42772815939683184 1.4927885376527943 -0.8637858003576842 0.330102864497844 1.3590860506293012 -0.8367397903341657 0.0886915600733195 1.398089127624561 -1.0392580469273052 -0.16377935880845731 1.491290124429989 -1.0683198716293445 -0.1353950862498877 1.65503523370778 -0.8770495759655436 0.3114599883608821 1.177141533610436 -1.099299139456452 0.3821112054552721 0.882782364352941 -1.0895129853752223 0.39739590055285523 0.6364707282314576 -0.9939080932617222 -47 0.7833333333333333 -0.23225041785757375 0.9910582949628635 -1.0872023717222212 -0.5355542945898218 0.7484296462641646 -0.8837418285631238 -0.8090101504696282 0.4492727578108562 -0.936352550532108 -0.8536767292741871 0.4271101912644388 -0.7397615512077057 -0.863930847196578 0.3975098748617574 -0.8475468673226806 -0.8256160381174017 0.43204350433437433 -0.9735232437561135 -0.05981700667224867 0.8716325167238991 -1.1064984026710833 -0.07263418344839326 0.5112604657204178 -0.8979305340767392 -0.014713727671872885 0.1412463621107724 -1.1505113459970904 -0.005783246118393728 0.07739220585731317 -1.0028141841640943 0.024317770467573045 0.07871897734305057 -1.0341870297723663 -0.009956900179994687 0.11574491346235968 -1.2019696267173177 0.24884556682217487 1.3153431568343388 -0.9626915869352609 0.43089614562613965 1.4893758144793616 -0.8489500696034904 0.3317742666400584 1.356829663478591 -0.8289350283321875 0.09074510710345547 1.3994465178991624 -1.0275886266143204 -0.1621506268428027 1.4952242203070194 -1.047895813239189 -0.12199048349229036 1.6560681287423291 -0.8620563698316019 0.313929656400208 1.1778881917644082 -1.0829368948361542 0.38371182458092684 0.8813213059227452 -1.0876705400568425 0.40241458587642687 0.6367458661595649 -0.9948640841317025 -48 0.8 -0.23268611207653006 0.9940122567551921 -1.07295239152102 -0.5341753038896668 0.751319283978779 -0.8758852238804885 -0.809311409731709 0.4523986008916976 -0.9280563297314693 -0.8512669591980931 0.4307663157872949 -0.7274695077044501 -0.8605737598118413 0.39767703566913293 -0.8398460755449438 -0.8268267973676452 0.43723889434299296 -0.9652729139325147 -0.06253225239755154 0.8743729576815032 -1.1029261343946983 -0.07485491892694637 0.5124743838377213 -0.8994413606495532 -0.015288108005545248 0.14194914152238683 -1.1511146004996595 -0.0058594757522431205 0.07784906773284091 -1.0030430113485733 0.02407928928078123 0.07929155905242286 -1.0340295967422841 -0.010087433258904323 0.1171260266234164 -1.201613302607176 0.24872661676618682 1.315184486652428 -0.9560558155586292 0.4331388916106991 1.486028477325008 -0.8360908621926693 0.33301024168133 1.3545987514029307 -0.8213752983782279 0.0926909146624362 1.4016168482906375 -1.01319946198026 -0.1613663275129586 1.498715189038615 -1.0276095542213648 -0.10928111922662018 1.6560594805748348 -0.8474059497782298 0.3161874728304487 1.1793037015189516 -1.0685589253214185 0.3845266940661375 0.8803796798621839 -1.0855433461074635 0.40678571385396883 0.6373536400143618 -0.9960903786555327 -49 0.8166666666666667 -0.23131838231725074 0.9967628674903967 -1.0545441223750769 -0.5312905746259924 0.7531446821244111 -0.8679866163117774 -0.8065110446414293 0.4538158722990061 -0.9185045731040171 -0.8450342152902892 0.4278641894302368 -0.7219121025915937 -0.8532659720144308 0.39323279394370836 -0.8348911096212972 -0.8248667203923081 0.43946869539406586 -0.9568013326758702 -0.06414487193919206 0.877110690381066 -1.098234056171573 -0.07663729115475852 0.5138446867073145 -0.9009462781473044 -0.01593129094226206 0.14286898511908908 -1.1514263578049175 -0.005963380014438241 0.07860004550889932 -1.002442032075877 0.02380253959325523 0.08011378243397689 -1.0335148962592804 -0.010232373772925326 0.11798922259007266 -1.2008729752886393 0.2484709025522222 1.3154228209543841 -0.9497649591123798 0.43437839810147266 1.4833175254133497 -0.8254244465307397 0.33346790007072963 1.352317654446389 -0.8139433356856596 0.09458229872245241 1.4045539144556176 -0.9963395709025141 -0.16154580862229168 1.5017006653575704 -1.0085622004619323 -0.09748244012454822 1.654945133235382 -0.8325329645040335 0.3169399336274992 1.180805621926838 -1.0594251350152004 0.38470200099153884 0.8801117897898998 -1.0831150838023142 0.4105563967726313 0.6380909787083086 -0.9970922747318639 -50 0.8333333333333334 -0.229090749281 0.9992111978461371 -1.03522386431877 -0.5272195387328183 0.7539541575386649 -0.8599745420194125 -0.8005081589244929 0.4532091422937232 -0.9074410259598942 -0.8361022072648233 0.42025010066229884 -0.7215800726661421 -0.8431884592714439 0.3867102980382079 -0.8287179806136903 -0.8192190855309656 0.4389211541095954 -0.9477828511326803 -0.06444024880595943 0.8798030501940867 -1.0922923927462616 -0.07742546738500629 0.5152316628021039 -0.9026963838744939 -0.016174802874315775 0.14387109501949294 -1.151042252802965 -0.0061099388884648465 0.07942967216383569 -1.0013076524917088 0.023704313273106584 0.08111952509957983 -1.03247307578579 -0.010046074910839187 0.11816259927634294 -1.1997951201520054 0.24791717745218605 1.3159630663985697 -0.9439346544801158 0.4346074501699203 1.4817113951559047 -0.8167941534409503 0.33303563126076785 1.350212866299061 -0.8069354872522176 0.09616182134604193 1.4080139961425557 -0.9786720452136852 -0.1624150728483198 1.5041523110004655 -0.991242700822426 -0.08691729858635178 1.6527065722304706 -0.8173977954158043 0.31640844797103257 1.182196286775905 -1.054471011403701 0.38463703395669097 0.8805915546287187 -1.0804625991293857 0.41386407626911614 0.6389822342085396 -0.9971296283783231 -51 0.85 -0.22691024125771095 1.001247952138784 -1.01807642988447 -0.5222743991781861 0.753709526110573 -0.8521287684056345 -0.7913324548032858 0.45022727612886354 -0.895528704360713 -0.8249736090902148 0.40962078079865927 -0.724821989663703 -0.8307796326406253 0.3791875612483516 -0.819554732799015 -0.8094662796502023 0.4353517277229155 -0.9379005441993065 -0.06356923418872007 0.882437943993466 -1.0853716252555794 -0.07707950710811834 0.5165178220887644 -0.9048265672304718 -0.015642270026297825 0.1448460212164786 -1.1499185482656336 -0.006396297142943845 0.080204822891143 -1.000021613750438 0.023828861145705597 0.08230069677856848 -1.030912435102192 -0.009287060154258614 0.11780818551853695 -1.1984674585673798 0.24684375164639077 1.3167060140192846 -0.9391822817027816 0.4338516726191519 1.4813712362057578 -0.8096393937926928 0.3318597797475635 1.3485543279106353 -0.8005969013010449 0.09682788456944659 1.4115398524145664 -0.9627476633883242 -0.16369741225166395 1.5060465604352447 -0.9755456627427358 -0.07810606327809914 1.6493854026416186 -0.8024724507788168 0.31612612440044885 1.1836643035503551 -1.0489964465992625 0.3846790272957933 0.881893198545683 -1.0775166590904415 0.4168505662628079 0.640295132807282 -0.995370819800545 -52 0.8666666666666667 -0.2254369587424353 1.0027437452072694 -1.005133560057966 -0.5165860516293754 0.7522194017284537 -0.8447132037839956 -0.7790563250635039 0.44469218898418905 -0.8840916507231412 -0.8110098890694504 0.39654043570504904 -0.7306487590836039 -0.8158303792006935 0.37051116430159975 -0.8080553929691189 -0.7958456443515864 0.4280941589652669 -0.9267802777666342 -0.06235848882669732 0.8850268708728436 -1.0788442716537543 -0.07588246344050234 0.5176550784510955 -0.9073295904463134 -0.014385476439855271 0.14569271901261996 -1.1484153048214096 -0.006801716952521993 0.0808928122650533 -0.9989134071865394 0.024102228300322225 0.08362106528406145 -1.0291584177668105 -0.007953536882310857 0.1172441405435061 -1.1970875895284938 0.24506285200486574 1.3174619545023487 -0.9363791260419485 0.4321542427696638 1.4820689894197776 -0.8030927608506898 0.3301627466298676 1.3474258347125019 -0.7947594301074815 0.09607292020620076 1.4147434126377665 -0.9503684793827402 -0.16531511353040793 1.50734036975971 -0.9611351713560826 -0.07154379019911018 1.6451239115370222 -0.7882638930937486 0.3171639737467908 1.1853819214125862 -1.0398513228833455 0.3849279211404307 0.8841208230836352 -1.0740818572957083 0.41962960671829524 0.6423828291488999 -0.9910599014208317 -53 0.8833333333333333 -0.22481684875990823 1.0036655511139796 -0.9965022041626292 -0.5099700407863195 0.7492278250493806 -0.837646249949824 -0.7635894830914864 0.4364814666165442 -0.8741348444458802 -0.792843177108117 0.38117773559041307 -0.7374628273576485 -0.7981538282914161 0.3605972723218596 -0.7955874581424976 -0.7791400818352853 0.4167040816773026 -0.9147155274330725 -0.0621530527113363 0.8877501315241427 -1.0751944859098594 -0.07431499475571605 0.5186404199440656 -0.9100676970860836 -0.012901485067201632 0.14633762051573293 -1.147044138649347 -0.007123945781650369 0.08152897295753947 -0.9981074769700137 0.024432741021449433 0.08495411367099562 -1.0277374187641637 -0.006256847384190791 0.11667567207120674 -1.1959902079587195 0.24243265220166943 1.3178909119673936 -0.9360342937608286 0.4296065904675923 1.483255726676196 -0.796495829118355 0.32792145283888513 1.3467354333916186 -0.7888750786779136 0.09385657328111431 1.417550838245437 -0.941565958495673 -0.16731444891275044 1.508038206606701 -0.9477444882285604 -0.06738319583530639 1.6402357400086025 -0.7750751293053704 0.3191721953169238 1.1873377011806712 -1.0283388770516058 0.3852609748071427 0.8873686076822447 -1.0699489793386616 0.4222803960461156 0.6455742626560561 -0.9837336655298052 -54 0.9 -0.22482865928400436 1.0041632772014044 -0.9911199598397672 -0.5019752224428681 0.7445752227979807 -0.8307564969956326 -0.7445550901449693 0.4255086818763613 -0.8657251411696119 -0.7691289034009734 0.3643109016723356 -0.7419791167962981 -0.7777052250222775 0.3498195202278101 -0.7828350356220158 -0.7598714089194618 0.4014549691911549 -0.9031016147031308 -0.06367235873164213 0.8908091201110663 -1.075846265225311 -0.07281075875307987 0.5195250292166373 -0.9127558052826042 -0.01177424237936157 0.14669866915510246 -1.1462592878870792 -0.007163319583829031 0.08211652087527599 -0.9975733150707655 0.02472519236191463 0.08606877815499255 -1.0271000972895186 -0.004516534914078479 0.1161000724774452 -1.1955796868722919 0.2388594861024923 1.317615740407337 -0.9377792649862773 0.42628202440969154 1.48428841334209 -0.7898253346756458 0.3248247291906148 1.3463491028502 -0.7821720687697746 0.09059723346533238 1.4200754259899233 -0.9348315906076383 -0.16973819425974612 1.508219846541082 -0.9351521186002733 -0.06530617437562683 1.6350748970736497 -0.7630552897953996 0.3210839212646114 1.1895551276346779 -1.0177803653631403 0.3855202743693827 0.8916332953915548 -1.064986736616546 0.4248620685157444 0.6501166903092546 -0.9735702731406201 -55 0.9166666666666666 -0.22511780558825903 1.0044807436167957 -0.9877841126272685 -0.49206766084587433 0.7382420696763765 -0.8242652742680691 -0.7215357498880107 0.4119171462026027 -0.8583554666409967 -0.7393288319277931 0.3472797906613933 -0.7403154661228407 -0.7543548071251475 0.3386070061626959 -0.7694485005047818 -0.7376471378730852 0.38331454816241184 -0.8934515130064654 -0.06621925891784602 0.8941708895392358 -1.0793759133764023 -0.0715870138220035 0.5203990193662911 -0.9151355815760849 -0.011349288830981642 0.1466761901009745 -1.1463883389776561 -0.006914780426507939 0.0825683154762222 -0.9972578147799265 0.024874305276864975 0.08673128334506743 -1.0273660752077152 -0.003119611974580206 0.11545399112093795 -1.196173268067574 0.23443678872073065 1.3165574691217017 -0.9400732698278033 0.421998360093946 1.4847343542937266 -0.7833480381736763 0.32049799711074406 1.3462717425971342 -0.7739604665507486 0.08688183193786787 1.422306991863863 -0.9283199729355994 -0.1725093785750293 1.5079539415522902 -0.9231653807590973 -0.06470754427012458 1.6297720702382534 -0.7521771890226406 0.322190210396235 1.1922290424694564 -1.009918532251019 0.38572012977818887 0.8967994230142727 -1.0592364704478603 0.4274428364532682 0.6560648991361482 -0.9615287779554642 -56 0.9333333333333332 -0.22537078599600452 1.0048128306037376 -0.9854570812771692 -0.4798395746764725 0.7303482635386218 -0.8187936134831044 -0.6944426602837964 0.3960956206257558 -0.8514046179758554 -0.7039456187395925 0.33080416042670974 -0.7302909775518077 -0.7279044757518562 0.32695892752463596 -0.7546815392103925 -0.7115297975010157 0.3635784268267874 -0.8858169162450177 -0.06857269693602251 0.8976272928452852 -1.083099309183026 -0.07063640059647583 0.5212872882421875 -0.9171435444037314 -0.011670122395497933 0.14622799448306734 -1.1475453230258903 -0.006537128842723345 0.08276353691193578 -0.9971228444545817 0.024806588617225494 0.08679967055064615 -1.0283030325438656 -0.0024211442397329675 0.1147167362684438 -1.197784029907244 0.2295672869230343 1.3151826924882983 -0.9404744731271217 0.4161990850423859 1.484556936995477 -0.7768866745493956 0.314671302823407 1.3466225347670076 -0.7639755621749872 0.08314156037232745 1.4241260116721053 -0.9209905994097055 -0.17537957354289052 1.5072603576052144 -0.9117396467145265 -0.06510132762767415 1.6242330947832004 -0.7421321135004854 0.3223754208493596 1.1954626604333691 -1.0044151969039008 0.38609954441150657 0.9026885946646878 -1.0528256811828876 0.4300617083127881 0.6632204571519755 -0.9489122354941092 -57 0.95 -0.22547403928369975 1.0052238010551968 -0.9833309159846032 -0.4652987324468431 0.7211677304454853 -0.8149368059416046 -0.6634645336914675 0.3784802272646375 -0.84419302747837 -0.664305817564046 0.3144052307566114 -0.7127645743243385 -0.6981553411377315 0.31433575239641054 -0.7383255783384707 -0.6808547559992838 0.3434353841072251 -0.8787157287219909 -0.07003572054896104 0.9009479967150927 -1.0853940495244268 -0.0699089696288016 0.5221780156836234 -0.9188084799475954 -0.012558693571859942 0.14544354205611384 -1.149531639858877 -0.006243869308681118 0.0826213946483726 -0.9971017522589494 0.02449054282171589 0.08619110131570022 -1.029563403421496 -0.0025673350520666913 0.11380331097548846 -1.199973555365493 0.22461117709317457 1.3142144396425721 -0.9370261101139485 0.4083457154265593 1.4841337456885357 -0.7694455599398787 0.3072230718354877 1.3474267917764702 -0.7522951160455272 0.0795778806463107 1.4257371805242827 -0.9124472397978728 -0.17809397816906603 1.5060935727347444 -0.9010239584932616 -0.06638866927055624 1.6184290971705984 -0.7322953237708398 0.32175550857929 1.1990166495592225 -1.000276913385654 0.386902589563894 0.9091023821373367 -1.0456768660629312 0.4325720743365812 0.6711288673132221 -0.9371887344685667 -58 0.9666666666666668 -0.22550582264446373 1.0056473933657217 -0.9809047401728304 -0.44896885554092847 0.7109964825182025 -0.8127881112619202 -0.6287881448817635 0.3595518575175857 -0.8361025710270383 -0.6219831246767378 0.29720210154482535 -0.69141103085748 -0.6647504904232603 0.30001060746094305 -0.7211783647362979 -0.6455407963622942 0.3236922317627292 -0.870537611548722 -0.07040396184173423 0.9039482910907314 -1.0860459902643074 -0.06940590330804648 0.5231378402212548 -0.9201239529108238 -0.013736835715186437 0.1444996710867215 -1.15180281694386 -0.006268138919226002 0.08212352054300041 -0.9970150597996623 0.02388732317043924 0.08490407103921685 -1.0308938614693126 -0.003471116047822745 0.11249283509151824 -1.202002458365306 0.2194443162266709 1.3140849534057737 -0.9296464061583857 0.39873350311779576 1.4840970707211805 -0.7591531616845486 0.2982035361670889 1.3486633966659256 -0.7390613939978583 0.07625830712078685 1.4278083065581748 -0.9023258569376522 -0.18070580971927727 1.5042531866345341 -0.8913440932341496 -0.0687719032082595 1.61258237012675 -0.7217850985470272 0.32045780647496097 1.2025446981274666 -0.996616291807316 0.3880465147676412 0.915905560202683 -1.037489414994966 0.43455311366198246 0.6790940431888141 -0.9281954449504565 -59 0.9833333333333332 -0.22556737276825234 1.0059691636916037 -0.9778692956696473 -0.43142667016104885 0.6999801115308313 -0.8116817886131205 -0.5906008317372138 0.3400798506513536 -0.826691689535895 -0.5777805513982621 0.27879553746887015 -0.6706658850613599 -0.6272487526515922 0.2834728393456913 -0.7045849630384682 -0.6059676140933961 0.3047809635727371 -0.8605008793296518 -0.06972673594997991 0.9065148721990743 -1.085512994304636 -0.0689760581530413 0.52418834232837 -0.921112975578927 -0.014899509282077564 0.14353302097016662 -1.153477211474051 -0.006756144681857476 0.08129492746734308 -0.9965994681314009 0.02297718096142225 0.08310335667222515 -1.0321408999385866 -0.004946515745208938 0.11058057492473816 -1.2032179996142958 0.21373078509700505 1.3148827450163125 -0.9198610673960546 0.3890219068111188 1.4850506598485196 -0.7442297972151765 0.28807805777447504 1.3504177038656997 -0.7248085480876224 0.07308421290547257 1.4309209898689916 -0.8907411580349034 -0.18362693585042608 1.5014506235804488 -0.8830756922627304 -0.07249568372954313 1.6070253106929262 -0.7096476470004701 0.31869329753142267 1.2059705883961105 -0.9926758221071825 0.38909164935946416 0.9229200609553041 -1.0282749197895917 0.43553314330049925 0.6862977132320053 -0.9234913519493507 -60 1.0 -0.22563758788644314 1.0060552217719547 -0.9740766484147779 -0.4126476153177248 0.688212807568245 -0.810281122043247 -0.5492786289421867 0.3211974489997896 -0.8156980003962107 -0.5316264854395286 0.2595880305433222 -0.6531171191322077 -0.5855197655067089 0.2646597872745273 -0.6895067418036707 -0.5628332576058248 0.2869996811489329 -0.8483741954159161 -0.06827568838359621 0.9085753181813202 -1.0842365599077584 -0.06814415387784163 0.525087361218076 -0.9219889627717973 -0.01569142392145315 0.14264568373071518 -1.1534562372367734 -0.0075822502347536675 0.08017178793063057 -0.9956992624169734 0.021830517909389627 0.0810645624209974 -1.0332710242206449 -0.0067874446697365025 0.10807742207715836 -1.203304647427027 0.20744227231105622 1.3166983061996083 -0.9094454506573 0.3816192703716715 1.487406580692213 -0.7255496479474979 0.27798715021463144 1.3527234530461991 -0.711012460583269 0.06971718197294306 1.4350098532531574 -0.8788462013374467 -0.18737939595657296 1.4975624351984418 -0.8763696102122143 -0.07769883255250819 1.6019740307001065 -0.695417626765439 0.31686512569196307 1.2095153701499366 -0.9876965542542009 0.3895644447346267 0.9296632829265403 -1.0186492772353877 0.4353396979836437 0.6919829531387446 -0.9232852292671296 -61 1.0166666666666666 -0.2255675678181343 1.0056981789999442 -0.9697110881639077 -0.3920336508379489 0.6759589830133075 -0.8071140506861622 -0.5055129695775823 0.3040182721606071 -0.8031491071362081 -0.48341163329081505 0.2406241440554291 -0.6390272128922616 -0.5399236689571872 0.24423603073732142 -0.6762332143748417 -0.5171550856049375 0.2706781150631836 -0.8340270604333562 -0.06643094292956471 0.9101329669156593 -1.082433296018859 -0.06635860413778336 0.525382206195505 -0.9233277619344764 -0.015765950541775736 0.14204568783800683 -1.150788556183716 -0.00834789787123538 0.07881724703290341 -0.9944053819713452 0.02050444491722055 0.07906672901831678 -1.034494993493581 -0.00876715697579366 0.1052541035404027 -1.2022520170706292 0.20082340708752802 1.3197017172944165 -0.8994285222981202 0.37792781285571464 1.4912968622197207 -0.7072065708837733 0.2693003032873053 1.355357967185518 -0.6995413314878804 0.0656612096454437 1.4394245170724695 -0.8681417917129696 -0.19244822434708803 1.492766644426566 -0.8709959502125451 -0.08445589166927446 1.5974797071672817 -0.6797790701587492 0.31546657454983795 1.2135114442963546 -0.9808263076139461 0.3892251661885252 0.9355852261410778 -1.009270752461473 0.4341659008915585 0.695794256442388 -0.9261072808632782 -62 1.0333333333333334 -0.22519275966388258 1.004623214272424 -0.9651241424141278 -0.3693824294550419 0.6636352709693485 -0.8015909575166089 -0.46043469889641847 0.28904341823216967 -0.7894002105770653 -0.43349934167113063 0.22300668851004343 -0.6277623517600872 -0.49128333868673807 0.22358969840757795 -0.6647269181945863 -0.470300995633322 0.25594701364563 -0.8178386529693671 -0.06456098385710587 0.9113518882607988 -1.0801983528374721 -0.06348355465590316 0.5247207316811395 -0.9259489921816803 -0.015027951750655685 0.1420500199616424 -1.1452150262502727 -0.00861910562657189 0.07735634781972574 -0.9930463906935707 0.01886012578282438 0.07735396196686463 -1.0363235035244855 -0.010708866086293069 0.102601890487457 -1.2001712669885454 0.1941107204192863 1.3239400057003765 -0.8900124857155187 0.3770311482307736 1.496416412579617 -0.6930947083877295 0.2627806560562087 1.3579896024144156 -0.6914299354308686 0.060371331125223006 1.443359145541126 -0.8595762525823758 -0.19919526509218247 1.4874712456785195 -0.8664287652582964 -0.09278625223921852 1.593446091622881 -0.664335417637828 0.3148158862509027 1.2182820844236006 -0.971249379090574 0.38805824742563977 0.940587890613846 -1.0003843850758547 0.4324090693847852 0.698161820999779 -0.9292261535148245 -63 1.05 -0.22445814960695884 1.0025638459427986 -0.9604953007980572 -0.34551138365317086 0.6516313947626954 -0.7946073256474488 -0.4155734216283566 0.2758998512598011 -0.7750870751362616 -0.38293880536813785 0.20725549235550914 -0.6188342740172793 -0.4408001625111865 0.20407774661324857 -0.6547327147465889 -0.42379697891459284 0.24246659521525718 -0.8011579625455063 -0.06295656848376469 0.9124515562555523 -1.077458006849639 -0.06000963934042253 0.52310096019759 -0.9303640766680956 -0.013847591680819832 0.1428387536270091 -1.1377128674886114 -0.008201776592457126 0.07587957117076917 -0.9920648801260356 0.016585301114033613 0.07605290466034464 -1.0394639598120232 -0.012618771898539157 0.1007850713379303 -1.1970163488109717 0.18750251693544365 1.3291998584238194 -0.8811457759726377 0.3762955098457258 1.5021689063221326 -0.6845354605259052 0.25829843166159333 1.3604952818413194 -0.6864555418189827 0.053333281628992035 1.446163430554595 -0.8534891681315656 -0.2077001875487054 1.4821210565181844 -0.8620690352112415 -0.10254597311495485 1.5895287940274312 -0.6505888038334431 0.3148307842184275 1.2240479776014446 -0.9586058342900478 0.3861752059989777 0.9450449946421051 -0.9919949250684332 0.43055468092364896 0.7001501297682993 -0.9298226677203937 -64 1.0666666666666669 -0.22346437533770777 0.9993509093863506 -0.9558679266306376 -0.321531165865053 0.6400801114176852 -0.7880026338474261 -0.3724345294426642 0.263539707394849 -0.7612809047364062 -0.33321249517021356 0.19278871463928207 -0.6121986849260441 -0.38983663606212654 0.18620070806526692 -0.6458000238187196 -0.37902024575161614 0.22966752345239594 -0.7856478260255243 -0.06170023418264535 0.9134672195195807 -1.0738746111078872 -0.05669475361866007 0.5208659753107219 -0.9362500090665975 -0.013016552885868539 0.14422327041546545 -1.1306101119222967 -0.007287552837532031 0.07426301097516193 -0.9917925691488545 0.01347034295064902 0.07509381733548987 -1.0443682874950189 -0.014694848961578905 0.10044764995428299 -1.1923975324459695 0.18119405605745745 1.335003235793139 -0.8728418424917138 0.37305284864846866 1.508233553210848 -0.6814207913806533 0.2550718563171317 1.3630787232946435 -0.683521368194872 0.04422759608952131 1.4474799121427055 -0.849696905321836 -0.21774115403301528 1.4770041987626117 -0.8575400972531266 -0.11351961629064163 1.5850063094508138 -0.63946300208302 0.31502073303076056 1.2308330571794637 -0.9432131403596251 0.3837905034288694 0.9494699049209533 -0.9840090534630997 0.4290411924278741 0.7028141045408256 -0.9264250440179858 -65 1.0833333333333333 -0.22238966245936628 0.9950407614558645 -0.951310309805832 -0.2980561576001489 0.6286020446000656 -0.7837982038085649 -0.3320154378504454 0.2507986481587519 -0.749491160342966 -0.2857253116249113 0.17810902994832928 -0.6081571939240634 -0.3399927562991048 0.16974255564359464 -0.6374816445723751 -0.33719935411800495 0.2172697409770665 -0.7720279048217313 -0.06057019788817948 0.9142402197511903 -1.0690453868468441 -0.05387007778585201 0.5186451082577032 -0.9420222462657803 -0.01335357175071655 0.14586036888216503 -1.1264858595305884 -0.0063724027770432415 0.07224089899076291 -0.992269866479227 0.009782953063979092 0.07430402023212883 -1.050584634922023 -0.017164776181694867 0.10196490019044553 -1.1858520642113826 0.17524408730506 1.3408129421990602 -0.8649593492179735 0.3655716282946373 1.514895287233105 -0.6833464628558896 0.25208304878576215 1.3661288364081976 -0.6811913116989223 0.033247980944728264 1.447425473194493 -0.8471541994802466 -0.2288743719649434 1.472195815832549 -0.8529219597893107 -0.12566065033233878 1.5789673952353045 -0.6313828279392857 0.31470865835415707 1.2385588524001652 -0.9256922785138547 0.3811909257257777 0.9543680512299715 -0.9760814184789465 0.42808844625936404 0.7068024604712498 -0.9193471039812319 -66 1.1 -0.22130607711078426 0.9899901211470569 -0.9468456251377917 -0.2754558067859084 0.6164248294565619 -0.7836914894695499 -0.29466198112617414 0.2371763035483927 -0.7409883214403048 -0.24186839385994838 0.16226991598368412 -0.6062786090505693 -0.29348458954412426 0.15468686469624282 -0.6292477844285153 -0.2994403625752756 0.20549419143617667 -0.7596749952947399 -0.05909809822228982 0.9146384185972295 -1.0628236753287743 -0.05115169694878709 0.5172683165517651 -0.9449974850263023 -0.015179353796897357 0.14771546491059512 -1.1265313568212298 -0.005980185385845524 0.06977678458726783 -0.9931289838165385 0.006245039854462838 0.07358384291951345 -1.0567284180436705 -0.020151123411762402 0.10538325438479988 -1.1775646295292688 0.16948628472224983 1.3463751220310172 -0.857106893438436 0.35319304013386593 1.5227041673324555 -0.6890032812887893 0.2485139747463558 1.369949596913122 -0.6781652460641064 0.02132009853508338 1.4466268278961336 -0.8441631095115905 -0.24051521407045187 1.4676211727046886 -0.8487079783111224 -0.13901751801216783 1.5709197271592754 -0.6260911780436147 0.31316359488124496 1.2471797031433567 -0.9070076787502995 0.37864148514852647 0.9602618665249477 -0.9676044275227756 0.42768242114349175 0.7124466998215311 -0.9100024417390719 -67 1.1166666666666667 -0.22002529760835252 0.9847167639136538 -0.9423122110600027 -0.2543507185815713 0.6029673708295593 -0.7882623295184428 -0.2602546811860101 0.2231088647102614 -0.7359069330159204 -0.2030628843733541 0.1458273535389584 -0.604859965185296 -0.2527531697268621 0.14145594779735468 -0.6204737193483564 -0.26593305118805594 0.1945796066540224 -0.7476536701590797 -0.05668866885403069 0.914623459691408 -1.0552819445630797 -0.04801949464326232 0.5173212432017497 -0.9433381628997607 -0.018133182597345122 0.14993584332706436 -1.1302417581145983 -0.006478999418295102 0.06729274090948151 -0.993560340041687 0.0034175474373663974 0.07294798722725108 -1.0612338060072815 -0.023544055166202272 0.11038728188749213 -1.1685921814128692 0.16360800075620294 1.3517950643234167 -0.8488253606990159 0.33673685425947153 1.5317585712699333 -0.6947268200946796 0.24396178181234568 1.3745694820057417 -0.6735878018067089 0.009647141153042858 1.4456782282548366 -0.8398226489915278 -0.2520942912321989 1.4631213032373895 -0.8454410244531128 -0.15346770057885395 1.561347109265472 -0.6224137596726564 0.30964833483764426 1.256547899946287 -0.8889980762824274 0.37622345013188824 0.9675128029965625 -0.9585033195606184 0.4277231475007143 0.7199158761574328 -0.899966528984389 -68 1.1333333333333333 -0.21817897595527305 0.9796514041611502 -0.9372634566719309 -0.2355582288184841 0.5883388969344577 -0.7963589307582597 -0.22843818021644666 0.20937893265977423 -0.7332013784238461 -0.17027725002051025 0.12987559935288673 -0.6024807235647653 -0.21915542359676216 0.13005565081058562 -0.6110428869862277 -0.23531585286960777 0.1841602889849119 -0.7358668887442328 -0.052644702083408136 0.9141044575294316 -1.0463260989342962 -0.044349589979439746 0.5186768283587061 -0.9377611112937037 -0.021381259168902694 0.15214790187899332 -1.1361387681909396 -0.008034062433612602 0.06547969326300235 -0.9927489616163501 0.001386516508105771 0.07241766795650707 -1.0631398843821118 -0.026755469431474485 0.116137375694626 -1.1598682596444403 0.15721875684195866 1.357282985485039 -0.8397388174727662 0.31895958117338874 1.5412854148153219 -0.6941890859224189 0.23832324032893776 1.3797867456975335 -0.6671539777526668 -0.0009006135129146886 1.4448298194227018 -0.8342863454587329 -0.2631396789811752 1.4584692506958368 -0.8432722829385294 -0.16860734491272958 1.5516271857867587 -0.6182194498809224 0.30366659999722506 1.26625874429658 -0.8739415630817432 0.3736984886784256 0.9761111877273754 -0.9501298492793747 0.4281963510285468 0.7292825279125276 -0.8903617366670781 -69 1.15 -0.21545152692177033 0.9749819052338436 -0.930918866855829 -0.21950898827502718 0.573500129164444 -0.8054377876662514 -0.19881745631976644 0.1965652326650566 -0.7316524658447754 -0.14362305532000258 0.11506581285450472 -0.5993394552849783 -0.19225832132324225 0.11969480288759193 -0.601881377606492 -0.20579381723674572 0.17360469452444502 -0.7251811189966335 -0.04622000159086028 0.9128677274107051 -1.0355103617360513 -0.040099137154397974 0.520634196282608 -0.9302906381511831 -0.02401652218499384 0.15336911245835866 -1.1424763965087628 -0.010322866046924404 0.06480740966117612 -0.9905636544148898 0.00019323851799215276 0.07196566395765878 -1.0624601864230498 -0.02893161715385418 0.12140227410012688 -1.1516070899867248 0.14993003164808505 1.362938553652102 -0.8297338489413848 0.3033903679207386 1.5502130004203851 -0.6823633574915801 0.2315191649317635 1.385393494733114 -0.6590333394054027 -0.009625782820709838 1.4445680431243568 -0.8267159933248934 -0.2732974122299866 1.4533487247904633 -0.841731548044892 -0.18374185878245647 1.5430488184707367 -0.6112081582541776 0.2951350695114636 1.2757165909551569 -0.8637325882199924 0.37064935846608804 0.9858101292283006 -0.9446265941282439 0.4292146336280049 0.7406082514964677 -0.8816960374530465 -70 1.1666666666666667 -0.21163868436215919 0.9706432392269381 -0.9224064282912042 -0.20559562179270124 0.5601094493005586 -0.8124945286932251 -0.17130390851142108 0.1850410144586852 -0.7307523038062539 -0.12222027544662475 0.10171025105452991 -0.5966560711620548 -0.1705253950150406 0.10948746963983495 -0.5946268744341155 -0.17666618176778595 0.16267894225680915 -0.7171988887808842 -0.0370496107451142 0.9107468233597167 -1.0225149216424252 -0.035057445099882165 0.5223983201972147 -0.9224069510613645 -0.025546209932196782 0.1530207303196076 -1.1479000458427002 -0.012340077668466244 0.0651703998449263 -0.9876829444386163 0.0001311261395156509 0.07157414931784983 -1.0600463889064382 -0.029790138121008374 0.12535938916809466 -1.1439997586873254 0.1416184299077501 1.3687401188143116 -0.8191101757001773 0.29184391131714543 1.5582848757968555 -0.6609487198481375 0.223443056480371 1.391390260721559 -0.6496594508441396 -0.01606592514197989 1.4455826330307378 -0.8151235866410798 -0.28243028884298704 1.4473364392181063 -0.8398825762006963 -0.19814267360582663 1.5356576099823234 -0.6006521419270194 0.2842694907209946 1.284310915508618 -0.8597518450570764 0.3668597683335508 0.9964316701407818 -0.9432005458077405 0.4308883339276529 0.7539504785616429 -0.8739185512336064 -71 1.1833333333333331 -0.20660093206045227 0.9664104414854296 -0.9112914500720957 -0.19228252547546262 0.5498530127719632 -0.8149014509743997 -0.14630245647220266 0.17498626073624218 -0.7306576083058391 -0.10457667993850081 0.08992503211460814 -0.5955370345025475 -0.15238252325450685 0.09905896154812166 -0.5906944187342336 -0.14849866127244385 0.1513905233493085 -0.713927363483461 -0.025839606726283562 0.9078895085623625 -1.008155416828312 -0.02921210473175964 0.5234072467326634 -0.9150692613757022 -0.0261053840442439 0.15164075832036483 -1.1516552907165514 -0.012962914140289146 0.06609462598986318 -0.9850722516950009 0.0014349547250328363 0.07125313073651013 -1.0569817848963088 -0.029924523658451923 0.1282516244170357 -1.1373612363608223 0.13263963279384197 1.37462712823323 -0.8084797632350538 0.2833336256296501 1.5661253956766727 -0.636981200415401 0.21416617101021024 1.3979957451286051 -0.6394890345870802 -0.020919541332357093 1.447668702095042 -0.7992827500156465 -0.29065109496736785 1.4399444008543936 -0.836723414362637 -0.2116999962590197 1.528212429003372 -0.5881444836136095 0.2715276059700053 1.2917120875323023 -0.862616934661782 0.3625246003782204 1.0081074467221904 -0.9453542584158714 0.4333080849960666 0.7693418876471602 -0.866537847849282 -72 1.2 -0.2003649562811986 0.9619901543434479 -0.8979004718125039 -0.1781524234406329 0.5436623613904465 -0.8109454796267731 -0.1243157267317669 0.16627494544826227 -0.7317910256237752 -0.0896629134320768 0.07951087776430832 -0.5966099938582482 -0.13674572582322234 0.08851921488007555 -0.590682405645225 -0.12248591591762498 0.13965188075695922 -0.7169308742502939 -0.014310567961499774 0.904734242859049 -0.9943740490868305 -0.022979106121140448 0.5234240536745611 -0.909246829161605 -0.026191213029961607 0.15028259818652828 -1.1535424370501788 -0.011738565341441581 0.06722191654666584 -0.9833137953044632 0.003921202530777869 0.0710443222808077 -1.0539244284805556 -0.03015146228213442 0.1309256595001245 -1.1318251852176051 0.12357689182504719 1.3805686082879762 -0.7985387000043447 0.27528059791441584 1.5743228562111184 -0.6160493144839807 0.2039678024423063 1.4054906212279559 -0.6288793063306033 -0.02612500872351544 1.4495208204583974 -0.7817398236956284 -0.2983740015872648 1.4307746786308466 -0.8315034389014722 -0.22531883220515586 1.5190418502540048 -0.5765509146931596 0.25787532166658256 1.2981987445215808 -0.8709617231148995 0.35815448139959566 1.0211730344410381 -0.949746693953626 0.4367400701861189 0.7867771000492341 -0.858983858073 -73 1.2166666666666666 -0.19320154683303936 0.9571443665216663 -0.8831230000494092 -0.16290974090158686 0.5414105058657032 -0.8003311416007931 -0.10545488176972502 0.15860023983685412 -0.7345651427202078 -0.07747451066786686 0.07004099145936411 -0.6002150949294507 -0.12305346777216929 0.07820463339644693 -0.5944143942165956 -0.09977068464632105 0.12754350880192097 -0.7262920552159305 -0.0037707580239685597 0.901541486745792 -0.9819971436012049 -0.016924886659397998 0.5224236435860041 -0.9056642739797529 -0.02625478422973616 0.14971656270219702 -1.1539482154907925 -0.009026518225844236 0.06845442000753164 -0.9823580837868007 0.007022767852913512 0.07105694043785185 -1.0509884402958125 -0.030863231801250352 0.13399403172417013 -1.1277771842417323 0.11474116735461072 1.3865452717729247 -0.7897256696544463 0.26523404204706563 1.5830522726642737 -0.5993088214432566 0.19314402657864493 1.414083098342199 -0.6181928913506775 -0.03350720600291112 1.4498729743150125 -0.7654678222468715 -0.3064415224983284 1.419808357063008 -0.8237679176919188 -0.24044777063999798 1.5067759196795405 -0.5681757828388218 0.24502935689437164 1.3046156004889593 -0.8801372277235142 0.3544094727669095 1.035716000783198 -0.9553236552405964 0.4416354279091515 0.8059748472452191 -0.8512516456332059 -74 1.2333333333333334 -0.18544043157091936 0.9518539062477944 -0.8679181581371425 -0.1474857546395946 0.5417770678684906 -0.7846897065095375 -0.08949070196364774 0.1516922531006663 -0.7390744181758188 -0.06838000330372686 0.06119573449183407 -0.6063788471593902 -0.11101274556780408 0.0683935883380021 -0.6010912205283065 -0.08091318666292974 0.11568528177305372 -0.7401483307981489 0.005888269090781757 0.8981297631105304 -0.9692949847299894 -0.011418433633993271 0.5204192503929099 -0.904211849645458 -0.02651515205670573 0.15025941153637828 -1.1535154632565374 -0.005613856744144413 0.06970597978109247 -0.9819005374448476 0.010034562586299456 0.07136122996356771 -1.0482008450831855 -0.03197736336650693 0.13760752275811655 -1.12593647428845 0.10599422109086788 1.392491517737787 -0.7818002356263144 0.25180193131425194 1.5922228978815904 -0.5854982504757033 0.18179584176079505 1.4238026044943157 -0.6078765306491004 -0.04369427079543422 1.448393680313589 -0.7521279682781589 -0.3157460826910874 1.4075453836126386 -0.8133095509454062 -0.25807477101146725 1.4910346555277896 -0.5632708221556666 0.23486707516728403 1.3118031582957328 -0.8835547371814539 0.3519672449113748 1.0513796402359952 -0.9611138862173394 0.4483200411394628 0.8262131753422384 -0.8443639900322276 -75 1.25 -0.1772342089270149 0.9462598725022731 -0.8529940795383663 -0.13332602869748425 0.5426074772044984 -0.7670641421660411 -0.07624360026664825 0.1453286250767879 -0.7448127447317021 -0.06241951354063937 0.05298825005832446 -0.6144143034515724 -0.1004089064325254 0.059180952365644086 -0.6093089009959356 -0.06582643926737657 0.10502325888720687 -0.7555157291921042 0.015295059560005979 0.8943354398799382 -0.9541200123493254 -0.006576333199413611 0.517357153043733 -0.9039297303693007 -0.026950680155425073 0.15183802510516747 -1.152685208148211 -0.0022949735316678374 0.07076149312440211 -0.9818104089920163 0.012373006637200269 0.07184590423333173 -1.045892722788316 -0.0331869178677438 0.14161344990216942 -1.1267116759121312 0.09693784261146846 1.3983056146531265 -0.7738959739615564 0.2348817111884357 1.6014753123180556 -0.5733451189508593 0.16971887055440396 1.434418600048062 -0.5982302268145674 -0.05620945129390047 1.445523906337334 -0.7425157352112025 -0.3263489419937434 1.3946123950338 -0.800568214177199 -0.27809645110934533 1.4730767963430496 -0.5604447225218525 0.2281986703845811 1.3200724394924057 -0.8768405941981977 0.35138324197486 1.0676654680486803 -0.9651500391194657 0.45677273573630167 0.8469203528032022 -0.8398065893684636 -76 1.2666666666666666 -0.16864114116729326 0.940445748217136 -0.8388116848761056 -0.12155941383514823 0.5422328818367357 -0.7501771335495523 -0.06578661513169547 0.1393655550006619 -0.7506571560802073 -0.059104874574614726 0.04576083146982214 -0.6226399019158659 -0.09122730203548565 0.05071725802741545 -0.617222605780359 -0.05419084027229446 0.09631123280054729 -0.7695660644701575 0.024553239546754035 0.8905048954192338 -0.9363109580061655 -0.002291565602348885 0.5131148057011399 -0.9036971707538913 -0.02726761259670816 0.1542331726532746 -1.1516150324400463 0.00038334117667384855 0.0714753520450303 -0.9821555293355633 0.013792696047686131 0.07240139624204318 -1.0445014321682555 -0.03417608857686709 0.14584704694320436 -1.1300416312273798 0.08715641001102672 1.4038499783752854 -0.7651237662824952 0.21532553537962124 1.6102684473068534 -0.5625388179078256 0.15658763411010582 1.445418875425209 -0.5892184069805164 -0.07017581588527472 1.4417661368789578 -0.7370520260211983 -0.33741003471254294 1.381326262464315 -0.7864956481147325 -0.2996358179285075 1.455316921110169 -0.5585954662164213 0.2241615124052997 1.329264793964224 -0.8608131525656821 0.3529471184061829 1.0843966849944469 -0.9646625101614594 0.46676642204126867 0.8685300758923218 -0.8381201887528252 -77 1.2833333333333334 -0.15993516037381644 0.9344797147424687 -0.8256260733400111 -0.11260781742348647 0.5404087107075068 -0.7351784902496893 -0.05827999850963385 0.13393266012800525 -0.7552852587809736 -0.057349097770740085 0.04010969262355081 -0.6288283657552594 -0.08378167875260621 0.04349698735511033 -0.6231500911007171 -0.045870390954216106 0.08989481562194988 -0.7802570629828525 0.033433029592843826 0.8873617492615624 -0.9171725440410069 0.0017960049560429125 0.5076671440508042 -0.9028476434708486 -0.02697037711263045 0.15748072663664514 -1.1502335108767043 0.002207835860937976 0.0719455322302609 -0.9829994248937195 0.014356637874549024 0.07327571066871719 -1.0439496888039033 -0.03472955537354554 0.15039639842013802 -1.1357627640244043 0.07639246964480821 1.4088709538252306 -0.7550460141220703 0.19409803981616172 1.6181675492382108 -0.5533953961318017 0.1422271749763663 1.4560126746114115 -0.5805972336546412 -0.08489624071374036 1.4373354001367091 -0.735233211271257 -0.3480764164260192 1.367870538855901 -0.7714654328374212 -0.32183986038095475 1.4394213643800275 -0.5575414638646783 0.22067090468694853 1.3390482028759916 -0.8407910304558349 0.35658780307330235 1.1019505989548264 -0.9577891035017148 0.4781620535567195 0.8923550136174125 -0.8382090335089845 -78 1.3 -0.151671313922711 0.9286372709588298 -0.8135318034813961 -0.10624655499420804 0.5379265643652292 -0.7217974832339459 -0.053664605440358865 0.12945413167477526 -0.7578695296322564 -0.055973233304856894 0.03661945098854044 -0.6314904387452475 -0.0784997788603451 0.03811646281013772 -0.6263343859998096 -0.04084790523800403 0.085735305318397 -0.7868429777377757 0.04198176268799789 0.8855333636223046 -0.8976704929912628 0.006223689496410145 0.5013856777711945 -0.9009324369458296 -0.02561711399567068 0.1619914737539653 -1.1480733542935035 0.0032490004743782387 0.07243075439964194 -0.9842137715406979 0.014233846206241994 0.0750475295114138 -1.0432512512753898 -0.03462362802370256 0.1554916455123568 -1.1436249621506487 0.06471022245365818 1.4129985436229164 -0.7437866049178956 0.17155728252752286 1.6250414036699743 -0.5457047489610104 0.12654652645732145 1.4653392482700152 -0.571893249970359 -0.0998842337194876 1.4325076008631974 -0.7349529722987418 -0.35777568510290975 1.3544989861320411 -0.7558323638334612 -0.344122232955613 1.4249399555955395 -0.5566969892603073 0.21547713587277523 1.3490654338879624 -0.82322849002669 0.36178916182874343 1.1211410182249637 -0.9448586550643395 0.4909792645030859 0.9197017263824102 -0.8380071736001955 -79 1.3166666666666669 -0.14430843666335544 0.9233514610864679 -0.8026167900019106 -0.10183913070666953 0.5357201119239748 -0.7092883110693932 -0.05150107609815126 0.1262765369381577 -0.7584674924794095 -0.054641725110020675 0.035338776017202436 -0.6308762550940392 -0.07542759376858206 0.03456155537837511 -0.6271668042802342 -0.03872076613584032 0.08349525883476196 -0.7900260643594389 0.05052369254864002 0.8852524669676992 -0.8781334138425956 0.011541451913186852 0.4952143463023151 -0.8969196868895833 -0.022963701276012553 0.16829685688511115 -1.1441426444929828 0.0037218990454647985 0.07317281263709782 -0.9854364134043716 0.01365702488393672 0.07821941258959912 -1.0408300157555808 -0.03341219020985734 0.1612380888949454 -1.1528558836953313 0.052560976098956005 1.4159292890366442 -0.7319514924540165 0.1474595914276691 1.630968945228169 -0.5381399977289821 0.10940274299546865 1.472942694944478 -0.5622294123899892 -0.11458250153123295 1.427919017474281 -0.7327214231486632 -0.36596427950003785 1.3412915809476393 -0.741212586784546 -0.3659146716518423 1.410129783095943 -0.5544111812067761 0.20723091982436223 1.3590565156599033 -0.8121611547486765 0.36750243447361536 1.142891822588685 -0.9282908864424875 0.5051981453237508 0.9512955706361557 -0.8357542722861232 -80 1.3333333333333333 -0.13776307935175086 0.9189394221857872 -0.7929299120963147 -0.09848863278694159 0.534259600634402 -0.6972491158783514 -0.05103780527930069 0.12434028335478682 -0.7578285050154402 -0.05376747320310483 0.035602801958654506 -0.6282796189401508 -0.07409844179903628 0.03213524385028795 -0.6267604062546434 -0.03842812079976323 0.08270974759772531 -0.7911702417854176 0.059037192178698614 0.8864363028496031 -0.8595822666820453 0.01813852663803544 0.49033959856704995 -0.8891113087930502 -0.018875849008571043 0.17674327798159334 -1.1371919873239078 0.0038851029602591934 0.07431804649095441 -0.9860852050072026 0.013028158906448942 0.08296822985436196 -1.0353362002039477 -0.030475853000243493 0.16776809223728179 -1.1616702340101221 0.04060720232845782 1.4176041864507387 -0.7203421439749005 0.12156277585879723 1.6359301138449271 -0.5291108806717691 0.09094770974753565 1.4789588991599532 -0.5507707413251349 -0.1283176809686338 1.42424434499927 -0.7252142873592643 -0.3723756237625673 1.3280491736179865 -0.7291926549148353 -0.386767574249284 1.3936738914014792 -0.5492002086254347 0.1959183169736243 1.3689532805836153 -0.8077793810524461 0.37235716674669067 1.1677668295864314 -0.9113664483180375 0.5206636644116274 0.9871037529388489 -0.8308617338519937 -81 1.35 -0.13140985404787808 0.9154998055238377 -0.7842470581232877 -0.0953612064043019 0.5331406078966084 -0.686289213123838 -0.05142457864136344 0.12341763350625863 -0.7568404729226152 -0.05350247665983746 0.03650062084902746 -0.6244992634857606 -0.07403600183849966 0.030367789247706934 -0.6263511842663496 -0.03865084668900098 0.08300412378901663 -0.7914575057640174 0.06726359135835629 0.8886943315921978 -0.8432677492295029 0.0261097966712912 0.4875064406567116 -0.875953940537303 -0.013283851122929267 0.18727774113687315 -1.1261451956586963 0.004093287526889751 0.07597010332942236 -0.9852205176043687 0.012969146502305164 0.08910067185411018 -1.026378081778637 -0.025341138312680464 0.17558591534277967 -1.1670534976647862 0.02943687001258866 1.418215920380177 -0.7095175009070795 0.0942545835048652 1.639781916031032 -0.517816064606892 0.07198384697205944 1.483734884720045 -0.5375436532403219 -0.14058163289407483 1.421702075067093 -0.7113678993863676 -0.3773624909763764 1.3145152745603368 -0.7196595972664678 -0.4062793323584786 1.3752953119019484 -0.5402326180722986 0.1825467832220999 1.3787594883169054 -0.8074000599452825 0.3752993300832954 1.1956597501915698 -0.8960662185500128 0.5371182039008495 1.0264438487777456 -0.82347931968859 -82 1.3666666666666667 -0.12450111842313413 0.9129775510135716 -0.7759414067724597 -0.09240254360550393 0.5309629319708128 -0.6786105817241609 -0.05194947882834828 0.12350531921532168 -0.7560067765960494 -0.053544132735417915 0.037369537183646766 -0.6197449001263838 -0.07502193566491056 0.029397825817623725 -0.6267774686972946 -0.03846246940773862 0.08424475133709008 -0.7916095014385923 0.07576565940159154 0.8910999945175487 -0.8278505144951975 0.0351825791335144 0.48675161239286313 -0.856741395966134 -0.006331228068726014 0.19931958521753615 -1.1104130996432506 0.004886283230112482 0.07830350893062941 -0.9814622513202379 0.014278747996937449 0.09610418118017443 -1.0146354718053794 -0.01797560739241412 0.1852705916047001 -1.1654847423758972 0.01926643905943519 1.4181670799373676 -0.6993375771044743 0.06663887221018885 1.6425400178257858 -0.5042854196251253 0.05349385224001472 1.4874639203072935 -0.5233248725307421 -0.1513525023814348 1.4198626043528266 -0.6931344208838668 -0.3817771684340072 1.3005523043878573 -0.7115224600113611 -0.42363239566085964 1.3553159137677337 -0.5263582140520296 0.16850317728688205 1.3883035469489615 -0.8073051500761736 0.3763294264112358 1.2259153310770226 -0.8808703602760162 0.5539452458418289 1.0685137879990299 -0.8133302997958154 -83 1.3833333333333333 -0.11657590035566305 0.9112054007760808 -0.7670774518198828 -0.09033826711948383 0.5264343780684426 -0.6765478728666102 -0.05224229124938704 0.12476817763808119 -0.7553624928006356 -0.05370125794111383 0.037936716343553285 -0.6145696311452821 -0.07690991928168439 0.02938758080620152 -0.6282159061004929 -0.037646756877468004 0.08650106521663654 -0.7919876157023332 0.08574352366863813 0.8925732547083497 -0.8099484491345457 0.04470003127194616 0.4877537845788575 -0.8319275801248385 0.0015236949716784648 0.21179521022748946 -1.0900918363779029 0.006921633513520559 0.08167768674565047 -0.9731917008851043 0.017818070313587866 0.10343157854464612 -1.001200076626259 -0.008853629438721698 0.19664040857051 -1.1546631952607287 0.009692053843479452 1.4180157524738333 -0.6887618179933894 0.040016599535883886 1.6443475792881495 -0.48903596290713197 0.03589325581992134 1.490188291299447 -0.508699570697933 -0.16113022963071105 1.4178249440871586 -0.6740653586442061 -0.386469336880256 1.2861175975134047 -0.7043386406039094 -0.4382658875686078 1.3342000787666037 -0.5071742983177644 0.15497160314628985 1.3972464430128433 -0.8042647472883895 0.37647113444276925 1.257513498015576 -0.8612965359606577 0.569965504336418 1.1128655206574303 -0.7997009478323948 -84 1.4 -0.10767027699771274 0.9099562629780736 -0.7568765072758641 -0.08949073587267416 0.5198743670846562 -0.679678563692609 -0.052345539326956285 0.12725465642818942 -0.7547191906985342 -0.053998789432060795 0.03821167276355196 -0.6098813858828078 -0.079580953535777 0.030224449069036853 -0.6304145212811242 -0.03657600079532554 0.08988412058535562 -0.7927990888249429 0.0973578464525658 0.8927941058379206 -0.7888025557754423 0.053898151221593485 0.4902273590910577 -0.8030239939604327 0.009673289567770556 0.2233149538156337 -1.0657756820999533 0.010765297680664006 0.0864844580082765 -0.9589796415327465 0.024330522865102892 0.11052472348492 -0.9870464600343904 0.0012649291664590847 0.20837832592545 -1.1345278383554829 -0.00011476555363607206 1.418256007545048 -0.6764040589330013 0.015277562094786416 1.6452074209627963 -0.4728384022469522 0.018989052093626765 1.4918898814798423 -0.4936884188258144 -0.17061448668966211 1.414634016064934 -0.6573267662245588 -0.3917710512742888 1.2711724319161024 -0.6987475027780718 -0.4511832916536685 1.3123922238524017 -0.4850606999607254 0.14269392863696778 1.405345381321285 -0.796463968619638 0.3763609966122996 1.289225682105963 -0.8342713837069027 0.5838808792112627 1.1592353164909905 -0.7824815598853346 -85 1.4166666666666667 -0.0983316215824816 0.909045684191202 -0.745389282831385 -0.08932862353611136 0.5129679558132473 -0.6849203060179052 -0.05248729904924348 0.130734484434734 -0.7538231224074992 -0.0544344187236863 0.03828332819137829 -0.6063513543305115 -0.08279441763422894 0.03159495794436928 -0.6330941726569436 -0.0357553383144762 0.09437273311531805 -0.7941475534819253 0.10924721521792545 0.8923360115940382 -0.7676889307439043 0.06236575526157334 0.49394605423613736 -0.7720350078175351 0.017599304686801567 0.2323767447838438 -1.0381313662877647 0.016635232775322886 0.09260013823810714 -0.9381376028887981 0.034107063020812234 0.11666819400934149 -0.9725771771958369 0.011668834348833236 0.21852567330412115 -1.1063040371112487 -0.01068318990281372 1.418995180488906 -0.6616622469106354 -0.007401945753346042 1.6449416984273704 -0.4563773376660256 0.0024571781667226556 1.4925530297903664 -0.47812723025379816 -0.18023588844231905 1.4096211512697572 -0.6449512997947827 -0.3973354831569981 1.2557758143625077 -0.6952464082186365 -0.46443608789696067 1.2902535080438766 -0.46404350850214177 0.13218624724019903 1.412564152219376 -0.7834580594273176 0.3752081990313571 1.3198394519708212 -0.801575406414302 0.5947416479951078 1.207036809473104 -0.7622748795836825 -86 1.4333333333333331 -0.08942981007157272 0.90837492975653 -0.7337130546059536 -0.08938621104442396 0.5074221454408031 -0.6893097568612826 -0.05271862356596169 0.13470759231729343 -0.7523576219241483 -0.054878527329211745 0.03826607458751385 -0.6041489695808016 -0.08595720660767354 0.0330312226969487 -0.636032429450973 -0.035315533253525 0.09963931436294045 -0.7958611540734842 0.11970603780211002 0.891995114692433 -0.7505849903668873 0.07005047601753914 0.49854583893205784 -0.7409857602554402 0.024870929788629335 0.2375794735430053 -1.0081524314460575 0.024213595428969358 0.09908008692396299 -0.9109333527220749 0.04654664281248536 0.12139949739405874 -0.956456469524529 0.02184771853553435 0.22523700031656396 -1.0713282306575058 -0.021690096012633678 1.419801867655571 -0.6453195762496559 -0.028464992713221126 1.643343311825792 -0.4400028498211126 -0.013795327190601612 1.492149398641366 -0.4620225219774177 -0.18976541184393622 1.4025510043648268 -0.63788643747242 -0.40225451606119633 1.2402141120298646 -0.692890070204254 -0.47904471387363656 1.268037801094682 -0.44737743710453187 0.12402472753313035 1.4189701317049042 -0.7653015230326102 0.3719308906261066 1.348246524997986 -0.7680094433741012 0.6017904942200812 1.2552524589538714 -0.7397047202507397 -87 1.45 -0.08181091069895709 0.9078447245635997 -0.7233777676139985 -0.08967688771080308 0.5041622659039569 -0.6914125428134744 -0.05285609143552278 0.13857216657376478 -0.749844127702944 -0.055134427594164745 0.03838827284326981 -0.6028903012883399 -0.0884529587003194 0.03420497172067043 -0.6389756924522703 -0.03496196735259535 0.10494641990746142 -0.7973213752905421 0.12751190725813338 0.8923943468795346 -0.73976886656691 0.07688105240280402 0.5034909437122375 -0.7118101102292242 0.03107056844304341 0.23807237682038512 -0.9772921983788707 0.032762952603410715 0.10464072851832826 -0.8783494275420387 0.06014959725428307 0.12462934040087466 -0.9355714617080291 0.031397099898812265 0.2271792700180693 -1.0316220945407588 -0.032230430934771966 1.4199918782820078 -0.6289731021511947 -0.048462383293910644 1.6403324806237491 -0.42390080751850695 -0.029538672310536276 1.4904857890406975 -0.44568899920373356 -0.19838640622649564 1.393711518636096 -0.6357577181663981 -0.4055402743777705 1.224811913164347 -0.6897839627858384 -0.4940509833071589 1.2459115321617853 -0.43670413028902577 0.11875575939789426 1.4246027274998005 -0.7419173785656074 0.3665712159969484 1.3736275487947454 -0.7378665058974757 0.6042890552983587 1.3027390810898634 -0.7152788180306517 -88 1.4666666666666666 -0.07591964366243682 0.9073026835960336 -0.7154237763823988 -0.09018962981874216 0.5030677295015232 -0.6909072194631902 -0.052704273005755475 0.14182750436196223 -0.7457354354550815 -0.05515073102814305 0.03894508668012443 -0.6018955820946678 -0.09012777659979287 0.03512410468092011 -0.6416947684395445 -0.03439136532621317 0.10928527013960548 -0.7977719953611961 0.13196308200139495 0.8939907042719696 -0.7359837498958698 0.08264924273379293 0.5082780949852115 -0.6860877477732827 0.03614559807709748 0.234232958723541 -0.9462343208872285 0.041471968333842424 0.10843496868344624 -0.8418007598258521 0.0731743384896121 0.1261723055914209 -0.9069986135218339 0.03992621722352804 0.22396690827151985 -0.9907971586720022 -0.04159312632979303 1.4191543681740992 -0.6139886301311893 -0.06750536119214665 1.6360343056091897 -0.4084698458302355 -0.04424185573851873 1.4872233459609705 -0.4299196999538983 -0.20529554208580233 1.383922567881463 -0.6366963430014664 -0.40679880263363355 1.209722107007923 -0.6846612604247588 -0.50756934368099 1.2239515862778445 -0.4319884920515201 0.11654236005578181 1.4293479079590006 -0.7134727616893916 0.35978501257330436 1.3957422217588271 -0.714587690693096 0.6016282899292648 1.3484212022182702 -0.6897593967203001 -89 1.4833333333333334 -0.07165417854548922 0.906658370226602 -0.7100678941375693 -0.09071256170931248 0.503235309105753 -0.6879999021170867 -0.052182820363403756 0.14417605955236182 -0.7399326032967862 -0.05515679573741229 0.040078449432604454 -0.6007595811162917 -0.09128517626983776 0.03595296428549513 -0.6441469440234827 -0.0335535126848924 0.11181678876698967 -0.7970172023346836 0.1329527203475702 0.8970367550254794 -0.7388691858669885 0.08723084518050839 0.5126072129140006 -0.6642941019897939 0.04086282114949318 0.2277968636876308 -0.9142288166498732 0.04963991463798452 0.11038630460019956 -0.8026097807285472 0.08435884934046894 0.12595504932684093 -0.86968527440646 0.04722306243648884 0.2166273506076884 -0.952944453450206 -0.04966658861590977 1.4172864222511254 -0.6009219782373548 -0.08522387442260765 1.630760360614937 -0.3942912720027018 -0.05723637351090328 1.48216906140202 -0.41591782696662133 -0.2102171790761921 1.3742817076021512 -0.6381910160688428 -0.40627120420239127 1.1951181676107867 -0.6776502966865692 -0.5181109901620211 1.2021251786743856 -0.43186454500880994 0.11672689750199748 1.4329241297444175 -0.6818333996369244 0.3521776606969624 1.4147495236508552 -0.7004893864367034 0.593494472589392 1.3912270490873102 -0.664338872196873 -90 1.5 -0.06856171033016766 0.9060046693731171 -0.7069287821217535 -0.09108279566454096 0.5037096248734917 -0.68313833092211 -0.05129570306587705 0.14553864660608942 -0.7331527507579872 -0.05549540629246707 0.04164118980390392 -0.5997011290802057 -0.09245125773390402 0.0369463935791162 -0.6464737925581581 -0.0325052454815686 0.11229711816427705 -0.7956136924873766 0.1312652985447227 0.9013419432711144 -0.7464129343475597 0.09071398904067576 0.5163842753512574 -0.6455316074891944 0.0463863502778932 0.22095756346332643 -0.8802187473927972 0.0567054796335248 0.11100537198960891 -0.7613887908506598 0.0931513425083295 0.1246145624970656 -0.824567634442952 0.0535236829282902 0.20703828291424906 -0.9198930875160889 -0.056723211073076776 1.4145651888602566 -0.5895420196124451 -0.10107339847893995 1.6249529518026244 -0.3816757447864326 -0.0680786766907553 1.4755536537937253 -0.40448791779387255 -0.21347092093183706 1.3657061177974148 -0.6385341901562849 -0.40433348658195656 1.181392524268273 -0.6698484626497989 -0.5250467423051333 1.18040612076 -0.434318092467126 0.11756223582559155 1.435096057349284 -0.6516555964769939 0.3451422625599999 1.4307610426363597 -0.6938962024646192 0.5807144080195004 1.4299314833724024 -0.6395734615572546 -91 1.5166666666666666 -0.06620004665336707 0.905559074448419 -0.7051769155443167 -0.09124617970048213 0.5040247645479993 -0.6768392123863703 -0.05008038233906663 0.1460444214562017 -0.7266632831510128 -0.05639070238019706 0.04330107167889096 -0.5993848385834054 -0.09410875704988987 0.03842882130755356 -0.6487461690258802 -0.031244306587522332 0.11111042889807152 -0.7943234916207114 0.12861119575160654 0.906040080447058 -0.7542647047266652 0.09317277470488669 0.5197108726523386 -0.628656620507224 0.05320432981346305 0.21510962256197827 -0.8438208285170969 0.06227848686118187 0.11100013465519605 -0.7181918147502624 0.09947289336219525 0.12328033644593514 -0.7736246730138481 0.059380821312478516 0.1967636608916387 -0.8897252912283559 -0.06302368270290551 1.4112758619751895 -0.5792475809319657 -0.11452707780586525 1.6191308370910882 -0.3705201652210325 -0.07681940124170204 1.4681278774178543 -0.3952780663624194 -0.2156895524856531 1.358649902450232 -0.637329623681066 -0.40134246122902495 1.1689755133420172 -0.6625990212430191 -0.5285305706071264 1.159024841135887 -0.43721205533120605 0.1168675807847248 1.43589144322298 -0.6284691424323515 0.3408942195877376 1.4438819171855852 -0.6893183848807188 0.5659515455825769 1.4632000693285494 -0.6141526415702874 -92 1.5333333333333334 -0.06442149087602458 0.9054401130926849 -0.7037631391527628 -0.09119964092203486 0.5042468746915978 -0.6696062286981262 -0.048664988576691284 0.1459400801095315 -0.7217068966119953 -0.05793909180366919 0.044714760463297046 -0.6003481921856911 -0.09628014804375302 0.0403769669990621 -0.6508148719815052 -0.029754065400597926 0.10893922091935977 -0.7934747776291153 0.126781362939055 0.9100094934016912 -0.757490715134977 0.09445955480255751 0.5228495190367599 -0.6132914105342062 0.06067978981320723 0.2101846916784944 -0.8052872618478809 0.06613223339079194 0.1109958704140914 -0.6732125707242488 0.10343449302562993 0.12285094656929864 -0.7190098073749029 0.0650883265393349 0.1865521046361428 -0.8584140295634514 -0.06864812952015961 1.4078682222516605 -0.5695682391543658 -0.12522066802037995 1.6138445610447778 -0.360582718556643 -0.0839610552671664 1.4609734086443704 -0.38718908964406934 -0.2174122229477515 1.3531713412930868 -0.6349349915762863 -0.39779245158391957 1.158173188924234 -0.6570274301236089 -0.529201885935592 1.1385816194631557 -0.43903455356326787 0.11346509807045825 1.435654642482991 -0.614585954465309 0.34076033439218556 1.4544749635174852 -0.6820646584471614 0.5520326570420675 1.490172543387665 -0.5864703244968547 -93 1.55 -0.0633375075851611 0.9054799481818039 -0.7019548587700569 -0.09094165124424156 0.5047718901904802 -0.6617968172647051 -0.047362960495017516 0.14543236660552344 -0.7190599468271293 -0.06018046466810434 0.045629840729775176 -0.6025234766332733 -0.09841711712027731 0.042219130892197504 -0.6524877877128815 -0.028128093074388884 0.10641638634978604 -0.7928217436520378 0.12632880129942345 0.9128271432362874 -0.7544681223526182 0.09437731312633238 0.5260315279102004 -0.5993317333739011 0.06763537644150518 0.20500550631556042 -0.7652801903447707 0.06821991102463411 0.11145805398411554 -0.6271168723618068 0.10533995287600965 0.12365210023035761 -0.6630187623434888 0.07043385433374544 0.1764395853444196 -0.8228846280183093 -0.07357171840433563 1.4049100361628086 -0.5603880174759907 -0.13318311340149114 1.6096226451564004 -0.35165899784650284 -0.09019512773030453 1.4551245830976585 -0.3792907862958531 -0.21887710101087265 1.3491823512194623 -0.6318018766054183 -0.39422696377435823 1.1492254174027474 -0.6536694823759748 -0.5278301845258593 1.1198823458360672 -0.43962621951367736 0.10787435829106577 1.4350671903880854 -0.6075357248851563 0.3441020994601719 1.4630119921603757 -0.6710048245386666 0.5397385486651824 1.5110164016999434 -0.5569754128262029 -94 1.5666666666666669 -0.06302098691644034 0.9053137453406898 -0.6995403906033928 -0.09023661455220482 0.5060945340992326 -0.6533123518909657 -0.04652756635426687 0.14467120133591696 -0.718815729657647 -0.06299855210540535 0.046038552698563946 -0.6052787441838721 -0.09993480861349735 0.04345142392895461 -0.6537091885011251 -0.02662395300738342 0.10402029550082384 -0.7919891161815646 0.12631314457452875 0.9150093228326875 -0.7479157778602432 0.09295780544056222 0.5293073408748291 -0.5862684325352981 0.0731851614723874 0.19842036185015155 -0.7248660887147623 0.0686509718632796 0.11265451653756892 -0.5809220320562336 0.10578010297272321 0.125274963964101 -0.6084540594328102 0.07507029571387278 0.16613813983761488 -0.7829967194428061 -0.07775775720355026 1.402942168040869 -0.5518408949432286 -0.13890450133186763 1.6068360856633928 -0.34359202818561757 -0.09607946277157997 1.4512811795416793 -0.3710695112658997 -0.22007097628403938 1.3466721416029723 -0.6280654040358978 -0.3910019948596123 1.142262248367493 -0.6523724261195446 -0.5251334746702022 1.103686975801074 -0.4397840512014656 0.10162339227659985 1.4350019267166823 -0.6025348445096442 0.34869940757290974 1.4697643488795604 -0.6575947507563531 0.5282125328940958 1.5265028471843882 -0.5275396022721096 -95 1.5833333333333333 -0.0633022764231123 0.9047157300926821 -0.6964769357554307 -0.0886810818805832 0.5084642753577996 -0.643836795202096 -0.04630099533729478 0.14383942446018197 -0.7203546366996265 -0.06588317997455759 0.04625908736231946 -0.6076730384914822 -0.10066830273421108 0.04412633362672031 -0.6545645334341802 -0.025554975068477655 0.10208763895525845 -0.7908705893524176 0.12566621397700986 0.9172093690886554 -0.7410245437735984 0.09058777233286512 0.5326244889812591 -0.5733538833971679 0.07702807963053176 0.19036367767936466 -0.6855141696453929 0.06750826943354683 0.11468843424614 -0.5358223583851034 0.10543132303369951 0.12655356494707068 -0.5583918239111041 0.07876389883800151 0.15557681107888188 -0.7413972921830475 -0.08120102456127345 1.4022827513458411 -0.544040179619622 -0.14313365718351198 1.6055501639306191 -0.33628169261486707 -0.101732719724024 1.4496266502976252 -0.3623924364889494 -0.22085494658375032 1.3457371254802508 -0.6234062631085194 -0.38820833136351474 1.1372211067252098 -0.6526401311197884 -0.5218157030738488 1.0905858513247684 -0.44020186931570227 0.09619808956074552 1.4361285770692374 -0.5956224302726192 0.3520369172812179 1.474722640720211 -0.643896834641386 0.5165565268646354 1.537271504800856 -0.4997208026256914 -96 1.6 -0.06383275862137816 0.9038629911340805 -0.6925904840359142 -0.0863449062059415 0.5117486109800827 -0.6335216034983124 -0.0466189941013833 0.14315382422578382 -0.7226392237347536 -0.06795878433468348 0.04663651420676304 -0.6087461203993142 -0.1007829767564038 0.044527492968230435 -0.6551968411814876 -0.02511172545753873 0.10075412112635475 -0.7895108563623872 0.12437749890269031 0.9195505083866029 -0.7341124694558936 0.08795008273026127 0.535910596842698 -0.5599420489825213 0.07928557235585153 0.18195265387203124 -0.6487326460790146 0.06456719187912952 0.11763559257604726 -0.4928521492730729 0.10460175111486295 0.12647539112748912 -0.5148369126286776 0.0813038048580939 0.14535453948600818 -0.7013380062633839 -0.08400132277870477 1.402877760495474 -0.536824133781501 -0.14660636268829322 1.6055493531909781 -0.3296531872239564 -0.10677508367278069 1.449807905837372 -0.35371130781108995 -0.2210815744896364 1.346471826649269 -0.6170886599835648 -0.38575042976431817 1.133976860216792 -0.6538826555950452 -0.5185646117145833 1.0809256189491008 -0.44117745046723933 0.09254684066908282 1.4387118384964153 -0.584648731975344 0.35295669371971466 1.4778128256628795 -0.6311805573382938 0.5045134266262887 1.5439039811035677 -0.4742675561780454 -97 1.6166666666666667 -0.06421536993088264 0.9032941857078229 -0.6874872083686706 -0.08385347120560238 0.5159269768408125 -0.6224136838537736 -0.047315012445296074 0.14280702549420687 -0.724745867340435 -0.06861472894570689 0.047151397178497964 -0.6081684517833419 -0.10054209346318546 0.04475477846090458 -0.6556357614198786 -0.025266371187100897 0.09995790196739177 -0.7878972833449839 0.12297122435677972 0.9218334781973552 -0.7259042638412994 0.08580872502646751 0.5390215331965443 -0.5455537349096027 0.08031590893741632 0.17467731860737254 -0.6154910975367924 0.05927916489777932 0.12140391628434731 -0.4525725227513194 0.10308268243248339 0.12499385630768761 -0.47785094348494345 0.0826118698915654 0.13673967361686437 -0.6646557072830946 -0.08644804854023516 1.404355095544861 -0.5297253712133864 -0.14986966299311766 1.6065399266985738 -0.32356194484954415 -0.1108048843837286 1.4512448250163117 -0.3458078370590117 -0.22063334966871062 1.348931746413684 -0.6079792700339729 -0.38350726548643194 1.1324357999386134 -0.6554161254831699 -0.5159002303909717 1.0746650051211215 -0.4429032347549604 0.09102520959194024 1.442758812708513 -0.5686713155088243 0.35258582911336916 1.4792172952333087 -0.6193099616208511 0.4923616719763905 1.5472682069525159 -0.4511232628785753 -98 1.6333333333333333 -0.06391775700717617 0.9036801488300847 -0.6804747953696928 -0.08172156405820433 0.5213409888364934 -0.6096770856313383 -0.048109871587550784 0.142903065387688 -0.7261479347187494 -0.06799283964542534 0.04748824461612157 -0.6065513093915872 -0.10018747409932052 0.044749676709937056 -0.6557473635029345 -0.025778376959169305 0.09956679811727001 -0.7859757197954055 0.12162867993244374 0.9239601096597181 -0.7158733812080621 0.08482491960899016 0.5417501736460569 -0.5296861793684502 0.08055175529685045 0.16957285691962687 -0.585959884905748 0.051549220226008156 0.12536246745617072 -0.41544270959943264 0.10052094572379783 0.12238544736249464 -0.4464117391750366 0.08296205529248818 0.13091473260812903 -0.631724343570851 -0.0890000341415249 1.4062791507036745 -0.5222244668492457 -0.15321494993205625 1.608341961114398 -0.3177832573677161 -0.11394160625662889 1.4535194391574007 -0.33910570325776895 -0.21935357548831577 1.3531082882810879 -0.5947351206118157 -0.38145735014251436 1.132378262234321 -0.6566251686414137 -0.5140580585410446 1.0712972053464098 -0.4453670742023215 0.09149526513498124 1.4481075386592395 -0.5475479733475432 0.3539162954852075 1.4794567688851925 -0.6068130751592515 0.48044748526738223 1.5483900300401199 -0.4294606324586678 -99 1.65 -0.0623232675887108 0.9054977213569861 -0.6709213708882287 -0.0800893051284412 0.5280594081136304 -0.5947812289796474 -0.04871182482664413 0.14339980860720133 -0.7266870457785909 -0.06660507638749336 0.047451860579170724 -0.6047257156663479 -0.09987971217546446 0.044494843370276004 -0.6554198403351268 -0.026354493091406007 0.09943640671654945 -0.7836950747984056 0.12029987334384275 0.9259547674541684 -0.7044291803655375 0.0853694636772532 0.5439722089650302 -0.5117522911933254 0.08034666678439328 0.16680005186528962 -0.5594895341840388 0.04229639944806021 0.12863743798630561 -0.3817756282247438 0.09683350671162654 0.11866915473416143 -0.41912069420287806 0.08283780399321633 0.12803282247789344 -0.6019644115853019 -0.09204131408194628 1.4083600455806224 -0.5140469584542323 -0.15670820480812972 1.6108564199097801 -0.31212537982718647 -0.11671381632689999 1.456435733425128 -0.3334473806567172 -0.21710802475636298 1.3587663885252639 -0.5766884129962374 -0.37962776165748385 1.1333402910956136 -0.6572476358752689 -0.5129732212242761 1.0699351436983537 -0.44821409577885263 0.09349178081758744 1.454348693067728 -0.5221395676671422 0.3596697037472704 1.4792023602269346 -0.5920926273661675 0.4688402277349574 1.5482286866228396 -0.4081510306470091 -100 1.6666666666666667 -0.059501696990731864 0.9084819630317227 -0.6593333703570372 -0.0788242533852911 0.5355394473545034 -0.578476122811372 -0.04906600956400166 0.1441242984935045 -0.7265847091211243 -0.06487588535211228 0.04715740903150656 -0.6030205469340659 -0.09966360365296414 0.044093019719379296 -0.6547674169675431 -0.026863446084088645 0.09940900556958449 -0.7811204938904901 0.11897898368501438 0.9278830090719168 -0.6922886807198072 0.08710147067008518 0.5458238848029204 -0.49195301687091897 0.07997779019969244 0.16551838112011735 -0.534566149561837 0.032611395454029 0.13108201368546302 -0.35041700399119374 0.09240591169336057 0.11411959104039161 -0.39384403034727705 0.08261106816977284 0.12694872370840932 -0.5738708917944854 -0.0955648649791148 1.4104586885784391 -0.5053011004811601 -0.1603346754917314 1.613818095805335 -0.30645766136570535 -0.11952281483010814 1.4597360241854096 -0.32831972777984647 -0.21413655979805363 1.3652829254215963 -0.5551825624871013 -0.37794510026670647 1.134727357742643 -0.6574245550813412 -0.5123348635100686 1.0694635112176456 -0.4511191666706523 0.0963093781881729 1.4609647080351404 -0.4942744357043924 0.3693853665696978 1.4789454938075552 -0.5752435510863579 0.4573437698278765 1.5476587851933303 -0.3864996219850596 diff --git a/Pose2Sim/Demo/S00_Demo_Session/test.py b/Pose2Sim/Demo/S00_Demo_Session/test.py index ad7d772..2895437 100644 --- a/Pose2Sim/Demo/S00_Demo_Session/test.py +++ b/Pose2Sim/Demo/S00_Demo_Session/test.py @@ -1,11 +1,28 @@ -import os import toml def test_workflow(): + from Pose2Sim import Pose2Sim - config_dict = toml.load(os.path.join('User', 'Config.toml')) - config_dict['filtering']['display_figures'] = False + + config_dict = toml.load('Config.toml') + config_dict.get("project").update({"project_dir":"."}) Pose2Sim.calibration(config_dict) + + + config_dict.get("project").update({"project_dir":"S00_P00_Participant\S00_P00_T00_StaticTrial"}) + config_dict['filtering']['display_figures'] = False + # Pose2Sim.poseEstimation(config_dict) + # Pose2Sim.synchronization(config_dict) Pose2Sim.personAssociation(config_dict) Pose2Sim.triangulation(config_dict) Pose2Sim.filtering(config_dict) + # Pose2Sim.kinematics(config_dict) + + # config_dict.get("project").update({"project_dir":"S00_P00_Participant\S00_P00_T00_BalancingTrial"}) + # config_dict['filtering']['display_figures'] = False + # # Pose2Sim.poseEstimation(config_dict) + # # Pose2Sim.synchronization(config_dict) + # Pose2Sim.personAssociation(config_dict) + # Pose2Sim.triangulation(config_dict) + # Pose2Sim.filtering(config_dict) + # # Pose2Sim.kinematics(config_dict) diff --git a/Pose2Sim/Pose2Sim.py b/Pose2Sim/Pose2Sim.py index d00507e..e777a66 100644 --- a/Pose2Sim/Pose2Sim.py +++ b/Pose2Sim/Pose2Sim.py @@ -280,16 +280,15 @@ def personAssociation(config=None): ''' from Pose2Sim.personAssociation import track_2d_all - + + # Determine the level at which the function is called (session:3, participant:2, trial:1) + level, config_dicts = read_config_files(config) + if type(config)==dict: - level = 3 # log_dir = os.getcwd() - config_dict = config + config_dict = config_dicts[0] if config_dict.get('project').get('project_dir') == None: raise ValueError('Please specify the project directory in config_dict:\n \ - config_dict.get("project").update({"project_dir":""})') - else: - # Determine the level at which the function is called (session:3, participant:2, trial:1) - level, config_dicts = read_config_files(config) + config_dict.get("project").update({"project_dir":""})') # Set up logging session_dir = os.path.realpath(os.path.join(config_dicts[0].get('project').get('project_dir'), '..', '..')) @@ -325,19 +324,18 @@ def triangulation(config=None): from Pose2Sim.triangulation import triangulate_all + # Determine the level at which the function is called (session:3, participant:2, trial:1) + level, config_dicts = read_config_files(config) + if type(config)==dict: - level = 3 # log_dir = os.getcwd() - config_dict = config + config_dict = config_dicts[0] if config_dict.get('project').get('project_dir') == None: raise ValueError('Please specify the project directory in config_dict:\n \ - config_dict.get("project").update({"project_dir":""})') - else: - # Determine the level at which the function is called (session:3, participant:2, trial:1) - level, config_dicts = read_config_files(config) + config_dict.get("project").update({"project_dir":""})') # Set up logging session_dir = os.path.realpath(os.path.join(config_dicts[0].get('project').get('project_dir'), '..', '..')) - setup_logging(session_dir) + setup_logging(session_dir) # Batch process all trials start = time.time() @@ -355,7 +353,7 @@ def triangulation(config=None): triangulate_all(config_dict) end = time.time() - logging.info(f'Associating persons took {end-start:.2f} s.') + logging.info(f'Triangulation took {end-start:.2f} s.') def filtering(config=None): @@ -369,15 +367,18 @@ def filtering(config=None): from Pose2Sim.filtering import filter_all + # Determine the level at which the function is called (session:3, participant:2, trial:1) + level, config_dicts = read_config_files(config) + if type(config)==dict: - level = 3 # log_dir = os.getcwd() - config_dict = config + config_dict = config_dicts[0] if config_dict.get('project').get('project_dir') == None: raise ValueError('Please specify the project directory in config_dict:\n \ - config_dict.get("project").update({"project_dir":""})') - else: - # Determine the level at which the function is called (session:3, participant:2, trial:1) - level, config_dicts = read_config_files(config) + config_dict.get("project").update({"project_dir":""})') + + # Set up logging + session_dir = os.path.realpath(os.path.join(config_dicts[0].get('project').get('project_dir'), '..', '..')) + setup_logging(session_dir) # Set up logging session_dir = os.path.realpath(os.path.join(config_dicts[0].get('project').get('project_dir'), '..', '..'))