1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

fixed hybrid tracker build problems on Windows

This commit is contained in:
Vadim Pisarevsky
2011-08-26 13:52:46 +00:00
parent c593355e42
commit 07746b54d6
@@ -79,9 +79,9 @@ struct CV_EXPORTS CvMeanShiftTrackerParams
}
int tracking_type;
float h_range[];
float s_range[];
float v_range[];
vector<float> h_range;
vector<float> s_range;
vector<float> v_range;
CvTermCriteria term_crit;
};