pub struct FlashDetector {
pub threshold: f32,
pub min_duration: usize,
pub max_duration: usize,
}Expand description
Flash detector for bright, sudden changes in luminance
Fields§
§threshold: f32Brightness threshold (0.0 to 1.0)
min_duration: usizeMinimum flash duration in frames
max_duration: usizeMaximum flash duration in frames
Implementations§
Source§impl FlashDetector
impl FlashDetector
Sourcepub fn new(threshold: f32, min_duration: usize, max_duration: usize) -> Self
pub fn new(threshold: f32, min_duration: usize, max_duration: usize) -> Self
Create a new flash detector
Sourcepub fn detect(
&self,
frames: &[&[u8]],
width: usize,
height: usize,
) -> Vec<SyncMarker>
pub fn detect( &self, frames: &[&[u8]], width: usize, height: usize, ) -> Vec<SyncMarker>
Detect flashes in a sequence of frames
Sourcepub fn detect_local(
&self,
frames: &[&[u8]],
width: usize,
_height: usize,
region: &Region,
) -> Vec<SyncMarker>
pub fn detect_local( &self, frames: &[&[u8]], width: usize, _height: usize, region: &Region, ) -> Vec<SyncMarker>
Detect local flashes in specific regions
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlashDetector
impl RefUnwindSafe for FlashDetector
impl Send for FlashDetector
impl Sync for FlashDetector
impl Unpin for FlashDetector
impl UnsafeUnpin for FlashDetector
impl UnwindSafe for FlashDetector
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§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 moreSource§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).Source§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.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.