pub struct FrechetDistanceApprox { /* private fields */ }Expand description
Compute the discrete Fréchet distance between two polygonal chains P and Q. Uses dynamic programming: O(mn) time and space. The discrete Fréchet distance is an upper bound on the continuous Fréchet distance.
Implementations§
Auto Trait Implementations§
impl Freeze for FrechetDistanceApprox
impl RefUnwindSafe for FrechetDistanceApprox
impl Send for FrechetDistanceApprox
impl Sync for FrechetDistanceApprox
impl Unpin for FrechetDistanceApprox
impl UnsafeUnpin for FrechetDistanceApprox
impl UnwindSafe for FrechetDistanceApprox
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