visual3d:tutorials:emg:typical_emg_processing
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
visual3d:tutorials:emg:typical_emg_processing [2024/06/19 12:54] – sgranger | visual3d:tutorials:emg:typical_emg_processing [2024/11/15 18:04] (current) – [Open Files and Tag] wikisysop | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | **emg** stands for **electromyography**, | + | **EMG** stands for **electromyography**, |
- | this tutorial will show the basic steps for processing | + | ===== Overview ===== |
+ | This tutorial will show the basic steps for processing | ||
- | the tutorial will go through a step by step process using visual 3d pipeline commands to process the example emg data. it will do the following: | + | ===== Visual 3D Implementation ===== |
- | - open files and tags | + | Visual3D expects the EMG signals |
- | - create pipeline parameter " | + | |
- | - apply a band pass filter | + | |
- | - compute an envelope | + | |
- | - normalize based off of 4 different methods | + | |
- | ====== visual 3d implementation ====== | + | All of Visual3D' |
- | visual3d expects | + | ===== Processing EMG Signals with the Visual3D Pipeline ===== |
- | as of visual3d | + | The tutorial will go through a step by step process using [[visual3d: |
- | all signal processing commands in the pipeline can be used with emg data. | + | - Open Files and Tags |
+ | - Create Pipeline Parameter "EMG Signals" | ||
+ | - Apply a Band Pass Filter | ||
+ | - Compute an Envelope | ||
+ | - Normalize based off of 4 different methods | ||
- | ====== emg processing using visual 3d pipeline commands ====== | + | ==== Open Files and Tag ==== |
- | the tutorial will go through a step by step process using visual 3d pipeline commands to process the example emg data. | + | This section will walk you through pipeline commands that will open files and automatically assign tags to motion files for **Movement** and **MVIC** trials. |
- | + | ||
- | ===== open files and tag ===== | + | |
- | + | ||
- | this section will walk you through pipeline commands that will open files and automatically assign tags to motion files for **movement** and **mvic** trials. | + | |
< | < | ||
!-------------------------------------------------------------------------------------- | !-------------------------------------------------------------------------------------- | ||
- | ! open files and automatically assign tag to motion files for movement | + | ! Open files and automatically assign tag to motion files for Movement |
! -------------------------------------------------------------------------------------- | ! -------------------------------------------------------------------------------------- | ||
- | ! fresh workspace | + | ! Fresh Workspace |
- | file_new | + | File_New |
; | ; | ||
- | !open files | + | !Open files |
- | file_open | + | File_Open |
- | ! /file_name= | + | ! /FILE_NAME= |
; | ; | ||
- | !assign tags to mvc_a file | + | !Assign Tags to MVC_A file |
- | assign_tags_to_file | + | Assign_Tags_To_File |
- | /motion_file_names=*mvc_a.c3d | + | /MOTION_FILE_NAMES=*MVC_A.C3D |
- | ! /query= | + | ! /QUERY= |
- | /tags=mvc_a | + | /TAGS=MVC_A |
; | ; | ||
- | !assign tags to mvc_b file | + | !Assign Tags to MVC_B file |
- | assign_tags_to_file | + | Assign_Tags_To_File |
- | /motion_file_names=*mvc_b.c3d | + | /MOTION_FILE_NAMES=*MVC_B.C3D |
- | ! /query= | + | ! /QUERY= |
- | /tags=mvc_b | + | /TAGS=MVC_B |
; | ; | ||
- | !assign tags to mvc_c file | + | !Assign Tags to MVC_C file |
- | assign_tags_to_file | + | Assign_Tags_To_File |
- | /motion_file_names=*mvc_c.c3d | + | /MOTION_FILE_NAMES=*MVC_C.C3D |
- | ! /query= | + | ! /QUERY= |
- | /tags=mvc_c | + | /TAGS=MVC_C |
- | '; | + | ; |
- | !assign tags to walking files | + | !Assign Tags to walking files |
- | assign_tags_to_file | + | Assign_Tags_To_File |
- | /motion_file_names=*trial*.c3d | + | /MOTION_FILE_NAMES=*trial*.C3D |
- | !/query= | + | !/QUERY= |
- | /tags=movement | + | /TAGS=MOVEMENT |
; | ; | ||
</ | </ | ||
- | ===== create pipeline parameter | + | ==== Create Pipeline Parameter |
- | use the command **set_pipeline_parameter**, to set up a pipeline parameter to contain the emg signal names. | + | Use the command **Set_Pipeline_Parameter**, to set up a pipeline parameter to contain the EMG signal names. |
< | < | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=emg_signals | + | /PARAMETER_NAME=EMG_SIGNALS |
- | /parameter_value=emg_a+emg_b+emg_c | + | /PARAMETER_VALUE=EMG_A+EMG_B+EMG_C |
; | ; | ||
</ | </ | ||
- | ===== apply a band pass filter ===== | + | ==== Apply a Band Pass Filter |
- | apply a band pass filter to the emg data with the commands **highpass_filter** and **lowpass_filter**. surface emg signals have a frequency content between 20 and 500 hz. | + | Apply a band pass filter to the EMG data with the commands **Highpass_Filter** and **Lowpass_Filter**. Surface EMG signals have a frequency content between 20 and 500 Hz. |
- | **note:** that the highpass filter often has a cutoff frequency anywhere between 20 and 50 hz. the purpose of this high pass filter is to remove movement artifact (low frequency content). | + | **Note:** that the highpass filter often has a cutoff frequency anywhere between 20 and 50 Hz. The purpose of this high pass filter is to remove movement artifact (low frequency content). |
< | < | ||
!------------------------------------------------------------- | !------------------------------------------------------------- | ||
- | ! apply a band pass filter - highpass and lowpass filter | + | ! Apply a band pass filter - highpass and lowpass filter |
!------------------------------------------------------------- | !------------------------------------------------------------- | ||
- | ! select | + | ! Select |
- | select_active_file | + | Select_Active_File |
- | /file_name=all_files | + | /FILE_NAME=ALL_FILES |
- | ! /query= | + | ! /QUERY= |
; | ; | ||
- | ! apply highpass filter with 50 hz cutoff | + | ! Apply highpass filter with 50 Hz cutoff |
- | highpass_filter | + | Highpass_Filter |
- | /signal_types=analog | + | /Signal_Types=ANALOG |
- | /signal_names=::emg_signals | + | /SIgnal_Names=::EMG_SIGNALS |
- | /signal_folder=original | + | /Signal_Folder=ORIGINAL |
- | ! /result_suffix= | + | ! /Result_Suffix= |
- | ! /result_folder=processed | + | ! /Result_Folder=PROCESSED |
- | ! /filter_class=butterworth | + | ! /Filter_Class=BUTTERWORTH |
- | /frequency_cutoff=50 | + | /Frequency_Cutoff=50 |
- | /num_reflected= 0 | + | /Num_Reflected= 0 |
- | /total_buffer_size=100 | + | /Total_Buffer_Size=100 |
- | /num_bidirectional_passes=1 | + | /Num_Bidirectional_Passes=1 |
; | ; | ||
- | ! apply lowpass filter with 500 hz cutoff | + | ! Apply lowpass filter with 500 Hz cutoff |
- | lowpass_filter | + | Lowpass_Filter |
- | /signal_types=analog | + | /Signal_Types=ANALOG |
- | /signal_names=::emg_signals | + | /SIgnal_Names=::EMG_SIGNALS |
- | /signal_folder=processed | + | /Signal_Folder=PROCESSED |
- | ! /result_suffix= | + | ! /Result_Suffix= |
- | ! /result_folder=processed | + | ! /Result_Folder=PROCESSED |
- | ! /filter_class=butterworth | + | ! /Filter_Class=BUTTERWORTH |
- | /frequency_cutoff=500 | + | /Frequency_Cutoff=500 |
- | /num_reflected= 0 | + | /Num_Reflected= 0 |
- | /total_buffer_size=100 | + | /Total_Buffer_Size=100 |
- | /num_bidirectional_passes=1 | + | /Num_Bidirectional_Passes=1 |
; | ; | ||
</ | </ | ||
- | ===== compute | + | ==== Compute |
- | compute | + | Compute |
- | the command below will apply a moving | + | The command below will apply a moving |
< | < | ||
!------------------------------------------- | !------------------------------------------- | ||
- | ! apply a moving | + | ! Apply a moving |
!------------------------------------------- | !------------------------------------------- | ||
- | moving_rms | + | Moving_RMS |
- | /signal_types=analog | + | /SIGNAL_TYPES=ANALOG |
- | /signal_names=::emg_signals | + | /SIGNAL_NAMES=::EMG_SIGNALS |
- | /signal_folder=processed | + | /SIGNAL_FOLDER=PROCESSED |
- | ! /result_suffix= | + | ! /RESULT_SUFFIX= |
- | /result_folder=rms | + | /RESULT_FOLDER=RMS |
- | /num_window_frames=1+0.1*parameter::analog::rate | + | /NUM_WINDOW_FRAMES=1+0.1*PARAMETER::ANALOG::RATE |
; | ; | ||
</ | </ | ||
- | ===== create normalization factor | + | ==== Create Normalization Factor |
- | there are four alternative normalization methods describes in this tutorial. | + | There are four alternative normalization methods describes in this tutorial. |
- | - [[visual3d:documentation:emg:filtering:emg_envelope_version_3|normalize emg to mvc]] | + | - [[Visual3D:Documentation:EMG:Filtering:EMG_Envelope_Version_3|Normalize EMG to MVC]] |
- | - [[visual3d:documentation:emg:processing:normalize_emg_to_generic_global_variable|normalize emg to generic global variable]] | + | - [[Visual3D:Documentation:EMG:Processing:Normalize_EMG_to_Generic_Global_Variable|Normalize EMG to Generic Global Variable]] |
- | - [[visual3d:documentation:emg:filtering:removing_dc_bias|normalize | + | - [[Visual3D:Documentation:EMG:Filtering:Removing_DC_Bias|Normalize |
- | - [[visual3d:documentation:emg:processing:normalize_emg_to_mvc|normalize | + | - [[Visual3D:Documentation:EMG:Processing:Normalize_EMG_to_MVC|Normalize |
- | the beginning of the pipeline for all methods is as follows. | + | The beginning of the pipeline for all methods is as follows. |
< | < | ||
!-------------------------------------------------------------------------------------------------- | !-------------------------------------------------------------------------------------------------- | ||
- | ! there are often artifacts in the emg signal related to filtering, so we want to ignore the first | + | ! There are often artifacts in the EMG signal related to filtering, so we want to ignore the first |
- | ! and last 50 frames of data (at point rate) when we create the normalization (scale) factors | + | ! and last 50 frames of data (at POINT rate) when we create the normalization (scale) factors |
!-------------------------------------------------------------------------------------------------- | !-------------------------------------------------------------------------------------------------- | ||
- | event_explicit | + | Event_Explicit |
- | /event_name=start | + | /EVENT_NAME=START |
- | /frame=50 | + | /FRAME=50 |
- | ! /time= | + | ! /TIME= |
; | ; | ||
- | event_explicit | + | Event_Explicit |
- | /event_name=end | + | /EVENT_NAME=END |
- | /frame=250 | + | /FRAME=250 |
- | ! /time= | + | ! /TIME= |
; | ; | ||
!--------------------------------------------------- | !--------------------------------------------------- | ||
- | ! set pipeline | + | ! Set Pipeline |
!--------------------------------------------------- | !--------------------------------------------------- | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=start_at_event | + | /PARAMETER_NAME=START_AT_EVENT |
- | /parameter_value=start | + | /PARAMETER_VALUE=START |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=end_at_event | + | /PARAMETER_NAME=END_AT_EVENT |
- | /parameter_value=end | + | /PARAMETER_VALUE=END |
; | ; | ||
</ | </ | ||
- | the following for loop will loop through each of the signals and first create a global event for the maximum and mean. | + | The following for loop will loop through each of the signals and first create a global event for the maximum and mean. |
< | < | ||
!--------------------------------------------------- | !--------------------------------------------------- | ||
- | ! loop to calculate scale to normalize | + | ! Loop to calculate scale to normalize |
!--------------------------------------------------- | !--------------------------------------------------- | ||
- | for_each | + | For_Each |
- | /iteration_parameter_name=index | + | /ITERATION_PARAMETER_NAME=INDEX |
- | /items=::emg_signals | + | /ITEMS=::EMG_SIGNALS |
; | ; | ||
- | ! create | + | ! Create |
- | event_global_maximum | + | Event_Global_Maximum |
- | /signal_types=analog | + | /SIGNAL_TYPES=ANALOG |
- | /signal_names=::index | + | /SIGNAL_NAMES=::INDEX |
- | /signal_folder=rms | + | /SIGNAL_FOLDER=RMS |
- | /event_name=emg_max | + | /EVENT_NAME=EMG_MAX |
- | /select_x=true | + | /SELECT_X=TRUE |
- | ! /select_y=false | + | ! /SELECT_Y=FALSE |
- | ! /select_z=false | + | ! /SELECT_Z=FALSE |
- | /start_at_event=::start_at_event | + | /START_AT_EVENT=::START_AT_EVENT |
- | /end_at_event=::end_at_event | + | /END_AT_EVENT=::END_AT_EVENT |
; | ; | ||
- | ! create | + | ! Create |
- | event_copy | + | Event_Copy |
- | /event_name=emg_max | + | /EVENT_NAME=EMG_MAX |
- | ! /event_instance=0 | + | ! /EVENT_INSTANCE=0 |
- | ! /start_at_event= | + | ! /START_AT_EVENT= |
- | ! /end_at_event= | + | ! /END_AT_EVENT= |
- | /new_event_name=mean_start | + | /NEW_EVENT_NAME=MEAN_START |
- | /frame_offset=-15 | + | /FRAME_OFFSET=-15 |
; | ; | ||
- | ! create | + | ! Create |
- | event_copy | + | Event_Copy |
- | /event_name=emg_max | + | /EVENT_NAME=EMG_MAX |
- | ! /event_instance=0 | + | ! /EVENT_INSTANCE=0 |
- | ! /start_at_event= | + | ! /START_AT_EVENT= |
- | ! /end_at_event= | + | ! /END_AT_EVENT= |
- | /new_event_name=mean_end | + | /NEW_EVENT_NAME=MEAN_END |
- | /frame_offset=15 | + | /FRAME_OFFSET=15 |
; | ; | ||
</ | </ | ||
- | the mean of the signal and the maximum of the signal will then be computed. | + | The mean of the signal and the maximum of the signal will then be computed. |
< | < | ||
- | ! calculate | + | ! Calculate |
- | metric_mean | + | Metric_Mean |
- | /result_metric_name=::index&_scale | + | /RESULT_METRIC_NAME=::INDEX&_SCALE |
- | ! /apply_as_suffix_to_signal_name=false | + | ! /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=FALSE |
- | /result_metric_folder=emg_scale | + | /RESULT_METRIC_FOLDER=EMG_SCALE |
- | /signal_types=analog | + | /SIGNAL_TYPES=ANALOG |
- | /signal_names=::index | + | /SIGNAL_NAMES=::INDEX |
- | /signal_folder=rms | + | /SIGNAL_FOLDER=RMS |
- | /signal_components=0 | + | /SIGNAL_COMPONENTS=0 |
- | /event_sequence=mean_start+mean_end | + | /EVENT_SEQUENCE=MEAN_START+MEAN_END |
- | /exclude_events= | + | /EXCLUDE_EVENTS= |
- | /generate_mean_and_stddev=false | + | /GENERATE_MEAN_AND_STDDEV=FALSE |
- | ! /append_to_existing_values=false | + | ! /APPEND_TO_EXISTING_VALUES=FALSE |
; | ; | ||
! calculate the global maximum of the mean signal | ! calculate the global maximum of the mean signal | ||
- | metric_maximum | + | Metric_Maximum |
- | /result_metric_name=_max | + | /RESULT_METRIC_NAME=_MAX |
- | /apply_as_suffix_to_signal_name=true | + | /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=TRUE |
- | /result_metric_folder=processed | + | /RESULT_METRIC_FOLDER=PROCESSED |
- | /signal_types=metric | + | /SIGNAL_TYPES=METRIC |
- | /signal_names=::index&_scale | + | /SIGNAL_NAMES=::INDEX&_SCALE |
- | /signal_folder=emg_scale | + | /SIGNAL_FOLDER=EMG_SCALE |
- | ! /signal_components=all_components | + | ! /SIGNAL_COMPONENTS=ALL_COMPONENTS |
- | /event_sequence= | + | /EVENT_SEQUENCE= |
- | /exclude_events= | + | /EXCLUDE_EVENTS= |
- | ! /generate_mean_and_stddev=true | + | ! /GENERATE_MEAN_AND_STDDEV=TRUE |
- | ! /append_to_existing_values=false | + | ! /APPEND_TO_EXISTING_VALUES=FALSE |
- | /create_global_maximum=false | + | /CREATE_GLOBAL_MAXIMUM=FALSE |
; | ; | ||
- | ! clean up some temporary signals | + | ! Clean up some temporary signals |
- | event_delete | + | Event_Delete |
- | /event_name=emg_max+mean_start+mean_end | + | /EVENT_NAME=EMG_MAX+MEAN_START+MEAN_END |
- | ! /event_sequence= | + | ! /EVENT_SEQUENCE= |
- | ! /exclude_events= | + | ! /EXCLUDE_EVENTS= |
- | ! /time= | + | ! /TIME= |
; | ; | ||
- | remove_signals | + | Remove_Signals |
- | /signal_types=metric | + | /SIGNAL_TYPES=METRIC |
- | /signal_names=::index&_scale_max | + | /SIGNAL_NAMES=::INDEX&_SCALE_MAX |
- | /signal_folder=processed | + | /SIGNAL_FOLDER=PROCESSED |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=index | + | /ITERATION_PARAMETER_NAME=INDEX |
; | ; | ||
</ | </ | ||
- | ==== normalize emg to mvc ==== | + | ==== Approach 1: Normalize EMG to MVC ==== |
- | this pipeline normalizes the emg signal by dividing the emg signal by the maximum value of the emg signal from a separate trial (e.g. a trial that elicits a maximum voluntary contraction (mvc) from the muscle). | + | This pipeline normalizes the EMG signal by dividing the EMG signal by the maximum value of the EMG signal from a separate trial (e.g. a trial that elicits a maximum voluntary contraction (MVC) from the muscle). |
< | < | ||
! ------------------------------------------------------------- | ! ------------------------------------------------------------- | ||
- | ! normalize | + | ! Normalize |
! ------------------------------------------------------------- | ! ------------------------------------------------------------- | ||
- | ! for each emg signal, divide by it's maximum value | + | ! For each EMG signal, divide by it's maximum value |
- | for_each | + | For_Each |
- | /iteration_parameter_name=current_signal | + | /Iteration_Parameter_Name=CURRENT_SIGNAL |
- | /items=emg_a+emg_b+emg_c | + | /Items=EMG_A+EMG_B+EMG_C |
; | ; | ||
- | ! divide | + | ! Divide |
- | evaluate_expression | + | Evaluate_Expression |
- | /expression= analog::original::&::current_signal& / global::metric::mvc_max::&::current_signal&_max | + | /EXPRESSION= ANALOG::ORIGINAL::&::CURRENT_SIGNAL& / GLOBAL::METRIC::MVC_MAX::&::CURRENT_SIGNAL&_MAX |
- | ! /signal_types= | + | ! /SIGNAL_TYPES= |
- | ! /signal_folder=original | + | ! /SIGNAL_FOLDER=ORIGINAL |
- | ! /signal_names= | + | ! /SIGNAL_NAMES= |
- | /result_types=analog | + | /RESULT_TYPES=ANALOG |
- | /result_folders=normalized | + | /RESULT_FOLDERS=NORMALIZED |
- | /result_name=::current_signal | + | /RESULT_NAME=::CURRENT_SIGNAL |
- | ! /apply_as_suffix_to_signal_name=false | + | ! /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=FALSE |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name= current_signal | + | /Iteration_Parameter_Name= CURRENT_SIGNAL |
; | ; | ||
</ | </ | ||
- | ==== normalize emg to generic global variable | + | ==== Approach 2: Normalize EMG to Generic Global Variable |
- | typically | + | Typically |
< | < | ||
! ------------------------------------------------------------- | ! ------------------------------------------------------------- | ||
- | ! normalize | + | ! Normalize |
! ------------------------------------------------------------- | ! ------------------------------------------------------------- | ||
- | ! for each emg signal, divide by it's maximum value | + | ! For each EMG signal, divide by it's maximum value |
- | for_each | + | For_Each |
- | /iteration_parameter_name=current_signal | + | /Iteration_Parameter_Name=CURRENT_SIGNAL |
- | /items=emg_a+emg_b+emg_c | + | /Items=EMG_A+EMG_B+EMG_C |
; | ; | ||
- | ! divide | + | ! Divide |
- | evaluate_expression | + | Evaluate_Expression |
- | /expression= analog::original::&::current_signal& / global::metric::mvc_max::&::current_signal&_max | + | /EXPRESSION= ANALOG::ORIGINAL::&::CURRENT_SIGNAL& / GLOBAL::METRIC::MVC_MAX::&::CURRENT_SIGNAL&_MAX |
- | ! /signal_types= | + | ! /SIGNAL_TYPES= |
- | ! /signal_folder=original | + | ! /SIGNAL_FOLDER=ORIGINAL |
- | ! /signal_names= | + | ! /SIGNAL_NAMES= |
- | /result_types=analog | + | /RESULT_TYPES=ANALOG |
- | /result_folders=normalized | + | /RESULT_FOLDERS=NORMALIZED |
- | /result_name=::current_signal | + | /RESULT_NAME=::CURRENT_SIGNAL |
- | ! /apply_as_suffix_to_signal_name=false | + | ! /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=FALSE |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name= current_signal | + | /Iteration_Parameter_Name= CURRENT_SIGNAL |
; | ; | ||
</ | </ | ||
- | ==== normalize | + | ==== Approach 3: Normalize |
- | this pipeline normalizes to the greatest ½ second activity during a 5 second trial. | + | This pipeline normalizes to the greatest ½ second activity during a 5 second trial. |
- | * compute | + | * Compute |
- | * normalize | + | * Normalize |
- | * a window of twenty-five .02 second intervals of integrated | + | * A window of twenty-five .02 second intervals of integrated |
- | * the average integrated | + | * The average integrated |
< | < | ||
! --------------------------------------------------------------- | ! --------------------------------------------------------------- | ||
- | ! normalize | + | ! Normalize |
! --------------------------------------------------------------- | ! --------------------------------------------------------------- | ||
- | for_each | + | For_Each |
- | /iteration_parameter_name=index | + | /ITERATION_PARAMETER_NAME=INDEX |
- | /items=::emg_signals | + | /ITEMS=::EMG_SIGNALS |
; | ; | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=analog::rms&:&:&:: | + | /EXPRESSION=ANALOG::RMS&:&:&:: |
- | /result_name=::index | + | /RESULT_NAME=::INDEX |
- | /result_type=analog | + | /RESULT_TYPE=ANALOG |
- | /result_folder=result | + | /RESULT_FOLDER=RESULT |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=index | + | /ITERATION_PARAMETER_NAME=INDEX |
; | ; | ||
</ | </ | ||
- | ==== normalize | + | ==== Approach 4: Normalize |
- | for this example, the goal is as follows: | + | For this example, the goal is as follows: |
- | * compute | + | * Compute |
- | * normalize | + | * Normalize |
- | the beginning of this pipeline are separating the left and right legs and identifying specific gait events depending on the leg. | + | The beginning of this pipeline are separating the left and right legs and identifying specific gait events depending on the leg. |
< | < | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=r_emg_signal_list | + | /PARAMETER_NAME=R_EMG_SIGNAL_LIST |
- | /parameter_value=emg_a+emg_b+emg_c | + | /PARAMETER_VALUE=EMG_A+EMG_B+EMG_C |
- | ! /parameter_value_search_for= | + | ! /PARAMETER_VALUE_SEARCH_FOR= |
- | ! /parameter_value_replace_with= | + | ! /PARAMETER_VALUE_REPLACE_WITH= |
- | ! /parameter_value_prefix= | + | ! /PARAMETER_VALUE_PREFIX= |
- | ! /parameter_value_append= | + | ! /PARAMETER_VALUE_APPEND= |
- | ! /multi_pass=false | + | ! /MULTI_PASS=FALSE |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=l_emg_signal_list | + | /PARAMETER_NAME=L_EMG_SIGNAL_LIST |
- | /parameter_value=emg_a+emg_b+emg_c | + | /PARAMETER_VALUE=EMG_A+EMG_B+EMG_C |
- | ! /parameter_value_search_for= | + | ! /PARAMETER_VALUE_SEARCH_FOR= |
- | ! /parameter_value_replace_with= | + | ! /PARAMETER_VALUE_REPLACE_WITH= |
- | ! /parameter_value_prefix= | + | ! /PARAMETER_VALUE_PREFIX= |
- | ! /parameter_value_append= | + | ! /PARAMETER_VALUE_APPEND= |
- | ! /multi_pass=false | + | ! /MULTI_PASS=FALSE |
; | ; | ||
- | select_active_file | + | Select_Active_File |
- | /file_name=all_files | + | /FILE_NAME=ALL_FILES |
- | ! /query= | + | ! /QUERY= |
; | ; | ||
- | event_define_event_sequence | + | Event_Define_Event_Sequence |
- | /event_sequence_name=rcycle_sequence | + | /EVENT_SEQUENCE_NAME=RCYCLE_SEQUENCE |
- | /event_sequence=rhs+rto | + | /EVENT_SEQUENCE=RHS+RTO |
- | ! /exclude_events= | + | ! /EXCLUDE_EVENTS= |
- | ! /inside_of_sequence= | + | ! /INSIDE_OF_SEQUENCE= |
- | ! /offset_from_start= | + | ! /OFFSET_FROM_START= |
- | ! /offset_from_end= | + | ! /OFFSET_FROM_END= |
- | ! /offset_by=percent | + | ! /OFFSET_BY=PERCENT |
- | /event_sequence_instance=0 | + | /EVENT_SEQUENCE_INSTANCE=0 |
; | ; | ||
- | event_define_event_sequence | + | Event_Define_Event_Sequence |
- | /event_sequence_name=lcycle_sequence | + | /EVENT_SEQUENCE_NAME=LCYCLE_SEQUENCE |
- | /event_sequence=lhs+lto | + | /EVENT_SEQUENCE=LHS+LTO |
- | ! /exclude_events= | + | ! /EXCLUDE_EVENTS= |
- | ! /inside_of_sequence= | + | ! /INSIDE_OF_SEQUENCE= |
- | ! /offset_from_start= | + | ! /OFFSET_FROM_START= |
- | ! /offset_from_end= | + | ! /OFFSET_FROM_END= |
- | ! /offset_by=percent | + | ! /OFFSET_BY=PERCENT |
- | /event_sequence_instance=0 | + | /EVENT_SEQUENCE_INSTANCE=0 |
; | ; | ||
</ | </ | ||
- | a for loop will be used to loop through both the right and left leg. | + | A for loop will be used to loop through both the right and left leg. |
< | < | ||
- | for_each | + | For_Each |
- | /iteration_parameter_name=side | + | /ITERATION_PARAMETER_NAME=SIDE |
- | ! /iteration_parameter_count_name= | + | ! /ITERATION_PARAMETER_COUNT_NAME= |
- | /items=r+l | + | /ITEMS=R+L |
; | ; | ||
- | set_pipeline_parameter | + | Set_Pipeline_Parameter |
- | /parameter_name=emg_signal_list | + | /PARAMETER_NAME=EMG_SIGNAL_LIST |
- | /parameter_value=:&:&:: | + | /PARAMETER_VALUE=:&:&:: |
- | ! /parameter_value_search_for= | + | ! /PARAMETER_VALUE_SEARCH_FOR= |
- | ! /parameter_value_replace_with= | + | ! /PARAMETER_VALUE_REPLACE_WITH= |
- | ! /parameter_value_prefix= | + | ! /PARAMETER_VALUE_PREFIX= |
- | ! /parameter_value_append= | + | ! /PARAMETER_VALUE_APPEND= |
- | /multi_pass=true | + | /MULTI_PASS=TRUE |
; | ; | ||
</ | </ | ||
- | we're going to then loop over every sequence in the trial, so we first calculate the maximum number of sequences in the longest trial. | + | We're going to then loop over every sequence in the trial, so we first calculate the maximum number of sequences in the longest trial. |
< | < | ||
! --------------------------------------------------------------------- | ! --------------------------------------------------------------------- | ||
- | ! get the maximum number of cycles in a trial the entire | + | ! Get the maximum number of cycles in a trial the entire |
! --------------------------------------------------------------------- | ! --------------------------------------------------------------------- | ||
- | ! count the number of cycles in each trial | + | ! Count the number of cycles in each trial |
- | metric_event_sequence_count | + | Metric_Event_Sequence_Count |
- | /result_metric_folder=emg_norm | + | /RESULT_METRIC_FOLDER=EMG_NORM |
- | /result_metric_name=&::side&cycle_count | + | /RESULT_METRIC_NAME=&::SIDE&Cycle_Count |
- | ! /time_interval= | + | ! /TIME_INTERVAL= |
- | /event_sequence=&::side&cycle_sequence | + | /EVENT_SEQUENCE=&::SIDE&CYCLE_SEQUENCE |
- | /exclude_events= | + | /EXCLUDE_EVENTS= |
- | /generate_count_total_in_global=false | + | /GENERATE_COUNT_TOTAL_IN_GLOBAL=FALSE |
; | ; | ||
- | ! calculate | + | ! Calculate |
- | metric_maximum | + | Metric_Maximum |
- | /result_metric_folder=emg_norm | + | /RESULT_METRIC_FOLDER=EMG_NORM |
- | /result_metric_name=&::side&cycle_count_global | + | /RESULT_METRIC_NAME=&::SIDE&Cycle_Count_Global |
- | ! /apply_as_suffix_to_signal_name=false | + | ! /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=FALSE |
- | /signal_types=metric | + | /SIGNAL_TYPES=METRIC |
- | /signal_folder=emg_norm | + | /SIGNAL_FOLDER=EMG_NORM |
- | /signal_names=&::side&cycle_count | + | /SIGNAL_NAMES=&::SIDE&Cycle_Count |
- | /component_sequence=all | + | /COMPONENT_SEQUENCE=ALL |
- | /event_sequence= | + | /EVENT_SEQUENCE= |
- | /exclude_events= | + | /EXCLUDE_EVENTS= |
- | /sequence_percent_start= | + | /SEQUENCE_PERCENT_START= |
- | /sequence_percent_end= | + | /SEQUENCE_PERCENT_END= |
- | /generate_mean_and_stddev=false | + | /GENERATE_MEAN_AND_STDDEV=FALSE |
- | ! /append_to_existing_values=false | + | ! /APPEND_TO_EXISTING_VALUES=FALSE |
- | /create_global_maximum=true | + | /CREATE_GLOBAL_MAXIMUM=TRUE |
; | ; | ||
- | ! create | + | ! Create |
- | set_pipeline_parameter_from_for_loop | + | Set_Pipeline_Parameter_From_For_Loop |
- | /parameter_name=sequence_count | + | /PARAMETER_NAME=SEQUENCE_COUNT |
- | /parameter_index_start=1 | + | /PARAMETER_INDEX_START=1 |
- | /parameter_index_end=global::metric::emg_norm::&::side&cycle_count_global_max | + | /PARAMETER_INDEX_END=GLOBAL::METRIC::EMG_NORM::&::SIDE&Cycle_Count_Global_Max |
- | /parameter_index_step=1 | + | /PARAMETER_INDEX_STEP=1 |
- | /parameter_index_type=integer | + | /PARAMETER_INDEX_TYPE=INTEGER |
; | ; | ||
</ | </ | ||
- | we will then create a temporary signal to normalize the emg signal with, which will contain the maximum of the emg signal | + | We will then create a temporary signal to normalize the EMG signal with, which will contain the maximum of the EMG Signal |
< | < | ||
! --------------------------------------------------------------------- | ! --------------------------------------------------------------------- | ||
- | ! create normalize signal | + | ! Create Normalize Signal |
! --------------------------------------------------------------------- | ! --------------------------------------------------------------------- | ||
- | ! create | + | ! Create |
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=current_signal | + | /EXPRESSION=CURRENT_SIGNAL |
- | /signal_types=analog | + | /SIGNAL_TYPES=ANALOG |
- | /signal_folder=envelope | + | /SIGNAL_FOLDER=ENVELOPE |
- | /signal_names=::emg_signal_list | + | /SIGNAL_NAMES=::EMG_SIGNAL_LIST |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=emg_norm_temp | + | /RESULT_FOLDERS=EMG_NORM_TEMP |
- | /result_name= | + | /RESULT_NAME= |
- | /apply_as_suffix_to_signal_name=true | + | /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=TRUE |
; | ; | ||
- | ! loop over every sequence | + | ! Loop over every sequence |
- | for_each | + | For_Each |
- | /iteration_parameter_name=sequence_current | + | /ITERATION_PARAMETER_NAME=SEQUENCE_CURRENT |
- | ! /iteration_parameter_count_name= | + | ! /ITERATION_PARAMETER_COUNT_NAME= |
- | /items=::sequence_count | + | /ITEMS=::SEQUENCE_COUNT |
; | ; | ||
- | ! define | + | ! Define |
- | event_define_event_sequence | + | Event_Define_Event_Sequence |
- | /event_sequence_name=temp_cycle | + | /EVENT_SEQUENCE_NAME=TEMP_CYCLE |
- | /event_sequence=&::side&cycle_sequence | + | /EVENT_SEQUENCE=&::SIDE&CYCLE_SEQUENCE |
- | ! /exclude_events= | + | ! /EXCLUDE_EVENTS= |
- | ! /inside_of_sequence= | + | ! /INSIDE_OF_SEQUENCE= |
- | ! /offset_from_start= | + | ! /OFFSET_FROM_START= |
- | ! /offset_from_end= | + | ! /OFFSET_FROM_END= |
- | ! /offset_by=percent | + | ! /OFFSET_BY=PERCENT |
- | /event_sequence_instance=::sequence_current | + | /EVENT_SEQUENCE_INSTANCE=::SEQUENCE_CURRENT |
; | ; | ||
| | ||
- | ! loop over every emg signal | + | ! Loop over every EMG Signal |
| | ||
- | for_each | + | For_Each |
- | /iteration_parameter_name=emg_signal_current | + | /ITERATION_PARAMETER_NAME=EMG_SIGNAL_CURRENT |
- | ! /iteration_parameter_count_name= | + | ! /ITERATION_PARAMETER_COUNT_NAME= |
- | /items=::emg_signal_list | + | /ITEMS=::EMG_SIGNAL_LIST |
; | ; | ||
- | | + | |
- | ! set the values to the maximum of the emg signal | + | ! set the values to the maximum of the EMG signal |
- | | + | |
- | /signal_types=derived | + | /SIGNAL_TYPES=DERIVED |
- | /signal_folder=emg_norm_temp | + | /SIGNAL_FOLDER=EMG_NORM_TEMP |
- | /signal_names=::emg_signal_current | + | /SIGNAL_NAMES=::EMG_SIGNAL_CURRENT |
- | ! /signal_components=all_components | + | ! /SIGNAL_COMPONENTS=ALL_COMPONENTS |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=emg_norm_temp | + | /RESULT_FOLDERS=EMG_NORM_TEMP |
- | /result_suffix= | + | /RESULT_SUFFIX= |
- | /event_sequence=temp_cycle | + | /EVENT_SEQUENCE=TEMP_CYCLE |
- | ! /exclude_events= | + | ! /EXCLUDE_EVENTS= |
- | ! /start_frame= | + | ! /START_FRAME= |
- | ! /end_frame= | + | ! /END_FRAME= |
- | ! /use_point_rate=true | + | ! /USE_POINT_RATE=TRUE |
- | /replacement_values=metric_maximum(analog::envelope::&::emg_signal_current&,event_label::sequence::temp_cycle) | + | /REPLACEMENT_VALUES=METRIC_MAXIMUM(ANALOG::ENVELOPE::&::EMG_SIGNAL_CURRENT&,EVENT_LABEL::SEQUENCE::TEMP_CYCLE) |
- | ! /threshold_high=no_data | + | ! /THRESHOLD_HIGH=NO_DATA |
- | ! /threshold_low=no_data | + | ! /THRESHOLD_LOW=NO_DATA |
- | ! /set_data_at_single_event=false | + | ! /SET_DATA_AT_SINGLE_EVENT=FALSE |
| | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=emg_signal_current | + | /ITERATION_PARAMETER_NAME=EMG_SIGNAL_CURRENT |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=sequence_current | + | /ITERATION_PARAMETER_NAME=SEQUENCE_CURRENT |
; | ; | ||
</ | </ | ||
- | we can then normalize the emg signal by dividing it by the temporary signal above. | + | We can then normalize the EMG signal by dividing it by the temporary signal above. |
< | < | ||
! --------------------------------------------------------------------- | ! --------------------------------------------------------------------- | ||
- | ! normalize emg signal | + | ! Normalize EMG Signal |
! --------------------------------------------------------------------- | ! --------------------------------------------------------------------- | ||
- | ! divide | + | ! Divide |
- | for_each | + | For_Each |
- | /iteration_parameter_name=emg_signal_current | + | /ITERATION_PARAMETER_NAME=EMG_SIGNAL_CURRENT |
- | ! /iteration_parameter_count_name= | + | ! /ITERATION_PARAMETER_COUNT_NAME= |
- | /items=::emg_signal_list | + | /ITEMS=::EMG_SIGNAL_LIST |
; | ; | ||
- | evaluate_expression | + | Evaluate_Expression |
- | /expression=analog::envelope::&::emg_signal_current& | + | /EXPRESSION=ANALOG::ENVELOPE::&::EMG_SIGNAL_CURRENT& |
- | /derived::emg_norm_temp::&::emg_signal_current& | + | /DERIVED::EMG_NORM_TEMP::&::EMG_SIGNAL_CURRENT& |
- | ! /signal_types= | + | ! /SIGNAL_TYPES= |
- | ! /signal_folder= | + | ! /SIGNAL_FOLDER= |
- | ! /signal_names= | + | ! /SIGNAL_NAMES= |
- | /result_types=derived | + | /RESULT_TYPES=DERIVED |
- | /result_folders=emg_norm | + | /RESULT_FOLDERS=EMG_NORM |
- | /result_name=&::emg_signal_current& | + | /RESULT_NAME=&::EMG_SIGNAL_CURRENT& |
- | ! /apply_as_suffix_to_signal_name=false | + | ! /APPLY_AS_SUFFIX_TO_SIGNAL_NAME=FALSE |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=emg_signal_current | + | /ITERATION_PARAMETER_NAME=EMG_SIGNAL_CURRENT |
; | ; | ||
- | end_for_each | + | End_For_Each |
- | /iteration_parameter_name=side | + | /ITERATION_PARAMETER_NAME=SIDE |
; | ; | ||
</ | </ |
visual3d/tutorials/emg/typical_emg_processing.1718801658.txt.gz · Last modified: 2024/06/19 12:54 by sgranger