MayaFlux 0.5.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ SymbolicTrajectory()

template<typename LatticeT , typename CellT >
MayaFlux::Kinesis::SymbolicTrajectory< LatticeT, CellT >::SymbolicTrajectory ( LatticeT  lattice,
size_t  window = 16 
)
inlineexplicit

Construct a trajectory over a given lattice.

Parameters
latticeThe partition to observe the incoming positions through
windowNumber of recent cell observations to retain for windowed queries (unique_cells_in_window, crossings_in_window, dominant_cell). Minimum 2.

Definition at line 55 of file SymbolicTrajectory.hpp.

57 , m_history(window < 2 ? 2 : window)
58 {
59 }
const LatticeT & lattice() const
The lattice this trajectory observes positions through.
Memory::HistoryBuffer< CellT > m_history