コアモーションでより正確またはより速い加速度計の読みを得ることができますか?

StackOverflow https://stackoverflow.com/questions/5492479

質問

私はコアモーションフレームワークのこの方法を使用することができます:

- (void)startAccelerometerUpdatesToQueue:(NSOperationQueue *)queue withHandler:(CMAccelerometerHandler)handler
. の代替として

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration
.

UIKITのUICCLERETIONDELEGATE法そこでは、更新頻度を指定する必要があります。私は高速かつ正確な加速データをできるだけ早く取得したいです。

コアモーションはここに私の友人ですか?コアモーションの方法から期待できる読み頻度は何ですか?ドキュメントはそれについて話しません。

役に立ちましたか?

解決

Edit! Now that this answer is OVER A YEAR OLD, certainly it is only of historic value. At this stage, I guess, everyone should only be using CoreMotion and that's that. Hope this historic answer it helps an history students!


My impression is that: CMAttitude and CMDeviceMotion give you the benefit of both the accel'r and the gyro (if the gyro is present). Whereas CMAccelerometerData is only the accel'r. (Exactly like in the old days before Core Motion.)

My impression is that the two specific advantages of CoreMotion are:

(One) the mindboggling convenience of having Quaternions and attitude given to you on a silver platter

(Two) apparently, both gyro and accel'r are used on machines with a gyro, with no extra work from you ... a huge advantage.

I believe there is no actual technical difference in the quality of usage of the accelerometer per se.

Thus: if (for some reason) you want only the accel'r, and you can do the math (if relevant to your task at hand), you could use the old-school accel'r delegate.

It seems that in short, none of us will ever again use the old-school accelerometer delegate!

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top