integrate new cascade format to GPU soft cascade implementation

This commit is contained in:
marina.kolpakova
2013-01-23 14:57:51 +04:00
parent 7572b4d400
commit 8d9c9c2690
7 changed files with 210 additions and 156 deletions

View File

@@ -489,6 +489,15 @@ protected:
};
class CV_EXPORTS_W ICFPreprocessor
{
public:
CV_WRAP ICFPreprocessor();
CV_WRAP void apply(cv::InputArray _frame, cv::OutputArray _integrals) const;
protected:
enum {BINS = 10};
};
// Implementation of soft (stageless) cascaded detector.
class CV_EXPORTS_W SCascade : public Algorithm
{