Commit fc763bfa authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #680 from Algomorph:master

parents eada2205 395db9e7
......@@ -54,8 +54,6 @@ namespace cv
//TODO based on the original implementation
//http://vision.ucsd.edu/~bbabenko/project_miltrack.shtml
#define sign(s) ((s > 0 ) ? 1 : ((s<0) ? -1 : 0))
class ClfOnlineStump;
class CV_EXPORTS ClfMilBoost
......
......@@ -42,6 +42,8 @@
#include "precomp.hpp"
#include "opencv2/tracking/onlineMIL.hpp"
#define sign(s) ((s > 0 ) ? 1 : ((s<0) ? -1 : 0))
template<class T> class SortableElementRev
{
public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment