Struct dssim_core::Dssim[][src]

pub struct Dssim { /* fields omitted */ }

Configuration for the comparison

Implementations

impl Dssim[src]

pub fn new() -> Dssim[src]

Create new context for comparisons

pub fn set_scales(&mut self, scales: &[f64])[src]

Set how many scales will be used, and weights of each scale

pub fn set_save_ssim_maps(&mut self, num_scales: u8)[src]

Set how many scales will be kept for saving

pub fn create_image_rgba(
    &self,
    bitmap: &[RGBA<u8>],
    width: usize,
    height: usize
) -> Option<DssimImage<f32>>
[src]

Create image from an array of RGBA pixels (sRGB, non-premultiplied, alpha last).

If you have a slice of u8, then see rgb crate’s as_rgba().

pub fn create_image_rgb(
    &self,
    bitmap: &[RGB<u8>],
    width: usize,
    height: usize
) -> Option<DssimImage<f32>>
[src]

Create image from an array of packed RGB pixels (sRGB).

If you have a slice of u8, then see rgb crate’s as_rgb().

pub fn create_image<InBitmap, OutBitmap>(
    &self,
    src_img: &InBitmap
) -> Option<DssimImage<f32>> where
    InBitmap: ToLABBitmap + Send + Sync + Downsample<Output = OutBitmap>,
    OutBitmap: ToLABBitmap + Send + Sync + Downsample<Output = OutBitmap>, 
[src]

The input image is defined using the imgref crate, and the pixel type can be:

  • ImgVec<RGBAPLU> — RGBA premultiplied alpha, linear, float scaled to 0..1
  • ImgVec<RGBLU> — RGBA linear, float scaled to 0..1
  • ImgVec<f32> — linear light grayscale, float scaled to 0..1

And there’s ToRGBAPLU::to_rgbaplu() trait to convert the input pixels from [RGBA<u8>], [RGBA<u16>], [RGB<u8>], or RGB<u16>. See lib.rs for example how it’s done.

You can implement ToLABBitmap and Downsample traits on your own image type.

pub fn compare<M: Borrow<DssimImage<f32>>>(
    &self,
    original_image: &DssimImage<f32>,
    modified_image: M
) -> (Val, Vec<SsimMap>)
[src]

Compare original with another image. See create_image

The SsimMaps are returned only if you’ve enabled them first.

Val is a fancy wrapper for f64

Trait Implementations

impl Clone for Dssim[src]

impl Debug for Dssim[src]

Auto Trait Implementations

impl RefUnwindSafe for Dssim

impl Send for Dssim

impl Sync for Dssim

impl Unpin for Dssim

impl UnwindSafe for Dssim

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> Pointable for T

type Init = T

The type for initializers.

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.