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!
toolbar]]. through this dialog, users gain direct access to the visual3d engine where they can upload pipeline scripts to the sift interface. pipeline scripts are written as a series of commands to be performed. more on pipeline scripts and commands can be found [[visual3d:documentation:pipeline:general_information:pipeline_commands_reference|here]]. scripts that are uploaded to the sift run v3d engine will be run against all cmz workspaces that are in the loaded library. ===== run v3d engine dialog ===== runv3denginedlg.png users can upload pipeline scripts by selected 'add script', and similarly, scripts can be removed by highlighting specific .v3s file and selected "remove script". selecting "cancel" will close the dialog, and selected run scripts will run the pipeline commands in the listed scripts in the order that they appear in the dialog. to change the order of the scripts, use the up and down arrows to the right of the dialog. an example script for the file "hip_knee_ankle_rom": <code> for_each /iteration_parameter_name=plane !/iteration_parameter_count_name= /items= x+y+z ; evaluate_expression /expression=metric::kinematic::ankle_max::&::plane&-metric::kinematic::ankle_min::&::plane ! /signal_types= ! /signal_folder=original ! /signal_names= ! /signal_components=all /result_types=metric ! /result_folders=processed /result_name=ankle_&::plane&_rom ! /apply_as_suffix_to_signal_name=false ; evaluate_expression /expression=metric::kinematic::knee_max::&::plane&-metric::kinematic::knee_min::&::plane ! /signal_types= ! /signal_folder=original ! /signal_names= ! /signal_components= /result_types=metric ! /result_folders=processed /result_name=knee_rom_&::plane& ! /apply_as_suffix_to_signal_name=false ; evaluate_expression /expression=metric::kinematic::hip_max::&::plane&-metric::kinematic::hip_min::&::plane ! /signal_types= ! /signal_folder=original ! /signal_names= ! /signal_components= /result_types=metric ! /result_folders=processed /result_name=hip_rom_&::plane& ! /apply_as_suffix_to_signal_name=false ; end_for_each /iteration_parameter_name=plane ; </code> }}