def fov(self): """ Returns the field of view for each axis """ return np.float32([np.arctan(self.shape[1] * 0.5 / self.fx), np.arctan(self.shape[0] * 0.5 / self.fy)]) * 2.0