1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Image processing components for computer vision //! //! This module provides datasets and transformations for working with images in computer vision tasks. pub mod datasets; pub mod transforms; // Re-export core image types pub use datasets::ImageFolder; pub use transforms::{ transforms::{CenterCrop, Normalize, Resize}, Compose, ImageToTensor, RandomHorizontalFlip, RandomRotation, RandomVerticalFlip, TensorToImage, };