|
|
template<class R > |
| | SoftCascadeClassifier (const SoftCascadeClassifier< R > &src, int scale, int offset, long stride) |
| | Create and convert a SoftCascade.
|
| |
|
template<class R , class Param1Type , class Param2Type > |
| | SoftCascadeClassifier (const SoftCascadeClassifier< R > &src, Param1Type p1, const Param2Type &p2) |
| | Create and convert a SoftCascade.
|
| |
|
| SoftCascadeClassifier () |
| | ctor
|
| |
|
| SoftCascadeClassifier (std::istream &in) |
| | ctor with file with data
|
| |
|
| ~SoftCascadeClassifier () |
| | dtor
|
| |
|
unsigned int | length () const |
| | Return the number of classifiers.
|
| |
|
void | insert (const WeakClassifier &weak, float alpha, float reject) |
| |
|
ClassifierList & | list () |
| | Return the inner list of classifier.
|
| |
|
const ClassifierList & | list () const |
| |
|
template<class FeatureType > |
| void | export_features (std::vector< FeatureType > &out) const |
| |
| template<class TParam1 , class TParam2 > |
| float | raw (const TParam1 data, const TParam2 p1) const |
| |
| template<class TParam1 > |
| float | operator() (const TParam1 pIntImage) const |
| |
| template<class TParam1 , class TParam2 > |
| float | operator() (const TParam1 pIntImage, const TParam2 stride) const |
| |
template<class T>
struct SoftCascadeClassifier< T >
A classifier that classify with majority voting of N (weak) classifier and uses a Soft Cascade rejection mechanism. Result are voted for majority and rejected with threshold.
- Parameters
-
| T | a (Boostable) Weak Classifier type |