visual3d:documentation:pipeline:event_commands:event_copy
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
visual3d:documentation:pipeline:event_commands:event_copy [2024/06/17 17:06] – removed sgranger | visual3d:documentation:pipeline:event_commands:event_copy [2025/02/26 17:04] (current) – wikisysop | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Event Copy ====== | ||
+ | |||
+ | ==== Overview ==== | ||
+ | The **Event_Copy** command allows users to __create a new event by copying an existing event and applying optional modifications__. Users can specify an offset for the copied event in terms of frames, time or percentage of a defined range. Additionally, | ||
+ | |||
+ | This command is particularly useful for scenarios where new events need to be derived from existing ones while maintaining precise temporal relationships. | ||
+ | |||
+ | The functionality of this command can also be achieved by right-clicking the event label within the data tree and selecting the "Event Copy" from the context menu. The interactive selection from the data tree is shown below: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | ==== Pipeline Command ==== | ||
+ | The command below is the command as seen in the Visual3D application. | ||
+ | |||
+ | < | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | </ | ||
+ | |||
+ | ==== Command Parameters ==== | ||
+ | The following table shows the command parameters and descriptions: | ||
+ | |||
+ | |**Parameter** | ||
+ | |**/ | ||
+ | |**/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |**!/ | ||
+ | |||
+ | |||
+ | ==== Dialog ==== | ||
+ | The command can be edited in a text editor or in a dialog form. To edit in the dialog pop up form either click on the Edit button in the pipeline workshop or double-click on the pipeline command. The dialog is shown below. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | * **Optional- Select Range Instance**: | ||
+ | When set to 0, copies all instances of the event. When set to n, copy the //n//th instance of the event. | ||
+ | If n<1, count instances from the last event; e.g. -1 = last instance. | ||
+ | |||
+ | * **Optional - Select Event Instance**: | ||
+ | When set to 0, it means all occurrences of the event will be processed. When **Interpret Event Instance As List** is checked, the event is treated as a list rather than a single value. | ||
+ | |||
+ | ==== Examples ==== | ||
+ | The following examples will go through the use of the **Event_Copy** command in the Visual3D application. | ||
+ | |||
+ | === Example 1: Event_At_Midstance === | ||
+ | |||
+ | The stance phase of the gait cycle is the period when the foot is in contact with the ground, it is defined by the labels RON and ROFF. The following command will create an event mid way between RON and ROFF. | ||
+ | |||
+ | < | ||
+ | Event_Copy | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | The dialog corresponding to the example command is shown below: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | This command will use all instances of a range defined by the **Event_Sequence** and **Exclude_Event**, | ||
+ | |||
+ | === Example 2: Copying the last event in the sequence === | ||
+ | |||
+ | The event sequence used in the **Event_Copy** command includes the first event, but not the last event. This idiosyncratic behavior was introduced to handle sequences that had the same event label name at each end of the sequence. | ||
+ | |||
+ | In order to copy the last event, you need to select the first event and an offset of 100%. For example, given a sequence of events A-B-C and you want to copy Event C and name it C2. | ||
+ | |||
+ | < | ||
+ | Event_Copy | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | |||
+ | === Example 3: Create an Event based on a time threshold between 2 Events === | ||
+ | In this example, an event named BAD is created if the time between two events (RHS-> RHS) exceeds a threshold. The following is the breakdown of the command: | ||
+ | - Define a Stride: the time between two consecutive RHS. | ||
+ | - Measure Stride Time: Calculates the duration of each STRIDE. | ||
+ | - Identify Long Strides: Checks if any STRIDE duration is longer than 4 seconds, if this is the case, it is flagged. | ||
+ | - Mark as " | ||
+ | |||
+ | < | ||
+ | ! Define an Event Sequence | ||
+ | Event_Define_Event_Sequence | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | ! Compute the times of the Event_Sequence | ||
+ | Metric_Time_Between_Events | ||
+ | / | ||
+ | !/ | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | ; | ||
+ | |||
+ | ! Create a binary signal from the stride time and threshold (4 in this case) | ||
+ | Evaluate_Expression | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | ; | ||
+ | |||
+ | ! Create a pipeline parameter from the binary signal | ||
+ | Set_Pipeline_Parameter_To_Data_Value | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | ! Create indices for a for each loop | ||
+ | **Get_Pipeline_Parameter_Count** | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Set_Pipeline_Parameter_From_For_Loop | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | ; | ||
+ | |||
+ | For_Each | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | ! If the binary signal is 1 execute event copy | ||
+ | Expression_Loop | ||
+ | / | ||
+ | / | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | Event_Copy | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | / | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | !/ | ||
+ | / | ||
+ | !/ | ||
+ | !/ | ||
+ | ; | ||
+ | |||
+ | Expression_Loop_End | ||
+ | / | ||
+ | ; | ||
+ | |||
+ | End_For_Each | ||
+ | / | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | ==== Notes ==== | ||
+ | * The / | ||
+ | * Offset values (Frame_Offset, | ||
+ | |||
+ | |||
visual3d/documentation/pipeline/event_commands/event_copy.1718643998.txt.gz · Last modified: 2024/06/17 17:06 by sgranger