pub struct AlignmentMatrix {
pub tracks: Vec<String>,
pub offsets: Vec<Vec<i64>>,
}Expand description
Pairwise frame-offset matrix between a set of tracks.
Fields§
§tracks: Vec<String>Track IDs (row/column labels).
offsets: Vec<Vec<i64>>offsets[i][j] = frame offset of track j relative to track i.
Implementations§
Source§impl AlignmentMatrix
impl AlignmentMatrix
Sourcepub fn from_alignments(
track_ids: &[&str],
alignments: &[TrackAlignment],
) -> Self
pub fn from_alignments( track_ids: &[&str], alignments: &[TrackAlignment], ) -> Self
Create a new alignment matrix from a list of pairwise TrackAlignments.
The matrix is filled symmetrically: if alignment.offset_frames is the
offset from reference_id to aligned_id, then [ref_idx][aln_idx] = offset and [aln_idx][ref_idx] = -offset.
Sourcepub fn compute_global_offsets(&self) -> Vec<i64>
pub fn compute_global_offsets(&self) -> Vec<i64>
Compute a single global offset for each track (relative to track 0) using a least-squares approach.
The method averages all available pairwise constraints for each track, propagating offsets transitively through the matrix. Track 0 is fixed at offset 0.
Trait Implementations§
Source§impl Clone for AlignmentMatrix
impl Clone for AlignmentMatrix
Source§fn clone(&self) -> AlignmentMatrix
fn clone(&self) -> AlignmentMatrix
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 moreAuto Trait Implementations§
impl Freeze for AlignmentMatrix
impl RefUnwindSafe for AlignmentMatrix
impl Send for AlignmentMatrix
impl Sync for AlignmentMatrix
impl Unpin for AlignmentMatrix
impl UnsafeUnpin for AlignmentMatrix
impl UnwindSafe for AlignmentMatrix
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 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.