@@ -71,6 +71,9 @@ void MulranDataset::initialize(const Yaml& c)
71
71
using namespace std ::string_literals;
72
72
73
73
MRPT_START
74
+
75
+ setLoggerName (" MulranDataset" );
76
+
74
77
ProfilerEntry tle (profiler_, " initialize" );
75
78
76
79
MRPT_LOG_DEBUG_STREAM (" Initializing with these params:\n " << c);
@@ -199,10 +202,10 @@ void MulranDataset::initialize(const Yaml& c)
199
202
200
203
std::vector<timestep_t > lidarIdxsToRemove;
201
204
202
- for (const auto & [t, e] : datasetEntries_ )
205
+ for (size_t i = 0 ; i < lstPointCloudFiles_. size (); i++ )
203
206
{
204
- if (e. type != EntryType::Lidar) continue ;
205
-
207
+ const double t =
208
+ LidarFileNameToTimestamp (lstPointCloudFiles_[i]);
206
209
const auto ts = mrpt::Clock::fromDouble (t);
207
210
208
211
mrpt::poses::CPose3D p;
@@ -211,7 +214,7 @@ void MulranDataset::initialize(const Yaml& c)
211
214
212
215
if (!interpOk)
213
216
{
214
- lidarIdxsToRemove.push_back (e. lidarIdx );
217
+ lidarIdxsToRemove.push_back (i );
215
218
continue ;
216
219
}
217
220
@@ -236,7 +239,7 @@ void MulranDataset::initialize(const Yaml& c)
236
239
" LIDAR timestamps: %zu, matched ground truth timestamps: %zu, "
237
240
" from overall GT poses: %zu, removed %zu unmatched lidar "
238
241
" scans." ,
239
- lidarIdxsToRemove .size (), groundTruthTrajectory_.size (),
242
+ lstPointCloudFiles_ .size (), groundTruthTrajectory_.size (),
240
243
gtPoses.size (), lidarIdxsToRemove.size ());
241
244
}
242
245
else
0 commit comments