kornia-rs 0.1.5

Low-level computer vision library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod allocator;
mod base;
// TODO: mod ops;
mod serde;
mod storage;

pub use allocator::{CpuAllocator, TensorAllocator};
pub use base::{Tensor, TensorError};

// aliases
pub type Tensor1<T> = Tensor<T, 1>;
pub type Tensor2<T> = Tensor<T, 2>;
pub type Tensor3<T> = Tensor<T, 3>;
pub type Tensor4<T> = Tensor<T, 4>;