Table of Contents
Build Model
Overview
This command causes a Build Model and triggers the calculation of pose in the associated movement trials. In some circumstances Visual3D does not automatically rebuild the model. For example, landmarks that have been added by a script command do not automatically rebuild the model because sometimes there may be several landmark commands in sequence and rebuilding the model would slow done the processing of the pipeline. The command Build_Model will build the model. Without this command you will not be able to see the desired segments or landmarks.
Pipeline Command
The command below is as seen on the Visual3D application under Model Building, Build_Model.
Build_Model ! /CALIBRATION_FILE= ! /REBUILD_ALL_MODELS=FALSE ! /DISPLAY_RESULTS=TRUE ;
Command Parameters
The following table shows the command parameters and descriptions:
| /CALIBRATION_FILE | The name of the standing trial associated with the model |
| REBUILD_ALL_MODELS | TRUE or FALSE to rebuild all models |
| DISPLAY_RESULTS | TRUE or FALSE to display results |
Examples
Example from the advanced pipelines tutorial creating a landmark for the static file and updating the landmarks by building the model.
! Create a landmark Lab_X Add_Landmark /LANDMARK_NAME=LAB_X /CALIBRATION_FILE=*static.c3d ! /USER_GENERATED=TRUE ! /USE_PERCENTAGE=FALSE ! /CALIBRATION_ONLY=FALSE !/USE_TARGETS=FALSE /SEGMENT_NAME=LAB ! /TARGET_TYPES= ! /TARGET_NAMES= /MCSX=.01 /MCSY=0 /MCSZ=0 ! /LANDMARK_LOCATION= ! /REFERENCE_LOCATION_NAME= ! /REFERENCE_LOCATION_TYPE= ! /USE_REFERENCE_LOCATION=FALSE ; ! Update the landmarks by building the model Build_Model /CALIBRATION_FILE= ::CALIBRATION ! /REBUILD_ALL_MODELS=FALSE ! /DISPLAY_RESULTS=TRUE ;
