[][src]Trait cv_convert::TryFromCv

pub trait TryFromCv<T> where
    Self: Sized
{ type Error; fn try_from_cv(from: T) -> Result<Self, Self::Error>; }

Fallible type conversion that is analogous to TryFrom.

Associated Types

Loading content...

Required methods

fn try_from_cv(from: T) -> Result<Self, Self::Error>[src]

Loading content...

Implementations on Foreign Types

impl TryFromCv<&'_ DynamicImage> for Tensor[src]

type Error = Error

impl TryFromCv<DynamicImage> for Tensor[src]

type Error = Error

Loading content...

Implementors

Loading content...