User Tools

Site Tools


visual3d:documentation:pipeline:signal_commands:global_normalized_signal_mean

Global Normalized Signal Mean

This command computes the mean signal from a collection of signal traces, with each trace time-normalized to the specified event sequence. Note that the output signal is a P2D Signal and is therefore stored in the Global Workspace.

There are options within this command for calculating means:

  • for all traces from all active files
  • for all Signal traces with each active file. The global mean value is then the mean value of all values across all active c3d files.
  • for more than one CMO workspace. The mean value computed for the CMO library is the mean of the mean values from each CMZ file. For example, if one CMZ file has 10 signal traces and another CMZ file has 1 signal trace, each CMZ file contributes the same weight (i.e. each file contributes one mean signal trace).
Global_Normalized_Signal_Mean
/SIGNAL_TYPES=LINK_MODEL_BASED+LINK_MODEL_BASED
/SIGNAL_NAMES=RKNEE_ANGLE+LKNEE_ANGLE
/SIGNAL_FOLDER=ORIGINAL+ORIGINAL
/SIGNAL_COMPONENTS=X+X
/START_LABEL=
/END_LABEL=
/EVENT_SEQUENCE= RHS+RHS++LHS+LHS
! /EXCLUDE_EVENTS=
/RESULT_NAME=KNEE_FLEXION
! /RESULT_FOLDER=ORIGINAL
/NORMALIZE_POINTS=101
/CREATE_STANDARD_DEVIATION=TRUE
! /CALCULATE_PER_FILE=FALSE
;

Parameters

If CALCULATE_PER_FILE=false All signal traces from all active files are used to compute the mean

If CALCULATE_PER_FILE=true In addition to the global mean signal the mean value is computed for all Signal traces with each active file. The global mean value is then the mean value of the mean values

If the CMO Library is active, it is important to highlight the distinction, albeit subtle, between how this command functions when used within a single workspace and when used within the CMO library. For instance, within a single workspace the command will compute the mean for all instances in each trial and a global mean of all instances in the workspace. However, within the CMO library each CMZ file contributes one mean value regardless of the number of instances within the file, and the command computes the mean of these mean values.

Output

The resulting signal is a P2D signal and is stored in the Global Workspace.

If CALCULATE_PER_FILE=true then a P2D signal is also stored with each C3D file.

Dialog

The Global_Normalized_Signal_Mean command can also be edited interactively using the following dialog

gmsm_1.jpg

Multisubject support

Visual3D supports multiple subjects within the same workspace, and across CMO/Z library workspaces. Older versions of Visual3D will not support the subject prefix extensions of this command.

When using a version of Visual3D prior to v2022.08.1, Visual3D treats each CMO/Z file as a single subject. In this way, the normalized signal mean curve is generated in the CMO/Z Global Workspace for the subject processed within that file. In the same manner, when computing the normalized signal mean curve across a library of subjects, each CMO/Z is treated as a single subject and then the normalized signal mean is computed across CMO/Z files and placed into the workspace GLOBAL for the overall mean curve across subjects.

After v2022.08.1, Visual3D extends these normalized signal mean calculations to be computed for each subject that is identified in the .C3D parameters SUBJECT section. In this way, the a single CMO/Z GLOBAL will contain the normalized mean curve for each subject within the CMO/Z file, prefixed with the subject's prefix identifier contained in the .C3D parameters. The Global Workspace of the CMO/Z file will also contain an unprefixed global normalized signal mean curve across all the subjects contained inside the CMO/Z file. When working across CMO/Z files in the CMO/Z library, multisubject support for this command will treat each subject in each CMO/Z file as separate subject to be separately included for calculating the normalized signal mean curve across all the subjects in the CMO/Z library.

Examples

This command is incredibly useful for summarizing data in your CMZ files and there are a number of ways in which it can be used.

Example 1: Global Normalized Means for 2 Signals

This example will time-normalize a signal (in this case Knee Flexion Angle) between events (RHS to RHS) for right knee angles and (LHS to LHS) for left knee angles, and compute the Global mean and standard deviation.

Note: this example assumes that Right and Left Knee angles have been created and the events RHS and LHS have been found.

First add the Global_Normalized_Signal_Mean command to the pipeline. Double click on the command to launch the dialog.

gmsm_1.jpg

In the bottom left-hand section of the dialog, select the Link_Model_Based signal type, RKNEE_ANGLE signal, and X component. Select the event sequence (e.g RHS to RHS). Click on Add A New Signal. The signal will now appear in the middle section of the dialog.

gnsm_2.jpg

To add the left knee angle signal, select the Link_Model_Based signal type, LKNEE_ANGLE signal, and X component. Select the event sequence (e.g LHS to LHS). Click on Add A New Signal. The signal will now appear in the middle section of the dialog.

