Documentation Site Map Main Page Reference List Motion Capture Visual3D Overview Visual3D Installation License Activation Getting Started Visual3D Documentation Overview Pipeline Commands Reference Expressions Overview CalTester Mode Overview List of Tutorials Visual3D Examples Overview Troubleshooting Sift Sift Overview Installation Getting Started Sift Documentation Overview Knowledge Discovery for Biomechanical Data Tutorial Overview Troubleshooting Inspect3D Inspect3D Overview Inspect3D Installation Overview Inspect3D Getting Started Overview Inspect3D Documentation Overview Knowledge Discovery in Inspect3D Inspect3D Tutorials Overview Troubleshooting DSX Suite DSX Overview DSX Definitions DSX Suite Installation DSX Tutorials DSX Release Notes xManager Overview PlanDSX Overview Surface3D Overview Orient3D Overview CalibrateDSX Overview Locate3D Overview X4D Overview
This is an old revision of the document!
event_threshold]]. this is not a definitive definition, but simply a starting point for the user. emg2.jpg three event labels are identified on this figure. the yellow and red events specify the "rest period". this is arbitrary and is specified by the user explicitly. the blue event label is the first threshold crossing above the "median + 3*standard deviation". <code> !apply a high pass and low pass filter assuming that the surface emg signal contains information !from 20 to 500 hz highpass_filter /signal_types=analog /signal_names=emg2 ! /signal_folder=original ! /result_suffix= /result_folder=rms ! /filter_class=butterworth /frequency_cutoff=20 /num_reflected=0 /total_buffer_size=100 ! /num_bidirectional_passes=1 ; lowpass_filter /signal_types=analog ! /signal_names= /signal_folder=rms ! /result_suffix= /result_folder=rms ! /filter_class=butterworth /frequency_cutoff=500 /num_reflected=0 /total_buffer_size=100 ! /num_bidirectional_passes=1 ; !compute the rms of the emg signal based on a 100 ms window moving_rms /signal_types=analog /signal_names=emg2 /signal_folder=rms ! /result_suffix= /result_folder=rms /num_window_frames=1+0.1*parameter::analog::rate ; !create events that define the resting baseline of the muscle event_explicit /event_name=rest1 /frame=1 ! /time= ; event_explicit /event_name=rest2 /frame=150 ! /time= ; !compute the median and standard deviation of the emg envelope during rest metric_median /result_metric_name=_med /apply_as_suffix_to_signal_name=true /result_metric_folder=emg /signal_types=analog /signal_names=emg2 /signal_folder=rms ! /signal_components=all_components /event_sequence=rest1+rest2 /exclude_events= /generate_mean_and_stddev=false ! /append_to_existing_values=false ; metric_stddev /result_metric_name=_sd /apply_as_suffix_to_signal_name=true /result_metric_folder=emg /signal_types=analog /signal_names=emg2 /signal_folder=rms ! /signal_components=all_components /event_sequence=rest1+rest2 /exclude_events= /generate_mean_and_stddev=false ! /append_to_existing_values=false ; !identify the event emg2_on based on a threshold crossing !of the median + 3 * standard deviation event_threshold /signal_types=analog /signal_names=emg2 /signal_folder=rms /event_name=emg2_on /select_x=true ! /select_y=false ! /select_z=false ! /select_residual=false /threshold=metric::emg::emg2_med+3*metric::emg::emg2_sd ! /frame_window=8 ! /frame_offset=0 /ascending=true ! /descending=false ! /ensure_range_frames_before_threshold_crossing=false /ensure_range_frames_after_threshold_crossing=true ! /start_at_event= ! /end_at_event= /event_instance=1 ; </code> \\ ===== count the number of frames the signals is on ===== <code> ! create a signal that is zero when the emg is off, and one when it is on ! start with creating a signal that is zero at all frames evaluate_expression /expression=frame_numbers::original::frames * 0 ! /signal_types= ! /signal_folder=original ! /signal_names= /result_types=derived /result_folders=emg_count /result_name=emg2 ! /apply_as_suffix_to_signal_name=false ; ! set all frames between the on/off events to one set_data_to_new_values /signal_types=derived /signal_folder=emg_count /signal_names=emg2 ! /signal_components=all_components /result_types=derived /result_folders=emg_count /result_suffix= /event_sequence=emg2_on+emg2_off ! /exclude_events= ! /event_instance=0 ! /start_frame= ! /end_frame= ! /use_point_rate=true /replacement_values=1 ! /threshold_high=no_data ! /threshold_low=no_data ! /set_data_at_single_event=false ; ! add the signal during the gait cycle ! the result will be the number of frames the signal is on during the gait cycle metric_sum /result_metric_folder=emg_count /result_metric_name= /apply_as_suffix_to_signal_name=true /signal_types=derived /signal_folder=emg_count /signal_names=emg2 /component_sequence=all /event_sequence=rhs+rhs /exclude_events= /sequence_percent_start= /sequence_percent_end= ! /generate_mean_and_stddev=true ! /append_to_existing_values=false ; </code>