pub trait ToArray3 {
type Out;
// Required method
fn into_array3(self) -> Self::Out;
}
Expand description
Uses this trait to convert an image to an ndarray::Array3. Note that conversion must keep HxWxC order.
pub trait ToArray3 {
type Out;
// Required method
fn into_array3(self) -> Self::Out;
}
Uses this trait to convert an image to an ndarray::Array3. Note that conversion must keep HxWxC order.