//! Resize (interpolation) operations for DNN.
//!
//! This module provides GPU-accelerated 2D image resizing:
//!
//! - [`nearest`] — Nearest-neighbor interpolation.
//! - [`bilinear`] — Bilinear interpolation with optional corner alignment.
//! - [`bicubic`] — Bicubic interpolation using 4x4 neighbor windows.
pub use resize_bicubic;
pub use resize_bilinear;
pub use resize_nearest;