User Tools

Site Tools


visual3d:tutorials:emg:typical_emg_processing

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
visual3d:tutorials:emg:typical_emg_processing [2024/07/03 17:45] – created sgrangervisual3d:tutorials:emg:typical_emg_processing [2024/11/15 18:04] (current) – [Open Files and Tag] wikisysop
Line 1: Line 1:
-====== Typical_EMG_Processing ======+====== Typical EMG Processing ======
  
-===== Introduction =====+**EMG** stands for **electromyography**, which is the study of electrical signals from active muscles that are receiving input from the central nervous system. This wiki includes an overview of [[visual3d:documentation:emg:emg_overview|how to process EMG data in Visual3D]]. More information on EMG can be found in most good biomechanics and motor control textbooks, and on [[http://en.wikipedia.org/wiki/Electromyography|Wikipedia]]. Additional information on EMG processing requirements for the [[http://www.isek-online.org/standards.html|International Society of Electrophysiology and Kinesiology]]. You will also find other useful information on EMG signal processing posted by [[http://noraxon.com/downloads/educational.php3|Noraxon]].
  
-**EMG** stands for **electromyography**, which is the study of electrical signals from active muscles that are receiving input from the central nervous systemMore information on EMG can be found in most good biomechanics and motor control textbooks, and on [[http://en.wikipedia.org/wiki/Electromyography|Wikipedia]]. Additional information on EMG processing requirements for the [[http://www.isek-online.org/standards.html|International Society of Electrophysiology and Kinesiology]]. You will also find other useful information on EMG signal processing posted by [[[http://noraxon.com/downloads/educational.php3|Noraxon]]]+===== Overview ===== 
 +This tutorial will show the basic steps for processing EMG data into Visual3DFiles used in this tutorial can be found here: [[https://www.has-motion.com/download/examples/EMG_Tutorial.zip|EMG Tutorial]]
  
-This tutorial will show the basic steps for processing EMG data into Visual3D. Files used in this tutorial can be found here: [[[https://www.has-motion.com/download/examples/EMG_Tutorial.zip|EMG Tutorial]]]+===== Visual 3D Implementation ===== 
 + 
 +Visual3D expects the EMG signals to be stored in the C3D file as ANALOG data, not unlike force platform data. One point of importance is that EMG typically has very high frequency content, which means that it must be sampled at high data sampling rates. As of Visual3D Version 5.0, EMG signals are stored as integer multiples of the motion capture sampling rate (e.g. consistent with the common use of the C3D file format). One of the nuisances caused by this requirement is that force platform data must be sampled at a very high rate in order to match the EMG sampling rate. 
 + 
 +All of Visual3D'[[visual3d:documentation:pipeline:signal_commands:signal_commands_overview|pipeline commands for signal processing]] can be used with EMG data. 
 + 
 +===== Processing EMG Signals with the Visual3D Pipeline =====
  
-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:+The tutorial will go through a step by step process using [[visual3d:documentation:pipeline:general_information:pipeline_commands_reference|Visual3D pipeline commands]] to process the example EMG data. It will do the following:
  
   - Open Files and Tags   - Open Files and Tags
Line 14: Line 21:
   - Compute an Envelope   - Compute an Envelope
   - Normalize based off of 4 different methods   - Normalize based off of 4 different methods
- 
-===== Visual 3D Implementation ===== 
- 
-Visual3D expects the EMG signals to be stored in the C3D file as ANALOG data, not unlike force platform data. One point of importance is that EMG typically has very high frequency content, which means that it must be sampled at high data sampling rates. 
- 
-As of Visual3D Version 5.0 EMG signals are stored as integer multiples of the Motion Capture sampling rate (e.g. consistent with the common use of the C3D file format). One of the nuisances caused by this requirement is that force platform data must be sampled at a very high rate in order to match the EMG sampling rate. 
- 
-All signal processing commands in the pipeline can be used with EMG data. 
- 
-===== EMG Processing using Visual 3D Pipeline commands ===== 
- 
-The tutorial will go through a step by step process using Visual 3D pipeline commands to process the example EMG data. 
  
 ==== Open Files and Tag ==== ==== Open Files and Tag ====
Line 64: Line 59:
 ! /QUERY= ! /QUERY=
 /TAGS=MVC_C /TAGS=MVC_C
-';+;
  
 !Assign Tags to walking files !Assign Tags to walking files
Line 293: Line 288:
 </code> </code>
  
-=== 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).
Line 327: Line 322:
 </code> </code>
  
-=== Normalize EMG to Generic Global Variable ===+==== Approach 2: Normalize EMG to Generic Global Variable ====
  
 Typically the scaling factors for EMG signals are the result of other data trials (such as MVIC trials). Individual files in Visual3D cannot access the data from other files, so the only way signals can be shared is through the Global Workspace. This pipeline normalizes the EMG signal to a global variable. Typically the scaling factors for EMG signals are the result of other data trials (such as MVIC trials). Individual files in Visual3D cannot access the data from other files, so the only way signals can be shared is through the Global Workspace. This pipeline normalizes the EMG signal to a global variable.
Line 361: Line 356:
 </code> </code>
  
-=== Normalize to Maximum 30 second interval ===+==== Approach 3: Normalize to Maximum 30 second interval ====
  
 This pipeline normalizes to the greatest ½ second activity during a 5 second trial. A window of twenty-five .02 second intervals of integrated EMG is moved one interval at a time across the 5 seconds of data to find the greatest EMG. The average integrated EMG during the ½ second is used to compute the normalization factor. It does the following: This pipeline normalizes to the greatest ½ second activity during a 5 second trial. A window of twenty-five .02 second intervals of integrated EMG is moved one interval at a time across the 5 seconds of data to find the greatest EMG. The average integrated EMG during the ½ second is used to compute the normalization factor. It does the following:
Line 391: Line 386:
 </code> </code>
  
-=== Normalize to the Maximum within Each Gait Cycle ===+==== Approach 4: Normalize to the Maximum within Each Gait Cycle ====
  
 For this example, the goal is as follows: For this example, the goal is as follows:
visual3d/tutorials/emg/typical_emg_processing.1720028715.txt.gz · Last modified: 2024/07/03 17:45 by sgranger