Camera calibration

class aloscene.camera_calib.CameraExtrinsic(x, *args, **kwargs)

Bases: aloscene.tensors.augmented_tensor.AugmentedTensor

Camera Extrinsic of shape […, 4, 4]. This matrix transforms real world coordinates to camera coordinates by translation and rotation.

The last two dimension forms a transformation matrix (translation vector and rotation matrix):

R11 R12 R13 t1

R21 R22 R23 t2

R31 R32 R33 t3

0 0 0 1

get_view(*args, **kwargs)
class aloscene.camera_calib.CameraIntrinsic(x, *args, **kwargs)

Bases: aloscene.tensors.augmented_tensor.AugmentedTensor

Camera Intrinsic matrix of shape […, 3, 4] The intrinsic matrix transforms 3D camera cooordinates to 2D homogeneous image coordinates. This perspective projection is modeled by the ideal pinhole camera

The last two dimensions is:

fx s x0 0

0 fy y0 0

0 0 1 0

  • Focal length: fx, fy. For true pinhole camera, fx and fy have the same value.

  • Princial Point Offset: x0, y0

  • Axis skew: s, in most cases, this value should be 0

For more information: https://ksimek.github.io/2013/08/13/intrinsic/

get_view(*args, **kwargs)