Commit cb179b2d authored by limingbo's avatar limingbo

fix periodCloud size 0

parent 63ceb967
......@@ -160,7 +160,7 @@ PointCloudExport getCloudFromPeriod(
pair<uint64_t, uint64_t> period){
PointCloudExport ret;
for(const auto& p : *cloud){
if(p.info > period.first &&
if(p.info >= period.first &&
p.info < period.second){
ret.push_back(p);
}
......
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