Skip to content

Commit

Permalink
fix(lidar_centerpoint, pointpainting): increase CAPACITY_POINT to avo…
Browse files Browse the repository at this point in the history
…id crashing (#1546)

Signed-off-by: Tomohito Ando <[email protected]>
  • Loading branch information
TomohitoAndo committed Oct 1, 2024
1 parent 80a4a78 commit 19c0a4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace image_projection_based_fusion
{
static constexpr size_t CAPACITY_POINT = 1000000;
static constexpr size_t CAPACITY_POINT = 2000000;
class PointPaintingTRT : public centerpoint::CenterPointTRT
{
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

namespace centerpoint
{
static constexpr size_t CAPACITY_POINT = 1000000;
static constexpr size_t CAPACITY_POINT = 2000000;

class NetworkParam
{
Expand Down

0 comments on commit 19c0a4b

Please sign in to comment.