Class FaceAnalyzedResult
- java.lang.Object
-
- com.azure.android.ai.vision.faceanalyzer.FaceAnalyzedResult
-
- All Implemented Interfaces:
AutoCloseable
public final class FaceAnalyzedResult extends Object implements AutoCloseable
The type FaceAnalyzedResult.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Dispose of associated resources.FaceAnalyzedDetails
getDetails()
Gets liveness payload.Collection<AnalyzedFace>
getFaces()
Gets collection of analyzed faces.FrameReader
getFrameReference()
Gets the frame reference associated with the result.SafeHandle
getHandle()
Gets handle.PropertyCollection
getProperties()
Properties associated with the result.
-
-
-
Method Detail
-
getFrameReference
public final FrameReader getFrameReference()
Gets the frame reference associated with the result.- Returns:
- The frame reference
-
getFaces
public final Collection<AnalyzedFace> getFaces()
Gets collection of analyzed faces.- Returns:
- The AnalyzedFace collection
-
getDetails
public final FaceAnalyzedDetails getDetails()
Gets liveness payload.- Returns:
- The liveness payload
-
getProperties
public final PropertyCollection getProperties()
Properties associated with the result.- Returns:
- The properties
-
getHandle
public final SafeHandle getHandle()
Gets handle.- Returns:
- The handle
-
close
public void close() throws Exception
Dispose of associated resources. Note: close() must be called in order to release underlying resources held by the object.- Specified by:
close
in interfaceAutoCloseable
- Throws:
Exception
-
-