Post

Replies

Boosts

Views

Activity

Reply to RoomPlan API
Hi averagepoet, I am exactly trying to access ARKit sceneDepth from the ARSession, but there is a problem: You can't have two ARSession running in parallel The ARSession managed by CaptureSession doesn't provide sceneDepth (see my comment there Did you find a way to still access the depth?
Apr ’23
Reply to ARSession and RoomCaptureSession
Hello there! The arSession owned by RoomCaptureSession doesn't keep track of scene depth (session.configuration?.frameSemantics.contains(.sceneDepth) = false). How can we manage that? I tried to stop the session and restart it with the correct configuration but it didn't work: captureSession.arSession.pause() guard ARWorldTrackingConfiguration.supportsFrameSemantics(.sceneDepth) else { return } let config = ARWorldTrackingConfiguration() config.frameSemantics = .sceneDepth captureSession.arSession.run(config)
Apr ’23