[][src]Enum opencv::xfeatures2d::PCTSignatures_SimilarityFunction

#[repr(C)]pub enum PCTSignatures_SimilarityFunction {
    MINUS,
    GAUSSIAN,
    HEURISTIC,
}

Similarity function selector.

See also

Christian Beecks, Merih Seran Uysal, Thomas Seidl. Signature quadratic form distance. In Proceedings of the ACM International Conference on Image and Video Retrieval, pages 438-445. ACM, 2010. BeecksUS10

Note: For selected distance function: block formula and parameter: block formula

Variants

MINUS

block formula

GAUSSIAN

block formula

HEURISTIC

block formula

Trait Implementations

impl Clone for PCTSignatures_SimilarityFunction[src]

impl Copy for PCTSignatures_SimilarityFunction[src]

impl Debug for PCTSignatures_SimilarityFunction[src]

impl PartialEq<PCTSignatures_SimilarityFunction> for PCTSignatures_SimilarityFunction[src]

impl StructuralPartialEq for PCTSignatures_SimilarityFunction[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.