Skip to content

Commit 2ba7391

Browse files
committed
fix GT
1 parent c9b8c53 commit 2ba7391

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

mola_input_mulran_dataset/src/MulranDataset.cpp

+8-5
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ void MulranDataset::initialize(const Yaml& c)
7171
using namespace std::string_literals;
7272

7373
MRPT_START
74+
75+
setLoggerName("MulranDataset");
76+
7477
ProfilerEntry tle(profiler_, "initialize");
7578

7679
MRPT_LOG_DEBUG_STREAM("Initializing with these params:\n" << c);
@@ -199,10 +202,10 @@ void MulranDataset::initialize(const Yaml& c)
199202

200203
std::vector<timestep_t> lidarIdxsToRemove;
201204

202-
for (const auto& [t, e] : datasetEntries_)
205+
for (size_t i = 0; i < lstPointCloudFiles_.size(); i++)
203206
{
204-
if (e.type != EntryType::Lidar) continue;
205-
207+
const double t =
208+
LidarFileNameToTimestamp(lstPointCloudFiles_[i]);
206209
const auto ts = mrpt::Clock::fromDouble(t);
207210

208211
mrpt::poses::CPose3D p;
@@ -211,7 +214,7 @@ void MulranDataset::initialize(const Yaml& c)
211214

212215
if (!interpOk)
213216
{
214-
lidarIdxsToRemove.push_back(e.lidarIdx);
217+
lidarIdxsToRemove.push_back(i);
215218
continue;
216219
}
217220

@@ -236,7 +239,7 @@ void MulranDataset::initialize(const Yaml& c)
236239
"LIDAR timestamps: %zu, matched ground truth timestamps: %zu, "
237240
"from overall GT poses: %zu, removed %zu unmatched lidar "
238241
"scans.",
239-
lidarIdxsToRemove.size(), groundTruthTrajectory_.size(),
242+
lstPointCloudFiles_.size(), groundTruthTrajectory_.size(),
240243
gtPoses.size(), lidarIdxsToRemove.size());
241244
}
242245
else

0 commit comments

Comments
 (0)