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!
frame_offset]]= the frame offset from the event_frame /[[#time_offset|time_offset]]= the time offset from the event frame /[[#percent_offset|percent_offset]]= an offset from the event frame as a percentage of the ranged defined by the event_sequence /[[visual3d:documentation:c3d_signal_types:event_label_data_type#event_sequence|event_sequence]]= sequence of events that defines the ranges /[[visual3d:documentation:c3d_signal_types:event_label_data_type#exclude_events|exclude_events]]= an inclusive event that excludes the range /[[visual3d:documentation:c3d_signal_types:event_label_data_type#event_instance|event_instance]]= the instance of the existing event to copy. /[[visual3d:documentation:c3d_signal_types:event_label_data_type#event_instance|range_instance]]= the instance of the existing event to copy. /start_at_event= start of range to find the event (legacy-superceded by event_sequence) /end_at_event= end of range to find the event (legacy-superceded by event_sequence) **;** ==== copy_event ==== the name of the legacy command. visual3d should continue to recognize this command. ===== event copy dialog ===== as of version 5 this dialog is complicated. interaction with the dialog is described [[visual3d:documentation:pipeline:event_commands:event_management_commands|here]]. copyeventlabeldlgex1.jpg ===== frame_offset ===== frame offset can be a number or an expression. for example, if the offset is defined by a metric signal in the processed folder labeled shift. **/frame_offset**= metric::processed::shift ===== time_offset ===== time offset can be a number or an expression. for example, if the offset is defined by a metric signal in the processed folder labeled shift. **/time_offset**= metric::processed::shift for example, to create an event 1 second prior to an existing event. **/time_offset**= -1.0 ===== percent_offset ===== the percent offset can be a number or an expression. the percent is the percentage of the range within the event_sequence. for example, if the offset is defined by a metric signal in the processed folder labeled percent. **/percent_offset**= metric::processed::percent ===== event instance ===== event_instance=0 -> copy all instances of the event event_instance=n -> copy the nth instance of the event if n<1 count instances from the last event; e.g. -1 = last instance ===== range instance ===== range_instance=0 -> use all instances of the range range_instance=n -> use the nth instance of the range if n<1 count instances from the last range; e.g. -1 = last range ===== example_event_at_midstance ===== given that stance phase is defined by the labels ron and roff the following command will create an event mid way between ron and roff. **event_copy** /event_name=ron /new_event_name=mid_stance ! /frame_offset= ! /time_offset= /percent_offset=50 ! /event_instance=0 ! /range_instance=0 /event_sequence=ron+roff ! /exclude_events= ! /start_at_event= ! /end_at_event= **;** copyeventlabeldlgex1.jpg this command will use all instances of a range defined by the event_sequence and exclude event, and will use every occurrence of the event_name within this sequence. ===== example - 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 /event_name=a /new_event_name=c2 !/frame_offset= ! /time_offset= /percent_offset=100 ! /event_instance=0 ! /range_instance=0 /event_sequence=a+b+c ! /exclude_events= ! /start_at_event= ! /end_at_event= **;** ===== example - create an event based on a time threshold between 2 events ===== for example, create an event (bad) if the time between two events (rhs to rhs) exceeds a threshold. ! define an event sequence **event_define_event_sequence** /event_sequence_name=stride /event_sequence=rhs+rhs ! /exclude_events= ! /inside_of_sequence= ! /offset_from_start= ! /offset_from_end= ! /offset_by=percent /event_sequence_instance=0 **;** ! compute the times of the event_sequence **metric_time_between_events** /result_metric_name=stride_time ! /result_metric_folder=processed /event_sequence=stride /exclude_events= /generate_mean_and_stddev=false ! /append_to_existing_values=false **;** ! create a binary signal from the stride time and threshold (4 in this case) **evaluate_expression** /expression=(metric::processed::stride_time>4) ! /signal_types= ! /signal_folder=original ! /signal_names= /result_types=metric ! /result_folders=processed /result_name=stride_time_binary ! /apply_as_suffix_to_signal_name=false **;** ! create a pipeline parameter from the binary signal **set_pipeline_parameter_to_data_value** /signal_types=metric /signal_folder=processed /signal_names=stride_time_binary ! /signal_components=all_components /parameter_name=instance **;** ! create indices for a for each loop **get_pipeline_parameter_count** /parameter_name=numcount /parameter_value=::instance **;** **set_pipeline_parameter_from_for_loop** /parameter_name=count /parameter_index_start=1 /parameter_index_end=::numcount /parameter_index_step=1 ! /parameter_index_type=integer **;** **for_each** /iteration_parameter_name=index /items=::count **;** ! if the binary signal is 1 execute event copy **expression_loop** /iteration_parameter_name=test /expression=metric::processed::stride_time_binary[&::index&] /as_integer=true **;** **event_copy** /event_name=rhs /new_event_name=bad ! /event_instance=0 /range_instance=::index /event_sequence=stride_time ! /exclude_events= ! /start_at_event= ! /end_at_event= /frame_offset=10 ! /time_offset= ! /percent_offset= **;** **expression_loop_end** /iteration_parameter_name=test **;** **end_for_each** /iteration_parameter_name=index **;** }}}}}}