Detail_TrackerSamplerPF_ParamsTraitConst

Trait Detail_TrackerSamplerPF_ParamsTraitConst 

Source
pub trait Detail_TrackerSamplerPF_ParamsTraitConst {
    // Required method
    fn as_raw_Detail_TrackerSamplerPF_Params(&self) -> *const c_void;

    // Provided methods
    fn iteration_num(&self) -> i32 { ... }
    fn particles_num(&self) -> i32 { ... }
    fn alpha(&self) -> f64 { ... }
    fn std(&self) -> Mat_<f64> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn iteration_num(&self) -> i32

number of selection rounds

Source

fn particles_num(&self) -> i32

number of “perturbed” boxes on each round

Source

fn alpha(&self) -> f64

with each new round we exponentially decrease the amount of “perturbing” we allow (like in simulated annealing) and this very alpha controls how fast annealing happens, ie. how fast perturbing decreases

Source

fn std(&self) -> Mat_<f64>

initial values for perturbing (1-by-4 array, as each rectangle is given by 4 values – coordinates of opposite vertices, hence we have 4 values to perturb)

Implementors§