Struct cv_core::CameraToWorld [−][src]
pub struct CameraToWorld(pub IsometryMatrix3<f64>);
Expand description
This contains a camera pose, which is a pose of the camera relative to the world.
This transforms camera points (with depth as z
) into world coordinates.
This also tells you where the camera is located and oriented in the world.
Tuple Fields
0: IsometryMatrix3<f64>
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
type InputPoint = CameraPoint
type OutputPoint = WorldPoint
type Inverse = WorldToCamera
Retrieve the isometry.
Applies a scale factor to the pose (scales the translation component)
Create the pose from rotation and translation.
Retrieve the homogeneous matrix.
fn transform_jacobians(
self,
input: Self::InputPoint
) -> (Self::OutputPoint, Matrix4<f64>, Matrix4x6<f64>)
fn transform_jacobians(
self,
input: Self::InputPoint
) -> (Self::OutputPoint, Matrix4<f64>, Matrix4x6<f64>)
Transform the given point to an output point, while also retrieving both Jacobians. Read more
fn transform_jacobian_input(
self,
input: Self::InputPoint
) -> (Self::OutputPoint, Matrix4<f64>)
fn transform_jacobian_input(
self,
input: Self::InputPoint
) -> (Self::OutputPoint, Matrix4<f64>)
Transform the given point to an output point, while also retrieving the input Jacobian. Read more
fn transform_jacobian_self(
self,
input: Self::InputPoint
) -> (Self::OutputPoint, Matrix4x6<f64>)
fn transform_jacobian_self(
self,
input: Self::InputPoint
) -> (Self::OutputPoint, Matrix4x6<f64>)
Transform the given point to an output point, while also retrieving the transform Jacobian. Read more
Transform the given point to an output point, while also retrieving the transform Jacobian. Read more
Auto Trait Implementations
impl RefUnwindSafe for CameraToWorld
impl Send for CameraToWorld
impl Sync for CameraToWorld
impl Unpin for CameraToWorld
impl UnwindSafe for CameraToWorld
Blanket Implementations
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
Checks if self
is actually part of its subset T
(and can be converted to it).
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
The inclusion map: converts self
to the equivalent element of its superset.