Enum opencv::ml::Boost_Types
source · #[repr(C)]
pub enum Boost_Types {
DISCRETE,
REAL,
LOGIT,
GENTLE,
}
Expand description
Boosting type. Gentle AdaBoost and Real AdaBoost are often the preferable choices.
Variants§
DISCRETE
Discrete AdaBoost.
REAL
Real AdaBoost. It is a technique that utilizes confidence-rated predictions and works well with categorical data.
LOGIT
LogitBoost. It can produce good regression fits.
GENTLE
Gentle AdaBoost. It puts less weight on outlier data points and for that reason is often good with regression data.
Trait Implementations§
source§impl Clone for Boost_Types
impl Clone for Boost_Types
source§fn clone(&self) -> Boost_Types
fn clone(&self) -> Boost_Types
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Boost_Types
impl Debug for Boost_Types
source§impl PartialEq<Boost_Types> for Boost_Types
impl PartialEq<Boost_Types> for Boost_Types
source§fn eq(&self, other: &Boost_Types) -> bool
fn eq(&self, other: &Boost_Types) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.