We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 998b685 commit 50da18dCopy full SHA for 50da18d
nebula_common/include/nebula_common/hesai/hesai_common.hpp
@@ -219,6 +219,12 @@ struct HesaiCalibrationConfiguration : public HesaiCalibrationConfigurationBase
219
max = std::max(max, item.second);
220
}
221
222
+ // NOTE: Slightly widen the FOV padding because some LiDARs do not transmit blocks near the end
223
+ // of the FOV. If these blocks are missing, the point cloud may not be published at the desired
224
+ // timing.
225
+ min -= 1.0f;
226
+ max += 1.0f;
227
+
228
return {-max, -min};
229
230
};
0 commit comments