[][src]Struct edge_detection::Edge

pub struct Edge { /* fields omitted */ }

The computed result for a single pixel.

Methods

impl Edge[src]

pub fn angle(&self) -> f32[src]

The direction of the gradient in radians.

This is a convenience function for atan2(direction).

pub fn dir(&self) -> (f32, f32)[src]

Returns the direction of the edge scaled by it's magnitude.

pub fn dir_norm(&self) -> (f32, f32)[src]

Returns a normalized vector of the direction of the change in brightness

The vector will point away from the detected line. E.g. a vertical line separating a dark area on the left and light area on the right will have it's direction point towards the light area on the right.

pub fn magnitude(&self) -> f32[src]

The absolute magnitude of the change in brightness.

Between 0 and 1 inclusive.

Trait Implementations

impl Clone for Edge[src]

impl Copy for Edge[src]

impl Debug for Edge[src]

Auto Trait Implementations

impl Send for Edge

impl Unpin for Edge

impl Sync for Edge

impl UnwindSafe for Edge

impl RefUnwindSafe for Edge

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T