The core-motion tag has no wiki summary.
10
votes
5answers
1k views
iPhone - understanding iPhone rotation
I am banging my head on the wall trying to understand this. See the next picture.
Suppose I have an iPhone resting on a table. At this time the rotation readings thru core motion are 0,0,0 for yaw, ...
9
votes
1answer
221 views
How to create a new CMAttitude Reference Frame to make the gravity be on the Y axis
I want to be able to change the Device Motion Manager Reference frame (for the gyro) so that I have my gravity vector on the Y axis.
Usually when you start Device Motion Manager Updates you will only ...
9
votes
1answer
580 views
Actual frequency of device motion updates lower than expected, but scales up with setting
I am porting an app that I originally wrote using the accelerometer for IOS 3, to incorporate the new IOS 4 motion capabilities.
While capturing motion, the application does little else - no graphics ...
7
votes
1answer
580 views
Do the sensor fusion algorithms of Core Motion take advantage of the Kalman filter?
Do the sensor fusion algorithms of Core Motion take advantage of the Kalman filter?
4
votes
1answer
102 views
Wrong compass heading values with CoreMotion
I'm using CoreMotion to get the ccompass heading and i noticed some problems with the compass heading.
At first my initialization of CoreMotion.
I got a CMMotionManager object, locationManager, ...
4
votes
1answer
110 views
What's the technology behind Skype's anit-shake video recording? [closed]
Skype added an anti-shake feature in it's video conference app on iPhone. How can that be done?
3
votes
2answers
110 views
Is there any way to remove the small bias along the gravity axis in the accelerometer data
Similar to this question:
CMDeviceMotion userAcceleration drift
I'm using CMDeviceMotion.userAcceleration in iOS5 SDK to plot its x, y, z components over time. Like the above post, I see z ...
3
votes
1answer
295 views
update frequency set for deviceMotionUpdateInterval it's the actual frequency?
analyzing the deviceMotion.timestamp i saw that the the update frequency set in DeviceMotion is not the actual frequency of update.
I implemented an app in order to test, below what I saw!
...
3
votes
1answer
407 views
Do I get more accurate or faster accelerometer readings with Core Motion?
I can use this method of the Core Motion framework:
- (void)startAccelerometerUpdatesToQueue:(NSOperationQueue *)queue withHandler:(CMAccelerometerHandler)handler
as an alternative to the
- ...
2
votes
0answers
18 views
How to solve multiple CMMotionManager conflict in iOS?
I want to create a customized UIView class (a static lib) for some app developers. I have created CMMotionManager instance in my code. I've found that if an app developer also creates the ...
2
votes
1answer
120 views
iOS 4+: lag in CMDeviceMotion time intervals
I'm working on a calculation-intensive app that happens to listen to sensor data (acceleration, but also angular velocity). After a couple filters, these vectors are integrated to track displacement.
...
2
votes
3answers
372 views
DeviceMotion relative to world - multiplyByInverseOfAttitude
What is the correct way to use CMAttitude:multiplyByInverseOfAttitude?
Assuming an iOS5 device laying flat on a table, after starting CMMotionManager with:
CMMotionManager *motionManager = ...
2
votes
1answer
557 views
CoreMotion iOS 5 attitude with reference frame doesn't work
i'm trying the new features of CoreMotion, above all the possibility to set the reference frame, but if i use a DeviceMotionHandler and the reference frame set to ...
2
votes
1answer
131 views
CMDeviceMotion userAcceleration drift
I'm getting the acceleration data using the -[CMDeviceMotion userAcceleration]
I've noticed one interesting thing: I always get a small bias on the Z axis. It is about 0.0155 (with variance of ...
2
votes
2answers
612 views
How to find the car speed on iPhone?
hi
I want to find the car speed on my iPhone when driving so what should i use & how?
Core Motion or Core Location?
any documentation or sample code?
Thanx in advance
:)
2
votes
0answers
98 views
What is kAccelerometerMinStep?
I have been looking at the Accelerometer Graph example in the iOS Developer library and I have a question about one of the variables that is used...
#define kAccelerometerMinStep 0.02
...
2
votes
3answers
3k views
Simple iPhone motion detect
I need to detect when the gyroscope / accelerometer is activated a certain amount. Basically to detect when there is movement of the device. I don't know anything about Core Motion.
Maybe someone can ...
2
votes
1answer
1k views
iphone - core motion range of yaw, pitch and roll
I don't have an iPhone 4 with me right now and I am trying to find a documentation that shows the ranges of yaw, pitch and roll and the correspondent positions of the device.
I know that the ...
2
votes
2answers
2k views
CMSampleBuffer from OpenGL for video output with AVAssestWritter
I need to get a CMSampleBuffer for the OpenGL frame. I'm using this:
int s = 1;
UIScreen * screen = [UIScreen mainScreen];
if ([screen respondsToSelector:@selector(scale)]){
...
1
vote
1answer
17 views
Does iPhone3GS support block queues?
I'm running into a problem with some of my code on iPhone3GS running iOS5.0
The following block never gets executed, even though it gets called fine on iPhone4 with iOS5.0.
The log statement never ...
1
vote
1answer
82 views
Can't run performSelector: afterDelay from CoreMotion Block
I'm having trouble firing a performSelector afterDelay command, upon detection of an accelerometer 'flick'. The movement is detected ('Got here' is logged), but for some reason the selector passed to ...
1
vote
1answer
81 views
CMMotionManager is a global resource? What does this means?
I am trying to initialize the CMMotionManager so start updates and create a reference attitude matrix, and then when i click a button trough the storyboard, i display a different screen (which is in a ...
1
vote
2answers
116 views
Calculate Acceleration (Driving a Car)
I am trying to replicate the acceleration calculation like the application "Dynolicious" but I'm not sure where to head to calculate this. Do I use Core Motion or do I do calculations using other ...
1
vote
1answer
186 views
iOS5: low update rate of CLHeading readings -> switching to CoreMotion is problematic
With iOS5 the update frequencey of the Compass raw data reading, CLHeading, dropped dramatically. This rendered my augmented reality app unusable, because it depends on a close-to-real-time reading of ...
1
vote
0answers
216 views
Core Location and Core Motion device heading
I've noticed one problem with Coree Motion. When I'm using the
[_mMotionManager startDeviceMotionUpdatesUsingReferenceFrame: CMAttitudeReferenceFrameXTrueNorthZVertical
...
1
vote
2answers
1k views
iPhone - What does the gyroscope measures? Can I get an absolute degree measurement in all axis?
I am relatively new to iPhone development and I am playing with the gyroscope, using Core Motion. After a few tests, this is my question.
What information is exactly the gyroscope measuring? absolute ...
1
vote
1answer
598 views
iOS 4 core motion attitude in landscape orientation
I've been trying to rotate my view based on the CMAttitude returned from CMMotionManager specifically the pitch=x and roll=y. I'm using a reference attitude to set my horizon.
This works great for ...
1
vote
2answers
515 views
iphone - core motion (relative rotation)
Is there a way to obtain a relative rotation from core motion?
What I need is: how much it rotated in one axis and which direction (+ sign = anti-clockwise, - = clockwise, according to the right-hand ...
1
vote
1answer
269 views
1
vote
1answer
1k views
Using Core Motion to determine phone's Altitude and Azimuth
It would seem like this should be something easy, but I'm just not having any luck.
What I want to be able to do is use core motion to keep track of where the phone's camera is being pointed at (for ...
1
vote
0answers
385 views
Core Motion - Convert local euler angles to another reference system
I got a problem with the maths involved in converting local Euler angles into the angles of another reference system. Lets say we have an iPhone aligned with the axis of an vehicle and I want to ...
0
votes
1answer
11 views
How to use accelerometer, CMMotion data to locate a point in 3D space?
I am creating an application. In which iPhone will be placed (a separate cover is made for it) with golf club(racket). I want to get array of points which state the path of the racket movement.
For ...
0
votes
1answer
48 views
Get pitch, roll and yaw relative to geographic north on iOS?
I see that I can retrieve CMAttitude from a device and from it I can read 3 values which I need (pitch, roll and yaw).
As I understand, this CMAttitude object is managed by CoreMotion which is a ...
0
votes
1answer
64 views
gyroscope updates in core motion
I'm new to core motion, and after much search without a satisfactory answer, I decided to post my problem here to see if someone can help me out.
I'm trying to get the yaw angle from the iPhone ...
0
votes
1answer
66 views
NSThread, NSOperation or GCD for CoreMotion and accurate timing purposes?
I'm looking to do some high precision core motion reading (>=100Hz if possible) and motion analysis on the iPhone 4+ which will run continuously for the duration of the main part of the app. It's ...
0
votes
1answer
117 views
iOS5 CMMotionManager startDeviceMotionUpdatesToQueue: fails on iPhone3GS
I have a software-hardware related issue that I'm trying to troubleshoot. My app was developed for iPhone4, iOS5 and uses Core Motion framework to process accelerometer and gyroscope data in real ...
0
votes
0answers
33 views
How to achieve movement of ball on screen when the surface of the device is vertical?
I have implemented that the device aligned horizontal by using accelerometer. When the device is exactly horizontal that time the ball will be at center position. see how i have achieved it by below ...
0
votes
1answer
103 views
Core Motion Gyroscope 360 degree values
I am testing Core Motion and using the gyroscope. Right now I am getting values that I am not understanding. My assumption was that with each x, y and z I would get a value between 0-360 which would ...
0
votes
1answer
44 views
How to install an Xcode framework
I'm having trouble installing a framework in XCode(CoreMotion).
I think it supposed to come along with XCode, but when I look for it in the existing frameworks it doesn't appear.
Does this library ...
0
votes
2answers
134 views
CMAttitude roll and pitch calculation
The question itself is simple. When using the CMDeviceMotion motion it contains an object named attitude of type CMAttitude which contains roll and pitch. Roll and pitch describe the rotation of the ...
0
votes
1answer
194 views
Isolate and remove horizontal rotation from CoreMotion's attitude's rotationMatrix
I'm making something like an augmented reality app, in which I have an OpenGL scene that I want to stay aligned with gravity no matter how the iOS device moves. I thought I had it set up fine with a ...
0
votes
1answer
124 views
iPhone4, iOS5 Networked, multiplayer Augmented reality (AR/VR) game. Where to start?
I'm working on a pretty complicated app right now, but I just got a really good, niche market idea for an AR game for iPhone. I would love to get some preliminary research done on whether or not it is ...
0
votes
2answers
183 views
iOS: Core Motion used to detect larger movements over distance?
I have a GPS app that I would like to detect if the user is standing still and not moving. Using Core Location works for this, but is sometimes not accurate because new updates move and gives the ...
0
votes
1answer
118 views
iOS Compass vs independent developer versions
I can't seem to manage to make my compass application function anywhere near as smoothly as Apple's, and I haven't seen any compass applications from independent developers that don't lag and ...
0
votes
1answer
132 views
Core-Motion/accelerometer: Detecting when one edge of iPad lifts
I have recently completed a pitch training game.
Problem is that the game requires the user to make thousands of A/B/neither decisions, and I suffer from RSI so badly that I can't play it. I just ...
0
votes
0answers
179 views
Registration timer expired, but client is still registering?
my app program use coremotionmanager and locationmanager too.when i start the program, i found this error.
ERROR,Time,338977575.221,Function,"void ...
0
votes
2answers
329 views
NSTimeInterval to unix timestamp
I'm getting CMDeviceMotion objects from CMMotionManager. One of the properties of the CMDeviceMotion is timestamp, which is expressed as a NSTimeInterval (double). This allows for "sub millisecond" ...
0
votes
0answers
150 views
Shake method don't work [closed]
Possible Duplicate:
motionBegan: Not Working
I have this code:
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{
NSLog(@"Motion Began");}
but when I shake the iPhone ...
0
votes
1answer
136 views
core motion moving two things with the accerlerometer
I'm trying to move two buttons around using the accelerometer in xcode. I have the first button working, when I call startDrifting, but when I call startDrifting2 for the second button, nothing is ...
0
votes
1answer
247 views
Can I use the Core Motion framework on pre iOS 4 devices?
I know that the framework was introduced in iOS 4 with the gyro. But is Core Motion backward-compatible? Or I am restricted to use UIAcceleration?
Does this imply that either I can't use the gyro or ...