pub struct MotionResult {
pub average_sad: f32,
pub motion_ratio: f32,
pub max_motion: f32,
pub complexity: f32,
}Expand description
Motion analysis result.
Fields§
§average_sad: f32Average SAD (Sum of Absolute Differences).
motion_ratio: f32Ratio of blocks with significant motion.
max_motion: f32Maximum motion detected in any block.
complexity: f32Overall motion complexity metric.
Implementations§
Source§impl MotionResult
impl MotionResult
Trait Implementations§
Source§impl Clone for MotionResult
impl Clone for MotionResult
Source§fn clone(&self) -> MotionResult
fn clone(&self) -> MotionResult
Returns a duplicate 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 Debug for MotionResult
impl Debug for MotionResult
Source§impl Default for MotionResult
impl Default for MotionResult
Source§fn default() -> MotionResult
fn default() -> MotionResult
Returns the “default value” for a type. Read more
impl Copy for MotionResult
Auto Trait Implementations§
impl Freeze for MotionResult
impl RefUnwindSafe for MotionResult
impl Send for MotionResult
impl Sync for MotionResult
impl Unpin for MotionResult
impl UnsafeUnpin for MotionResult
impl UnwindSafe for MotionResult
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more