[][src]Struct neuro::data::ImageOps

pub struct ImageOps { /* fields omitted */ }

Contains the parameters of the different operations applied on the images.

Methods

impl ImageOps[src]

pub fn new(
    rotation: Option<(i32, f64)>,
    hflip: Option<f64>,
    vflip: Option<f64>,
    scale: Option<PrimitiveType>
) -> ImageOps
[src]

Creates a new image operations structure.

Arguments

  • rotation - A tuple containing the absolute value of the maximum angle in degrees and the probability that a rotation is applied.
  • hflip - The probability that the image is flipped horizontally.
  • vflip - The probability that the image is flipped vertically.
  • scale - A factor applied to each pixel of the image.

Trait Implementations

impl Clone for ImageOps[src]

impl Debug for ImageOps[src]

impl Default for ImageOps[src]

Auto Trait Implementations

impl RefUnwindSafe for ImageOps

impl Send for ImageOps

impl Sync for ImageOps

impl Unpin for ImageOps

impl UnwindSafe for ImageOps

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,