In this tutorial, we will walk through how to compute the Gait Profile Score (GPS) and Gait Deviation Index (GDI) using a Normal Database (ND) we derived in the previous tutorial.
If you do not have a Sift ND file generated, please follow the previous tutorial BEFORE completing this one: Build ND Tutorial
Download here
Note: IF you have the correct kinematic joint angles for the GPS/GDI in your CMZ files, OR have just followed the build ND tutorial with the same data with the updated CMZ (i.e. you have not just redownloaded the V3D workshop data), you may skip step 2.
If we have loaded a library that does not have all of the 15 kinematic features necessary for the GPS and GDI, we need to make sure we have the correct joint angles computed in our CMZ workspaces. To do so, we are going to run a Visual3D pipeline script (.v3s file) against the loaded library.
The pipeline can be found here:
Note: this pipeline was derived for the sample workspace associated with this tutorial. If running this against your own data, make sure to verify the Link_Model_Based calculations with the GPS definitions to insure you have the correct angles.
A sample of this pipeline script can be seen here:
!///////////////////////////////////////////////////////////////////////////////////////////////// ! Compute LEFT Joint Angles !/////////////////////////////////////////////////////////////////////////////////////////////////
! Left Angles are calculated in accordance to the GPS score
! Left Ankle Compute_Model_Based_Data /RESULT_NAME=L_Ankle_Angle /SUBJECT_TAG=ALL_SUBJECTS /FUNCTION=JOINT_ANGLE /SEGMENT=LMF /REFERENCE_SEGMENT=LSK /RESOLUTION_COORDINATE_SYSTEM= ! /USE_CARDAN_SEQUENCE=FALSE ! /NORMALIZATION=FALSE ! /NORMALIZATION_METHOD= ! /NORMALIZATION_METRIC= ! /NEGATEX=FALSE ! /NEGATEY=FALSE ! /NEGATEZ=FALSE ! /AXIS1=X ! /AXIS2=Y ! /AXIS3=Z ! /TREADMILL_DATA=FALSE ! /TREADMILL_DIRECTION=UNIT_VECTOR(0,1,0) ! /TREADMILL_SPEED=0.0 ;
! Left Knee Compute_Model_Based_Data /RESULT_NAME=L_Knee_Angle /SUBJECT_TAG=ALL_SUBJECTS /FUNCTION=JOINT_ANGLE /SEGMENT=LSK /REFERENCE_SEGMENT=LTH /RESOLUTION_COORDINATE_SYSTEM= ! /USE_CARDAN_SEQUENCE=FALSE ! /NORMALIZATION=FALSE ! /NORMALIZATION_METHOD= ! /NORMALIZATION_METRIC= ! /NEGATEX=FALSE ! /NEGATEY=FALSE ! /NEGATEZ=FALSE ! /AXIS1=X ! /AXIS2=Y ! /AXIS3=Z ! /TREADMILL_DATA=FALSE ! /TREADMILL_DIRECTION=UNIT_VECTOR(0,1,0) ! /TREADMILL_SPEED=0.0 ;
IF your Sift ND file does not follow these requirements, please follow the previous tutorial here to build a ND with the correct summary data.