TrackedFaceList Class¶
Namespace: id3.Face
Definition¶
class TrackedFaceList
class TrackedFaceList implements Finalizable
public partial class TrackedFaceList
public class TrackedFaceList implements AutoCloseable, Serializable
public class TrackedFaceList
typedef struct id3TrackedFaceList *ID3_TRACKED_FACE_LIST;
Usage¶
trackedFaceListInstance = TrackedFaceList()
# ...
Explicit destruction
# ...
del trackedFaceListInstance
final trackedFaceListInstance = sdk.TrackedFaceList();
// ...
Explicit destruction
// ...
trackedFaceListInstance.dispose()
using (var trackedFaceListInstance = new TrackedFaceList())
{
// ...
}
Explicit destruction
var trackedFaceListInstance = new TrackedFaceList()
// ...
trackedFaceListInstance.Dispose()
try (TrackedFaceList trackedFaceListInstance = new TrackedFaceList()) {
// ...
}
Explicit destruction
TrackedFaceList trackedFaceListInstance = new TrackedFaceList();
// ...
trackedFaceListInstance.close();
private var trackedFaceListInstance: TrackedFaceList? = nil
trackedFaceListInstance = try TrackedFaceList()
ID3_TRACKED_FACE_LIST hTrackedFaceList{};
int err = id3TrackedFaceList_Initialize(&hTrackedFaceList);
if (err == ID3_SUCCESS) {
// ...
id3TrackedFaceList_Dispose(&hTrackedFaceList);
}
Properties¶
Name |
Type |
Description |
---|---|---|
int |
Gets the number of elements contained in the list |
|
operator [int index] |
Gets or sets the element at the specified index in the list. |
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
Methods¶
Name |
Description |
---|---|
Adds an item to the TrackedFaceList object. |
|
Clears the TrackedFaceList object. |
|
Clones the TrackedFaceList object. |
|
Finds a tracked face by ID. |
|
Gets an item of the TrackedFaceList object. |
|
Gets the number of elements in the TrackedFaceList object. |
|
Gets the list of IDs in the list. |
|
Gets the largest face in the list. |
|
Removes an element of the TrackedFaceList object. |
|
Rescales all tracked faces in the list. |
|
TrackedFaceList object. |
|
Sets an item of the TrackedFaceList object. |