-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gyro and Acc Units #7
Comments
Hi! Gyroscope measures the rotational speed at the moment. I don't remember right now. But you may try yourself - just record short footage when you flip camera 90 degrees and see how rotational speed will change and then stop. You will need to do some calculations (take integral) to get actual angle |
If you have a turn table, you can position the camera in one of three orientations and record a short section of video for each. You need to figure out which are roll, pitch and yaw axis and their signs. It would be highly beneficial to know the if the data is time stamped, rather than process with just a crude sample rate. For actually computing the AHRS from the data, I've used this code in the past: |
Any tips on how to use the gyro data to stabilize outside catalyst? |
Firstly you'd need to integrate/process the data to form a model of the camera's motion, if you want some really nasty Python code example here's my attempts... but likely much better stuff elsewhere. Then I suspect that you'd want to process that to find intentional motion vs jitters... since you are post processing you can search forwards and backwards through the data. Finally you'd want to do the image re-projections, based on the focal length of the lens and the estimated movements. |
To stabilize I recommand https://github.com/ElvinC/gyroflow , everything is already done there. |
@tomstom They specifically state the Sony cams are supported!!
|
I am trying to extract raw gyro and accelerometer data to estimate the yaw pitch and roll angles using probably a Kalman filter. I was wondering what are the units of the data coming out for the RX0M2 and if you have some sort of reference for it
Thanks
The text was updated successfully, but these errors were encountered: