Class FaceAnalyzingResult
- java.lang.Object
-
- com.azure.android.ai.vision.faceanalyzer.FaceAnalyzingResult
-
- All Implemented Interfaces:
AutoCloseable
public final class FaceAnalyzingResult extends Object implements AutoCloseable
The type FaceAnalyzingResult.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Dispose of associated resources.Collection<AnalyzingFace>
getFaces()
Gets the tracked collection of faces with their current attributes.FrameReader
getFrameReference()
Gets frame reference associated with result.SafeHandle
getHandle()
Gets handle.
-
-
-
Method Detail
-
getFrameReference
public final FrameReader getFrameReference()
Gets frame reference associated with result.- Returns:
- The frame reference
-
getFaces
public final Collection<AnalyzingFace> getFaces()
Gets the tracked collection of faces with their current attributes.- Returns:
- The AnalyzingFace collection
-
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
-
-