Lists the classifiers that you have created for use with image classification.
Type: synchronous
Parameter | Description | Required |
---|---|---|
trainingoptions
|
A Boolean value (default false) that specifies whether to return the training options set for each classifier. | No |
/action=ListClassifiers&trainingoptions=TRUE
The response includes a list of classifiers, and the number of object classes that you have created in each classifier. The state
element contains the state of the classifier. In the following example, the state is STALE
which means that the classifier needs to be re-trained (using the action BuildClassifier).
<autnresponse> <action>LISTCLASSIFIERS</action> <response>SUCCESS</response> <responsedata> <classifier> <classifier>vehicles</classifier> <state>STALE</state> <numclasses>3</numclasses> <trainingoptions> <trainingoption> <key>classifiertype</key> <value>bayesian</value> </trainingoption> </trainingoptions> </classifier> </responsedata> </autnresponse>
|