Commit 97367431 authored by oscar's avatar oscar

提交测试

parent 5f982583
......@@ -122,6 +122,14 @@ void Track3D::Predict()
{
if (kf_ == nullptr)
return;
if (m_obj == nullptr)
{
SDK_LOG(SDK_INFO, "m_obj = nullptr");
}
else
{
SDK_LOG(SDK_INFO, "m_obj = %p",m_obj.get());
}
point2d pos = {};
pos.x = kf_->x_[0];
pos.y = kf_->x_[1];
......
......@@ -373,6 +373,7 @@ void TrackingRos::ThreadTrackingProcess()
//SDK_LOG(SDK_INFO, "lat = %.10f, lon = %.10f",obj.Lat,obj.Long);
}
iter.second->m_obj = std::make_shared<jfx_common_msgs::det_tracking>(obj);
SDK_LOG(SDK_INFO, "id = %llu, m_obj = %p",iter.first,iter.second->m_obj.get());
}
else
{
......
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