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?
Topic: Spatial Computing SubTopic: ARKit Tags:
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)
Topic: Spatial Computing SubTopic: ARKit Tags:
Apr ’23
Reply to New version of RoomPlan fails when a surface is detected
Update: I tested the provided version of RoomPlan which uses UIKit instead of SwiftUI and it works well. So I am waiting for future updates.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’23
Reply to Can I use room plan api with scene reconstruction api ?
Hello jmousseau are you sure RoomPlan enables scene depth? This snippet of code in a RoomCaptureSessionDelegate class: func captureSession(_ session: RoomCaptureSession, didProvide instruction: RoomCaptureSession.Instruction) { print(session.arSession.currentFrame?.sceneDepth != nil ? true : false) } prints false
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’23
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?
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
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)
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Apr ’23
Reply to What does "generating texture with resolution of ..." mean in RoomPlan
Hello, From the documentation, it doesn't seem that RoomPlan generates textures at all.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’23
Reply to Modify RoomBuilder data before export
Hi, good question. I would also be interested in the solution if you find something.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’23
Reply to Modifying CapturedRoom in RoomPlan
This is great, thanks!
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’23
Reply to RoomPlan Parameter Modification
I would also be interested in modifying the data, in particular CapturedRoom (either create create a CapturedRoom or modifying its properties). Any idea how this can be done?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’23