pixano.core.pose
Pose(cam_r_m2c, cam_t_m2c)
Bases: PixanoType
, BaseModel
Pose type using orientation and translation matrices
Attributes:
Name | Type | Description |
---|---|---|
_cam_r_m2c |
list[float]
|
3*3 orientation matrix |
_cam_t_m2c |
list[float]
|
3*1 translation matrix |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cam_r_m2c
|
list[float]
|
3*3 orientation matrix |
required |
cam_t_m2c
|
list[float]
|
3*1 translation matrix |
required |
Source code in pixano/core/pose.py
cam_r_m2c: list[float]
property
cam_t_m2c: list[float]
property
to_struct()
staticmethod
Return Pose type as PyArrow Struct
Returns:
Type | Description |
---|---|
StructType
|
Custom type corresponding PyArrow Struct |