You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
I have a quick question about the diagonal FOV of the VI-sensor. From the euroc dataset, I find the focal length in pixel and horizontal and vertical length of the image, so the diagonal focal length is computed as the below python code.
# visensor, see Nikolic 14 paper A Synchronized Visual-Inertial Sensor System with FPGA
# Pre-Processing for Accurate Real-Time SLAM
from __future__ import print_function
import math
import numpy as np
print('VI-sensor', '*'*60)
w = 752
h = 480
d = math.sqrt(w*w + h*h)
focalpixel = 457.0 # approximated from euroc dataset MH_01_easy
actualdfov = 2*math.atan2(d/2, focalpixel)*180/math.pi
print('Diagonal FOV computed from calibrated focal length in pixel {}: {} deg'.format(focalpixel, actualdfov))
The above code gives the result:
Diagonal FOV computed from calibrated focal length in pixel 457.0: 88.612 deg
However the Nikolic ICRA14 paper mentions that the diagonal FOV of the VI-sensor lenses are either 122 or 132 deg.
Can you please clarify this difference on the diagonal FOV for me? Thanks in advance.
I have a quick question about the diagonal FOV of the VI-sensor. From the euroc dataset, I find the focal length in pixel and horizontal and vertical length of the image, so the diagonal focal length is computed as the below python code.
The above code gives the result:
However the Nikolic ICRA14 paper mentions that the diagonal FOV of the VI-sensor lenses are either 122 or 132 deg.
Can you please clarify this difference on the diagonal FOV for me? Thanks in advance.