Detail_TrackerStateEstimatorTrait

Trait Detail_TrackerStateEstimatorTrait 

Source
pub trait Detail_TrackerStateEstimatorTrait: Detail_TrackerStateEstimatorTraitConst {
    // Required method
    fn as_raw_mut_Detail_TrackerStateEstimator(&mut self) -> *mut c_void;

    // Provided methods
    fn estimate(
        &mut self,
        confidence_maps: &Vector<Detail_ConfidenceMap>,
    ) -> Result<Ptr<Detail_TrackerTargetState>> { ... }
    fn update(
        &mut self,
        confidence_maps: &mut Vector<Detail_ConfidenceMap>,
    ) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn estimate( &mut self, confidence_maps: &Vector<Detail_ConfidenceMap>, ) -> Result<Ptr<Detail_TrackerTargetState>>

Estimate the most likely target state, return the estimated state

§Parameters
  • confidenceMaps: The overall appearance model as a list of :cConfidenceMap
Source

fn update( &mut self, confidence_maps: &mut Vector<Detail_ConfidenceMap>, ) -> Result<()>

Update the ConfidenceMap with the scores

§Parameters
  • confidenceMaps: The overall appearance model as a list of :cConfidenceMap

Implementors§