Post

Replies

Boosts

Views

Activity

Reply to How to get a 2D floor plan with dimensions from RoomPlan
I also investigate this. And I have an idea, we have simd_float4x4 matrix, and we can get coordinate our walls, but it will be just point, need to draw a line from this and other points, and find edges, just ignore Y axis, but I don't understand in which direction need to draw a line. Probably I don't know how works simd_float4x4 matrix, and how need to decode the value. Do you have some ideas?
Topic: Graphics & Games SubTopic: SceneKit Tags:
Sep ’22
Reply to App Intent not Discoverable by Siri
Hello, did you resolve this problem? Because I have the same issues. Here my code: Intent.swift struct Intent: AppIntent { static var title: LocalizedStringResource = "Perform Intent" static var openAppWhenRun: Bool = false @MainActor func perform() async throws -> some IntentResult { return .result(dialog: "Hello World") } } IntentExtension.swift @main struct IntentExtension: AppIntentsExtension { } struct Shortcuts: AppShortcutsProvider { static var appShortcuts: [AppShortcut] { AppShortcut(intent: Intent(), phrases: ["Perform intent"]) } } Probably for the recognition phase need to pass Shortcuts struct to IntentExtension but I don't understand how I can do it
Topic: App & System Services SubTopic: General Tags:
Aug ’22
Reply to iPhone 14 UWB regression ?
Hi there. Did you find any explanations? Because it seemed strange when Apple changed API for 16 iOS with checking of support and capabilities and then current iPhones where direction measure does not work.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to Nearby Interaction
Hi. Did you solve this problem? Because I also have this issue.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Adding floor to Entity created from RoomPlan USDZ file
Hello guys. Do you have some ideas on how to find the corner edges of the wall? Because I want to draw a 2d map of the room. And I decided firstly to find corner edges on each wall, but I don't understand how can I do it.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to How to get a 2D floor plan with dimensions from RoomPlan
I also investigate this. And I have an idea, we have simd_float4x4 matrix, and we can get coordinate our walls, but it will be just point, need to draw a line from this and other points, and find edges, just ignore Y axis, but I don't understand in which direction need to draw a line. Probably I don't know how works simd_float4x4 matrix, and how need to decode the value. Do you have some ideas?
Topic: Graphics & Games SubTopic: SceneKit Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Core ML image classification on videos
Probably this can help you. if let imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer) { // here you need to pass the imageBuffer of your main model ml }
Topic: Machine Learning & AI SubTopic: Core ML Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to App Intent not Discoverable by Siri
Hello, did you resolve this problem? Because I have the same issues. Here my code: Intent.swift struct Intent: AppIntent { static var title: LocalizedStringResource = "Perform Intent" static var openAppWhenRun: Bool = false @MainActor func perform() async throws -> some IntentResult { return .result(dialog: "Hello World") } } IntentExtension.swift @main struct IntentExtension: AppIntentsExtension { } struct Shortcuts: AppShortcutsProvider { static var appShortcuts: [AppShortcut] { AppShortcut(intent: Intent(), phrases: ["Perform intent"]) } } Probably for the recognition phase need to pass Shortcuts struct to IntentExtension but I don't understand how I can do it
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’22