Struct cv_core::CameraToCamera [−][src]
pub struct CameraToCamera(pub IsometryMatrix3<f64>);
Expand description
This contains a relative pose, which is a pose that transforms the CameraPoint
of one image into the corresponding CameraPoint
of another image. This transforms
the point from the camera space of camera A
to camera B
.
Camera space for a given camera is defined as thus:
- Origin is the optical center
- Positive z axis is forwards
- Positive y axis is up
- Positive x axis is right
Note that this is a left-handed coordinate space.
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 = CameraPoint
type Inverse = CameraToCamera
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 CameraToCamera
impl Send for CameraToCamera
impl Sync for CameraToCamera
impl Unpin for CameraToCamera
impl UnwindSafe for CameraToCamera
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.