[][src]Struct texture_synthesis::ExampleBuilder

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

A builder for an Example

Methods

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

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

Creates a new example builder from the specified image source

pub fn with_guide<G: Into<ImageSource<'a>>>(self, guide: G) -> 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>>>(self, method: M) -> 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]

Auto Trait Implementations

impl<'a> Send for ExampleBuilder<'a>

impl<'a> Sync for ExampleBuilder<'a>

impl<'a> Unpin for ExampleBuilder<'a>

impl<'a> UnwindSafe for ExampleBuilder<'a>

impl<'a> RefUnwindSafe for ExampleBuilder<'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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,