pub struct Match {
pub x: f32,
pub y: f32,
pub angle_deg: f32,
pub score: f32,
}Expand description
Match result for the finest pyramid level.
Fields§
§x: f32Refined top-left x coordinate of the template placement (level 0).
y: f32Refined top-left y coordinate of the template placement (level 0).
angle_deg: f32Estimated rotation angle in degrees.
score: f32Score for the chosen metric (ZNCC in [-1, 1], SSD as negative SSE).
Trait Implementations§
impl Copy for Match
impl StructuralPartialEq for Match
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
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