MatchFacesRequest class

MatchFacesRequest compares two or more images with faces on them to find out the similarity of pairs. The request is used as a parameter to FaceSDK.instance.matchFaces(request).

Constructors

MatchFacesRequest(List<MatchFacesImage> images, {OutputImageParams? outputImageParams, String? tag, Map<String, dynamic>? metadata})

Properties

hashCode int
The hash code for this object.
no setterinherited
images List<MatchFacesImage>
Images with faces to match.
no setter
metadata Map<String, dynamic>?
no setter
outputImageParams OutputImageParams?
If set. the uploaded image is processed according to the indicated settings
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tag String?
Defines tag that can be used in match faces processing. Defaults to null.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromJson(dynamic jsonObject) MatchFacesRequest?