Lists the recognizers that exist in the training database for use with object class recognition.
Type: synchronous
Parameter | Description | Required |
---|---|---|
trainingoptions
|
A Boolean value (default false) that specifies whether to return the training options set for each recognizer. | No |
/action=ListObjectClassRecognizers
The response includes a list of recognizers, with the following information:
recognizer
- the name of the recognizer.state
- describes the state of the recognizer.
TRAINED
- the recognizer has been trained and is ready to use.TRAINING
- training is in progress.STALE
- the recognizer requires training. You can begin training with the action BuildObjectClassRecognizer.PAUSED
- training has been paused by the action PauseBuildObjectClassRecognizer. You cannot use the recognizer in this state. Resume training by running the action BuildObjectClassRecognizer.numclasses
- the number of object classes that exist in the recognizer.remaining_iterations
- the number of training iterations that are remaining. This element is present only when training is paused.trainingoptions
- shows the training options that are associated with the recognizer. This element is present only when you set the action parameter trainingoptions=true
, and have set one or more training options with the action SetObjectClassRecognizerTrainingOption.<autnresponse> <action>LISTOBJECTCLASSRECOGNIZERS</action> <response>SUCCESS</response> <responsedata> <recognizer> <recognizer>RoadScene</recognizer> <state>TRAINED</state> <numclasses>3</numclasses> <trainingoptions> <trainingoption> <key>iterations</key> <value>2000</value> </trainingoption> </trainingoptions> </recognizer> </responsedata> </autnresponse>
|