Commit 1e1a2534 authored by wangdawei's avatar wangdawei

map dir

parent 4aeefc54
......@@ -579,9 +579,9 @@ void AdjustPPK::Compress(const vector<PCDPathInfo> &pcdPathVec,
}
LOG(INFO) << "pointcloud->size() to dispatch: " << pointcloud->size();
PointCloudExport downSampledPc;
downSampledPc.reserve(pointcloud->size() * 0.25);
downSampledPc.reserve(pointcloud->size() * 0.06);
for(size_t i = 0; i < pointcloud->size(); i++){
if(i % 5 != 0){
if(i % 20 != 0){
continue;
}
const auto& p = pointcloud->at(i);
......
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