Struct cv_core::WorldToCamera [−][src]
pub struct WorldToCamera(pub IsometryMatrix3<f64>);
Expand description
This contains a world pose, which is a pose of the world relative to the camera.
This maps WorldPoint
into CameraPoint
, changing an absolute position into
a vector relative to the camera.
Tuple Fields
0: IsometryMatrix3<f64>
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Note that the residual error is returned as a 64-bit float. This allows the residual to be used for things other than sample consensus, such as optimization problems. For sample consensus, the residual should only be used to ensure it is within a threshold that roughly distinguishes inliers from outliers. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
type InputPoint = WorldPoint
type OutputPoint = CameraPoint
type Inverse = CameraToWorld
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 WorldToCamera
impl Send for WorldToCamera
impl Sync for WorldToCamera
impl Unpin for WorldToCamera
impl UnwindSafe for WorldToCamera
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.