Commit e603c92c authored by oscar's avatar oscar

提交更新

parent 62475d37
......@@ -171,7 +171,9 @@ void TrackingRos2::TrackingPorcess(objTrackListPtr objsPtr)
obj.shape = input_obj.object.shape;
}
std::string uuid = std::to_string(iter.first);
memcpy(obj.object_id,uuid.c_str(),uuid.size()+1);
for(int i = 0; i < uuid.size() + 1; i++)
obj.object_id[i] = uuid[i];
// memcpy(obj.object_id,uuid.c_str(),uuid.size()+1);
std::vector<float> data;
if (iter.second->IsValid() && iter.second->GetStateData(data) == 0) //初始obj更新跟踪的推理结果
{
......
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