diff --git a/nebula_common/include/nebula_common/hesai/hesai_common.hpp b/nebula_common/include/nebula_common/hesai/hesai_common.hpp index 79c3946c7..0ffa424f1 100644 --- a/nebula_common/include/nebula_common/hesai/hesai_common.hpp +++ b/nebula_common/include/nebula_common/hesai/hesai_common.hpp @@ -400,6 +400,10 @@ struct HesaiCorrection : public HesaiCalibrationConfigurationBase [[nodiscard]] std::tuple getFovPadding() const override { // TODO(mojomex): calculate instead of hard-coding + // The reason this is tricky is that an upper bound over all azimuth/elevation combinations has + // to be found. For other sensors, this is only a function of elevation, so the search space is + // tiny compared to AT128. We should be able to find an upper bound of `getAzimuthAdjustV3` but + // I have not invested the time for now. return {-5, 5}; } };