[][src]Struct simimgrs::SimilarChecker

pub struct SimilarChecker { /* fields omitted */ }

SimilarChecker has settings for detecting similar image.

Methods

impl SimilarChecker[src]

pub fn new() -> Self[src]

Inits SimilarChecker.

Examples

let checker = simimgrs::SimilarChecker::new();

pub fn compression_size(self, width: usize, height: usize) -> Self[src]

Sets compression_size parametor for SimilarChecker.

Examples

let checker = simimgrs::SimilarChecker::new().compression_size(10, 10);

pub fn threshold(self, threshold: usize) -> Self[src]

Sets threshold parametor for SimilarChecker.

Examples

let checker = simimgrs::SimilarChecker::new().threshold(10);

pub fn is_similar(&self, img1: DynamicImage, img2: DynamicImage) -> bool[src]

Checks for similar image using average hash algorism.

Examples

let img1 = image::open("testdata/aws_batch.png").unwrap();
let img2 = image::open("testdata/aws_rekognition.png").unwrap();
let checker = simimgrs::SimilarChecker::new();
assert!(!checker.is_similar(img1, img2))

Trait Implementations

impl Default for SimilarChecker[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SetParameter for T