ListFaceDatabases

Lists the databases that have been created to store faces for use with face recognition.

Type: synchronous

Example

/action=ListFaceDatabases

Response

The response includes a list of databases, and the number of faces that exist in each database.

The finetuningenabled element contains the value true or false, to indicate whether the database was created with fine-tuning enabled (see the finetuning parameter in the action CreateFaceDatabase). The finetuningcomplete element indicates whether the neural network used for face recognition has been optimized by running the action FinetuneFaceDatabase.

<autnresponse>
  <action>LISTFACEDATABASES</action>
  <response>SUCCESS</response>
  <responsedata>
    <database>
      <database>BritishPoliticians</database>
      <numentries>29</numentries>
      <finetuningenabled>true</finetuningenabled>
      <finetuningcomplete>true</finetuningcomplete>
    </database>
    <database>
      <database>AmericanPoliticians</database>
      <numentries>31</numentries>
      <finetuningenabled>true</finetuningenabled>
      <finetuningcomplete>true</finetuningcomplete>
    </database>
  </responsedata>
</autnresponse>