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
Mutable methods for crate::video::Detail_TrackerStateEstimator
Required Methods§
fn as_raw_mut_Detail_TrackerStateEstimator(&mut self) -> *mut c_void
Provided Methods§
Sourcefn estimate(
&mut self,
confidence_maps: &Vector<Detail_ConfidenceMap>,
) -> Result<Ptr<Detail_TrackerTargetState>>
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