Posts

Post not yet marked as solved
3 Replies
694 Views
I found iOS CoreLocation trueHeading not accurate. Accutally, it was off a lot. When I point the iPhone to north, it reported a heading of 250 degree. Why?Here is my code to setup location Manager: locationManager.delegate = self locationManager.desiredAccuracy = kCLLocationAccuracyBest locationManager.requestWhenInUseAuthorization() locationManager.startUpdatingLocation() locationManager.startUpdatingHeading()Here is my code to retrieve the heading:func locationManager(_ manager: CLLocationManager, didUpdateHeading newHeading: CLHeading){ let heading = newHeading.trueHeading; print(heading) radarView.heading = Float(heading); radarView.setNeedsDisplay(); }
Posted
by fireman.
Last updated
.
Post not yet marked as solved
2 Replies
669 Views
Hi, I am new to iOS ARKit. I tried some sample code and placed virtual 3D model in VR. It looked like however there was no occlusion in ARKit. If the 3D model is behind real world objects, it still can been seen. Am I correct?
Posted
by fireman.
Last updated
.
Post not yet marked as solved
4 Replies
813 Views
Hi I have a App using CNN. The App works well with iOS 10. When I ran it with iOS 11, however, I found the resulted images were all 0. I debuged the program and found one MPSCNNConvolution gave all 0 as output. Does anyone know why or have similar experience?
Posted
by fireman.
Last updated
.
Post not yet marked as solved
1 Replies
444 Views
Is there a Apple Engineering we can contact if we have specific technicial ARKit questions?
Posted
by fireman.
Last updated
.