Skip to main content
API Reference NSDK NSDKSceneSegmentationSession

featureStatus

Gets the current status of the Scene Segmentation feature....

Declaration

func featureStatus() -> NSDKFeatureStatus

Summary

Gets the current status of the Scene Segmentation feature.
This method reports any errors or warnings that have occurred within the scene segmentation system.
Check this periodically to monitor the health of semantic processing operations.
Once an error is flagged, it will remain flagged until the problematic process runs again
and completes successfully.
- Returns: Feature status flags indicating current state and any issues
## Example
swift <br />let status = sceneSegmentationSession.featureStatus() <br />if status.contains(.failed) &#123; <br /> print("Scene Segmentation has encountered an error") <br />&#125; <br />