Commit 430f64a5 authored by wangqibing's avatar wangqibing

9->10

parent ab9e0b9b
......@@ -342,9 +342,9 @@ void Track3D::UpdateDataCheck(const std::vector<float>& data, std::vector<float>
{
if (kf_ == nullptr)
return;
if (data.size() != 9)
if (data.size() != 10)
{
SDK_LOG(SDK_INFO, "UpdateDataCheck data size is not 8");
SDK_LOG(SDK_INFO, "UpdateDataCheck data size is not 10");
return;
}
std::vector<float> tmp(data.begin() + 1, data.begin() + 8);
......@@ -461,9 +461,9 @@ int Track3D::GetIouData(std::vector<float>& data, int& obj_type)
void Track3D::MeasureIouData(const std::vector<float>& input, std::vector<float>& out, int& obj_type)
{
if (input.size() != 9)
if (input.size() != 10)
{
SDK_LOG(SDK_INFO, "input is not 9");
SDK_LOG(SDK_INFO, "input is not 10");
return;
}
obj_type = input[0];
......
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