Commit a88311b8 authored by wangqibing's avatar wangqibing

fix const bug

parent e05435f3
......@@ -530,7 +530,7 @@ int Track3D::GetColorInfo(std::string& color)
return 0;
}
void Track3D::SetQ(std::vector<float>& data)
void Track3D::SetQ(const std::vector<float>& data)
{
if(data.size()<10)
{
......
......@@ -50,7 +50,7 @@ public:
virtual void SetValues(std::vector<float>& data);
void SetQ(std::vector<float>& data);//lyc 2.13
void SetQ(const std::vector<float>& data);//lyc 2.13
virtual int GetIouData(std::vector<float>& data, int& obj_type);
static void MeasureIouData(const std::vector<float>& input, std::vector<float>& out, int& obj_type);
......
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