Wed Dec 09 2020 20:20:08 GMT+0000 (Coordinated Universal Time)
Saved by @saching12
import numpy as np def calc_fov_D_H_V(f, w, h): return np.degrees(2*np.arctan(np.sqrt(w*w+h*h)/(2*f))), np.degrees(2*np.arctan(w/(2*f))), np.degrees(2*np.arctan(h/(2*f)))
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments