qtm.settings.export.mat
Access and modify mat export settings.
import qtm
qtm.settings.export.mat.set_export_3d(True)
print(qtm.settings.export.mat.get_export_3d())
# True
qtm.settings.export.mat.set_export_6d(False)
print(qtm.settings.export.mat.get_export_6d())
# False
qtm.settings.export.mat.set_export_3d(true)
print(qtm.settings.export.mat.get_export_3d())
-- true
qtm.settings.export.mat.set_export_6d(false)
print(qtm.settings.export.mat.get_export_6d())
-- false
curl --json "[true]" http://localhost:7979/api/scripting/qtm/settings/export/mat/set_export_3d/
curl --json "" http://localhost:7979/api/scripting/qtm/settings/export/mat/get_export_3d/
:: true
curl --json "[false]" http://localhost:7979/api/scripting/qtm/settings/export/mat/set_export_6d/
curl --json "" http://localhost:7979/api/scripting/qtm/settings/export/mat/get_export_6d/
:: false
get_export_3d
Get whether to export 3d data.
Returns
bool
set_export_3d
Set whether to export 3d data.
Parameters
enable
bool
True if 3d data should be exported, otherwise false.
get_export_6d
Get whether to export 6dof data.
Returns
bool
set_export_6d
Set whether to export 6dof data.
Parameters
enable
bool
True if 6dof data should be exported, otherwise false.
get_export_analog
Get whether to export analog data.
Returns
bool
set_export_analog
Set whether to export analog data.
Parameters
enable
bool
True if analog data should be exported, otherwise false.
get_export_force
Get whether to export force data.
Returns
bool
set_export_force
Set whether to export force data.
Parameters
enable
bool
True if force data should be exported, otherwise false.
get_export_eye
Get whether to export eye data.
Returns
bool
set_export_eye
Set whether to export eye data.
Parameters
enable
bool
True if eye data should be exported, otherwise false.
get_export_skeleton
Get whether to export skeleton data.
Returns
bool
set_export_skeleton
Set whether to export skeleton data.
Parameters
enable
bool
True if skeleton data should be exported, otherwise false.
get_export_timecode
Get whether to export timecodes.
Returns
bool
set_export_timecode
Set whether to export timecodes.
Parameters
enable
bool
True if timecodes should be exported, otherwise false.
get_export_event
Get whether to export events.
Returns
bool
set_export_event
Set whether to export events.
Parameters
enable
bool
True if events should be exported, otherwise false.
get_exclude_unidentified
Get whether to exclude unidentified trajectories.
Returns
bool
set_exclude_unidentified
Set whether to exclude unidentified trajectories.
Parameters
enable
bool
True if unidentified trajectories should be excluded, otherwise false.
help
Get the documentation for a module or method.
Parameters
method
string?
The name of the method (if null, the documentation for the module will be returned instead).
Returns
string