Package apple.arkit.enums
Class ARFrameSemantics
- java.lang.Object
-
- apple.arkit.enums.ARFrameSemantics
-
public final class ARFrameSemantics extends java.lang.ObjectOption set indicating semantic understanding types of the image frame.
-
-
Field Summary
Fields Modifier and Type Field Description static longBodyDetectionBody detection.static longNoneNo semantic operation is run.static longPersonSegmentationPerson segmentation.static longPersonSegmentationWithDepthPerson segmentation with depth.static longSceneDepthScene Depth.static longSmoothedSceneDepthSmoothed Scene Depth.
-
-
-
Field Detail
-
None
public static final long None
No semantic operation is run.- See Also:
- Constant Field Values
-
PersonSegmentation
public static final long PersonSegmentation
Person segmentation. A pixel in the image frame that gets classified as person will have an intensity value equal to 'ARSegmentationClassPerson'.- See Also:
ARSegmentationClass, Constant Field Values
-
PersonSegmentationWithDepth
public static final long PersonSegmentationWithDepth
Person segmentation with depth. A pixel in the image frame that gets classified as person will have an intensity value equal to 'ARSegmentationClassPerson'. Additionally, every pixel in the image frame that gets classified as person will also have a depth value.- See Also:
- Constant Field Values
-
BodyDetection
public static final long BodyDetection
Body detection. Once activated an ARFrame will contain information about a detected body.- See Also:
ARBody2D, Constant Field Values
-
SceneDepth
public static final long SceneDepth
Scene Depth. Each capturedImage will have an associated scene depth data.- See Also:
- Constant Field Values
-
SmoothedSceneDepth
public static final long SmoothedSceneDepth
Smoothed Scene Depth. Each capturedImage will have an associated scene depth data that is temporally smoothed.- See Also:
- Constant Field Values
-
-