Skip to content

Commit db5d7eb

Browse files
committed
fix(lidar_centerpoint, pointpainting): increase CAPACITY_POINT to avoid crashing
Signed-off-by: Tomohito Ando <tomohito.ando@tier4.jp>
1 parent a71b2d5 commit db5d7eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

perception/image_projection_based_fusion/include/image_projection_based_fusion/pointpainting_fusion/pointpainting_trt.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace image_projection_based_fusion
2525
{
26-
static constexpr size_t CAPACITY_POINT = 1000000;
26+
static constexpr size_t CAPACITY_POINT = 2000000;
2727
class PointPaintingTRT : public centerpoint::CenterPointTRT
2828
{
2929
public:

perception/lidar_centerpoint/include/lidar_centerpoint/centerpoint_trt.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
namespace centerpoint
3434
{
35-
static constexpr size_t CAPACITY_POINT = 1000000;
35+
static constexpr size_t CAPACITY_POINT = 2000000;
3636

3737
class NetworkParam
3838
{

0 commit comments

Comments
 (0)