LargeFaceListOperationsExtensions Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Extension methods for LargeFaceListOperations.
public static class LargeFaceListOperationsExtensions
type LargeFaceListOperationsExtensions = class
Public Module LargeFaceListOperationsExtensions
- Inheritance
-
LargeFaceListOperationsExtensions
Methods
AddFaceFromStreamAsync(ILargeFaceListOperations, String, Stream, String, IList<Int32>, String, CancellationToken) | |
AddFaceFromUrlAsync(ILargeFaceListOperations, String, String, String, IList<Int32>, String, CancellationToken) | |
CreateAsync(ILargeFaceListOperations, String, String, String, String, CancellationToken) |
Create an empty large face list with user-specified largeFaceListId, name, an optional userData and recognitionModel. <br /> Large face list is a list of faces, up to 1,000,000 faces, and used by Face - Find Similar. <br /> After creation, user should use LargeFaceList Face - Add to import the faces and LargeFaceList - Train to make it ready for Face - FindSimilar. Faces are stored on server until LargeFaceList - Delete is called. <br /> Find Similar is used for scenario like finding celebrity-like faces, similar face filtering, or as a light way face identification. But if the actual use is to identify person, please use PersonGroup / LargePersonGroup and Face - Identify. <br />
|
DeleteAsync(ILargeFaceListOperations, String, CancellationToken) |
Delete an existing large face list according to faceListId. Persisted face images in the large face list will also be deleted. |
DeleteFaceAsync(ILargeFaceListOperations, String, Guid, CancellationToken) |
Delete an existing face from a large face list (given by a persistedFaceId and a largeFaceListId). Persisted image related to the face will also be deleted. |
GetAsync(ILargeFaceListOperations, String, Nullable<Boolean>, CancellationToken) |
Retrieve a large face list’s largeFaceListId, name, userData and recognitionModel. |
GetFaceAsync(ILargeFaceListOperations, String, Guid, CancellationToken) |
Retrieve information about a persisted face (specified by persistedFaceId and its belonging largeFaceListId). |
GetTrainingStatusAsync(ILargeFaceListOperations, String, CancellationToken) |
Retrieve the training status of a large face list (completed or ongoing). |
ListAsync(ILargeFaceListOperations, Nullable<Boolean>, String, Nullable<Int32>, CancellationToken) | |
ListFacesAsync(ILargeFaceListOperations, String, String, Nullable<Int32>, CancellationToken) |
List all faces in a large face list, and retrieve face information (including userData and persistedFaceIds of registered faces of the face). |
TrainAsync(ILargeFaceListOperations, String, CancellationToken) |
Queue a large face list training task, the training task may not be started immediately. |
UpdateAsync(ILargeFaceListOperations, String, String, String, CancellationToken) |
Update information of a large face list. |
UpdateFaceAsync(ILargeFaceListOperations, String, Guid, String, CancellationToken) |
Update a persisted face's userData field. |
Applies to
Azure SDK for .NET