pub enum TransformEstimationMethod {
PtzModel,
FeatureMatching,
External,
}Expand description
Method used to estimate a global coordinate transform.
Variants§
PtzModel
Computed from PTZ telemetry combined with a camera model.
FeatureMatching
Computed from inter-frame feature matching (optical flow, homography).
External
Provided by a user-supplied external system.
Trait Implementations§
Source§impl Clone for TransformEstimationMethod
impl Clone for TransformEstimationMethod
Source§fn clone(&self) -> TransformEstimationMethod
fn clone(&self) -> TransformEstimationMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransformEstimationMethod
impl Debug for TransformEstimationMethod
Source§impl Hash for TransformEstimationMethod
impl Hash for TransformEstimationMethod
impl Copy for TransformEstimationMethod
impl Eq for TransformEstimationMethod
impl StructuralPartialEq for TransformEstimationMethod
Auto Trait Implementations§
impl Freeze for TransformEstimationMethod
impl RefUnwindSafe for TransformEstimationMethod
impl Send for TransformEstimationMethod
impl Sync for TransformEstimationMethod
impl Unpin for TransformEstimationMethod
impl UnsafeUnpin for TransformEstimationMethod
impl UnwindSafe for TransformEstimationMethod
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more