Trying to calibrate camera - gyroscope pair. Camera runs at 30 fps, Gyro at 100 Hz.
The example file 'gopro_dataset_example.py', when modified to suit our dataset, runs for 2 - 3 minutes and fails with the following message:
runfile('/crisp/gopro_dataset_example.py', args='/Set3/set3.mov', wdir='/crisp')
Creating video stream from /Set3/set3.mov
Creating gyro stream from /Set3/set3_gyro.csv
Post processing L3G4200D gyroscope data to remove frequency spike noise
Creating calibrator
Estimating time offset and camera to gyroscope rotation. Guessing gyro rate = 100.00
Running calibration. This can take a few minutes.
Calibration failed. Reason "Number of calls to function has reached maxfev = 800."
/crisp/gopro_dataset_example.py:101: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
print('Calibration failed. Reason "{}"'.format(e.message))
To exit: use 'exit', 'quit', or Ctrl-D.
An exception has occurred, use %tb to see the full traceback.
SystemExit: -2
Traceback:
Traceback (most recent call last):
File "<ipython-input-12-64f97a132da6>", line 1, in <module>
runfile('/crisp/gopro_dataset_example.py', args='/Set3/set3.mov', wdir='/crisp')
File "/usr/local/lib/python2.7/dist-packages/spyderlib/widgets/externalshell/sitecustomize.py", line 714, in runfile
execfile(filename, namespace)
File "/usr/local/lib/python2.7/dist-packages/spyderlib/widgets/externalshell/sitecustomize.py", line 81, in execfile
builtins.execfile(filename, *where)
File "/crisp/gopro_dataset_example.py", line 102, in <module>
sys.exit(-2)
SystemExit: -2
In the example python file, there are quite a few parameters which are not very obvious:
Care to explain these ones:
- CAMERA_DIST_CENTER
- CAMERA_DIST_PARAM
- CAMERA_READOUT
Also, in the *_reference.csv, please explain these column headers:
- Fg,
- offset
- rot_x
- rot_y
- rot_z
- gbias_x
- gbias_y
- gbias_z
What happens if I do not already know the gyro biases? Do we need to provide an estimate?
Trying to calibrate camera - gyroscope pair. Camera runs at 30 fps, Gyro at 100 Hz.
The example file 'gopro_dataset_example.py', when modified to suit our dataset, runs for 2 - 3 minutes and fails with the following message:
Traceback:
Traceback (most recent call last):
In the example python file, there are quite a few parameters which are not very obvious:
Care to explain these ones:
Also, in the *_reference.csv, please explain these column headers:
What happens if I do not already know the gyro biases? Do we need to provide an estimate?