[][src]Struct texture_synthesis::Example

pub struct Example<'a> { /* fields omitted */ }

An example to be used in texture generation

Methods

impl<'a> Example<'a>[src]

pub fn builder<I: Into<ImageSource<'a>>>(img: I) -> ExampleBuilder<'a>[src]

Creates a new example builder from the specified image source

pub fn new<I: Into<ImageSource<'a>>>(img: I) -> Self[src]

Creates a new example input from the specified image source

pub fn with_guide<G: Into<ImageSource<'a>>>(&mut self, guide: G) -> &mut Self[src]

Use a guide map that describe a 'FROM' transformation.

Note: If any one example has a guide, then they all must have a guide, otherwise a session will not be created.

pub fn set_sample_method<M: Into<SampleMethod<'a>>>(
    &mut self,
    method: M
) -> &mut Self
[src]

Specify how the example image is sampled during texture generation.

By default, all pixels in the example can be sampled.

Trait Implementations

impl<'a> Into<Example<'a>> for ExampleBuilder<'a>[src]

impl<'a, IS> From<IS> for Example<'a> where
    IS: Into<ImageSource<'a>>, 
[src]

Auto Trait Implementations

impl<'a> Send for Example<'a>

impl<'a> Unpin for Example<'a>

impl<'a> Sync for Example<'a>

impl<'a> UnwindSafe for Example<'a>

impl<'a> RefUnwindSafe for Example<'a>

Blanket Implementations

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<V, T> VZip<V> for T where
    V: MultiLane<T>,