Struct cv_core::FeatureWorldMatch [−][src]
pub struct FeatureWorldMatch<P>(pub P, pub WorldPoint);
Expand description
Normalized keypoint to world point match
Tuple Fields
0: P
1: WorldPoint
Trait Implementations
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 !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl<P> RefUnwindSafe for FeatureWorldMatch<P> where
P: RefUnwindSafe,
impl<P> Send for FeatureWorldMatch<P> where
P: Send,
impl<P> Sync for FeatureWorldMatch<P> where
P: Sync,
impl<P> Unpin for FeatureWorldMatch<P> where
P: Unpin,
impl<P> UnwindSafe for FeatureWorldMatch<P> where
P: UnwindSafe,
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.