Commit cb8ca588 authored by wangdawei's avatar wangdawei

test

parent 1d127509
......@@ -94,7 +94,7 @@ void AdjustPPK::OnReceivedCloud(const PPointCloud &cloud)
pcl_conversions::fromPCL(cloud.header.stamp, rosTime);
cloudPacket.timestamp = rosTime.toSec();
cloudPacket.cloud.reserve(cloud.size());
LOG_EVERY_N(INFO, 99) << setprecision(15) << "OnReceivedCloud: " << cloudPacket.timestamp
LOG_EVERY_N(INFO, 1) << setprecision(15) << "OnReceivedCloud: " << cloudPacket.timestamp
<< " cloud.size()" << cloud.size()
<< " frontPTime " << cloud.front().timestamp
<< " backPTime " << cloud.back().timestamp;
......@@ -106,8 +106,10 @@ void AdjustPPK::OnReceivedCloud(const PPointCloud &cloud)
point.z = p.z;
point.intensity = p.intensity;
point.time = p.timestamp;
LOG_EVERY_N(INFO, 1) << setprecision(15) << "p.timestamp: " << p.timestamp;
cloudPacket.cloud.push_back(point);
}
exit(0);
CloudInfoForMatch cloudInfo;
if(!Undisort(cloudPacket, cloudInfo)){
......
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