MCPcopy Create free account
hub / github.com/google-deepmind/dm_control / CameraMatrices

Class CameraMatrices

dm_control/mujoco/engine.py:625–639  ·  view source on GitHub ↗

Component matrices used to construct the camera matrix. The matrix product over these components yields the camera matrix. Attributes: image: (3, 3) image matrix. focal: (3, 4) focal matrix. rotation: (4, 4) rotation matrix. translation: (4, 4) translation matrix.

Source from the content-addressed store, hash-verified

623
624
625class CameraMatrices(NamedTuple):
626 """Component matrices used to construct the camera matrix.
627
628 The matrix product over these components yields the camera matrix.
629
630 Attributes:
631 image: (3, 3) image matrix.
632 focal: (3, 4) focal matrix.
633 rotation: (4, 4) rotation matrix.
634 translation: (4, 4) translation matrix.
635 """
636 image: np.ndarray
637 focal: np.ndarray
638 rotation: np.ndarray
639 translation: np.ndarray
640
641
642class Camera:

Callers 1

matricesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…