pub struct EventCount { /* private fields */ }Expand description
Single-channel event-count image: the number of events at each pixel, both polarities
summed. Unlike super::Polarity (per-polarity planes) this collapses polarity into
one intensity map — the plainest “how much happened here” frame. Counts accumulate as
u64; normalize rescales the plane into u8 for display.
Implementations§
Source§impl EventCount
impl EventCount
Trait Implementations§
Source§impl Clone for EventCount
impl Clone for EventCount
Source§fn clone(&self) -> EventCount
fn clone(&self) -> EventCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EventCount
Source§impl Debug for EventCount
impl Debug for EventCount
Source§impl Default for EventCount
impl Default for EventCount
Source§fn default() -> EventCount
fn default() -> EventCount
Returns the “default value” for a type. Read more
Source§impl Representation for EventCount
impl Representation for EventCount
type Output = EventFrame
fn generate( &self, stream: &EventStream, ) -> Result<EventFrame, RepresentationError>
Auto Trait Implementations§
impl Freeze for EventCount
impl RefUnwindSafe for EventCount
impl Send for EventCount
impl Sync for EventCount
impl Unpin for EventCount
impl UnsafeUnpin for EventCount
impl UnwindSafe for EventCount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more