We are currently defining it like this
trial_definition_specification = dict(trial_definition=dict(name='Landmarker calibration',
definition_data=dict(
TrialType='Calibration',
type='NewComponent::FaceLandmark',
MaxNoOfAttempts='2',
MinCalibrationAccuracyPct='20'
)))
What we are thinking is to do it like this instead where we are including some extra parameters.
trial_definition_specification = dict(trial_definition=dict(name='Landmarker calibration',
definition_data=dict(
TrialType='Calibration',
type='FaceLandmark',
NumberOfFaces = '2', # number of faces expected in the interface
Landmarks=True, # return lanmark data
Blendshapes=True, # return blendshape
FaceTransformation=True, # indcate if the affine transform should be performed or not
CalibrationDuration='5' #duration of face within view measured in seconds
)))
We are currently defining it like this
What we are thinking is to do it like this instead where we are including some extra parameters.