gnsm_3.jpg

Enter the P2D Result Signal Name, in this case Knee_Angle. Click on Create Standard Deviation.

gnsm_4.jpg

Click OK to close the dialog. The text representation of the command is similar to the example seen in the next section.

Example 2: Global Normalized Means for more than two signals

This example will time-normalize several signals at the Hip, Knee, and Ankle for both left and right sides using a meta-command. The means for all 3 components of the each signal will be calculated.

Let the CMZ file contain the following signals:

  • RANKLE_ANGLE
  • RKNEE_ANGLE
  • RHIP_ANGLE
  • LANKLE_ANGLE
  • LKNEE_ANGLE
  • LHIP_ANGLE

The events for heel strike are found and labeled LHS and RHS. This pipeline command script will call the meta-command Create_Global_Means_For_Left_Right to calculate the mean signal from heel strike to heel strike.

Create_Global_Means_For_Left_Right
/TYPE=ANGLE
/JOINTS=ANKLE+KNEE+HIP
/START_EVENT=HS
/END_EVENT=HS
;

The Meta-Command Create_Global_Means_For_Left_Right below can be copied and pasted into a text editor and should be placed in the Meta_Command folder within the Plugins folder is as follows:

! BEGIN_META
! META_CMD_NAME=Create_Global_Means_For_Left_Right
! META_PARAM= TYPE:string::yes
! META_PARAM= JOINTS:string::yes 
! META_PARAM= START_EVENT:string::yes 
! META_PARAM= END_EVENT:string::yes
! END_META

! Loop for the joint angles that are passed to the meta-command 
For_Each
/ITERATION_PARAMETER_NAME=INDEX1 
/ITEMS=::JOINTS
; 

! Loop for the Components - X, Y, and Z
For_Each 
/ITERATION_PARAMETER_NAME=INDEX2 
/ITEMS=X+Y+Z 
; 

! Create the Global_Normalized_Signal_Mean using the joint parameter and the type parameter for the Left and Right sides
Global_Normalized_Signal_Mean 
/SIGNAL_TYPES=LINK_MODEL_BASED+LINK_MODEL_BASED 
/SIGNAL_NAMES=R&::INDEX1&_&::TYPE+L&::INDEX1&_&::TYPE 
/SIGNAL_FOLDER=ORIGINAL+ORIGINAL 
/SIGNAL_COMPONENTS=::INDEX2+::INDEX2 
/START_LABEL=R&::START_EVENT+L&::END_EVENT 
/END_LABEL=R&::START_EVENT+L&::END_EVENT 
! /EVENT_SEQUENCE= 
! /EXCLUDE_EVENTS= 
/RESULT_NAME=::INDEX1&_&::TYPE&_&::INDEX2 
! /RESULT_FOLDER=ORIGINAL 
! /NORMALIZE_POINTS=101 
! /CREATE_STANDARD_DEVIATION=FALSE 
! /CALCULATE_PER_FILE=FALSE 
; 

! End of component loop
End_For_Each 
/ITERATION_PARAMETER_NAME=INDEX2 
; 

! End of the joint loop
End_For_Each 
/ITERATION_PARAMETER_NAME=INDEX1 
;

Exporting the Global Normalized Signal Mean

The signal is stored in the Global Workspace, so it is necessary to make GLOBAL the active file before the export command. In addition, the resulting signal is in the P2D format which means that the components are different. Below is an example script that will export the resulting P2D file to ASCII.

! Select GLOBAL as the active
Select_Active_File 
/FILE_NAME= GLOBAL
! /QUERY= 
;

! Export the Global Normalized Signal Mean to ASCII
! The ALL signal components will export the normalized time, the mean signal, and the standard deviation   
! Leaving the file_name blank will cause the user to be prompted for a name
Export_Data_To_Ascii_File 
/FILE_NAME= 
/SIGNAL_TYPES=P2D
/SIGNAL_NAMES=KNEE_ANGLE_X
/SIGNAL_FOLDER=ORIGINAL 
/SIGNAL_COMPONENTS=ALL
! /START_LABEL= 
! /END_LABEL= 
! /Event_Sequence=
! /Exclude_Events= 
! /USE_POINT_RATE=FALSE 
! /NORMALIZE_DATA=FALSE
! /NORMALIZE_POINTS=101 
! /EXPORT_MEAN_AND_STD_DEV=FALSE 
! /USE_P2D_FORMAT=FALSE 
;
visual3d/documentation/pipeline/signal_commands/global_normalized_signal_mean.txt · Last modified: 2024/11/15 15:57 by wikisysop