Commit e4d432e9 authored by oscar's avatar oscar

提交更新

parent c019298d
......@@ -354,7 +354,7 @@ void TrackingRos::TrackingCallBackFunc(const jfx_common_msgs::det_tracking_array
objsPtr->array = msg->array;
objsPtr->cloud = msg->cloud;
unsigned long long timestamp = (unsigned long long)msg->cloud.header.stamp.sec * 1000 + (unsigned long long)msg->cloud.header.stamp.nsec * 1e-6;
unsigned long long timestamp = (unsigned long long)msg->cloud.header.stamp.sec * 1000000 + (unsigned long long)msg->cloud.header.stamp.nsec * 1e-3;
SDK_LOG(SDK_INFO, "TrackingCallBackFunc msg->header.stamp.sec = %d,msg->header.stamp.nsec = %d time = %llu", msg->cloud.header.stamp.sec, msg->cloud.header.stamp.nsec, timestamp);
static int countR = 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