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

View File

@ -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;
};