pub fn event_driven_processing<T>(
current_frame: ArrayBase<ViewRepr<&T>, Dim<[usize; 2]>>,
previous_frame: Option<ArrayBase<ViewRepr<&T>, Dim<[usize; 2]>>>,
config: &NeuromorphicConfig,
) -> Result<(ArrayBase<OwnedRepr<T>, Dim<[usize; 2]>>, Vec<Event>), NdimageError>Expand description
Event-Driven Image Processing
Processes images using event-driven neuromorphic algorithms that only activate when significant changes occur, mimicking retinal processing.