[][src]Trait changepoint::MapPathDetector

pub trait MapPathDetector<T> {
    fn step(&mut self, value: &T) -> MapPathResult;
fn reset(&mut self); }

Trait for Maximum aposterori path detection

Required methods

fn step(&mut self, value: &T) -> MapPathResult

Update the run-length detector and return a sequence of run length probabilities.

fn reset(&mut self)

Reset internal state, new run-lengths will refer to steps after this point.

Loading content...

Implementors

impl<T, RL> MapPathDetector<T> for MostLikelyPathWrapper<T, RL> where
    RL: RunLengthDetector<T>, 
[src]

fn step(&mut self, value: &T) -> MapPathResult[src]

Step the underlying detector and return accumulated log probabilities

Algorithm from: https://youtu.be/cas__TaFk9U

Loading content...