Enum adder_codec_rs::transcoder::source::davis::TranscoderMode
source · pub enum TranscoderMode {
Framed,
RawDavis,
RawDvs,
}
Expand description
The EDI reconstruction mode, determining how intensities are integrated for the ADΔER model
Variants§
Framed
Perform a framed EDI reconstruction at a given (constant) frame rate. Each frame is integrated in the ADΔER model with a Framed source.
RawDavis
Use EDI to reconstruct only one intensity frame for each input APS frame. That is, each APS frame is deblurred, by using the DVS events that occur during that exposure. The DVS events between deblurred APS frames are integrated directly and asynchronously into the ADΔER model.
RawDvs
Use EDI merely as a driver for providing the DVS events. The DVS events between are integrated directly and asynchronously into the ADΔER model. Any APS frames are ignored.
Trait Implementations§
source§impl Clone for TranscoderMode
impl Clone for TranscoderMode
source§fn clone(&self) -> TranscoderMode
fn clone(&self) -> TranscoderMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<TranscoderMode> for TranscoderMode
impl PartialEq<TranscoderMode> for TranscoderMode
source§fn eq(&self, other: &TranscoderMode) -> bool
fn eq(&self, other: &TranscoderMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TranscoderMode
impl Eq for TranscoderMode
impl StructuralEq for TranscoderMode
impl StructuralPartialEq for TranscoderMode
Auto Trait Implementations§
impl RefUnwindSafe for TranscoderMode
impl Send for TranscoderMode
impl Sync for TranscoderMode
impl Unpin for TranscoderMode
impl UnwindSafe for TranscoderMode
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.