Other Methods

List of secondary methods in the Training Handler class

Get Mental Command Info

Get the names of actions, controls, and events available for mental commands. Wrapper for GetDetectionInfo.

-> Detection Info Result

void GetMentalCommandInfo();

Get Detection Info

Get the names of actions, controls, and events available for the specified detection category, must be mentalCommand or facialExpression.

-> Detection Info Result

void GetDetectioninfo(string detection);

Get Training Time

Get the approximate length of a training sample in seconds.

-> Training Time Result

void GetTrainingTime();

Get Trained Actions

Get a list of trained actions for this profile, including names and times trained.

-> Trained Actions Result

void GetTrainedActions(string profileName);

Get Training Threshold

Get the current threshold and last training score for the target session.

-> Training Threshold Result

void GetTrainingThreshold();

Get Action Sensitivity

Get the current sensitivity information for a set of active actions.

-> Action Sensitivity Result

// by profile
void GetActionSensitivity(string profileName);
// by target session
void GetActionSensitivity();

Get Action Sensitivity By Session

Get the current sensitivity information for a set of actions active in a session.

-> Action Sensitivity Result

void GetActionSensitivityBySession(string sessionId);

Set Action Sensitivity

Assign the sensitivity for a set of active actions.

// by profile
void GetActionSensitivity(string profileName);
// by target session
void GetActionSensitivity();

Set Action Sensitivity By Session

Assign the sensitivity for a set of actions active in a session.

void SetActionSensitivityBySession(string sessionId);

Last updated