Skip to content

Commit

Permalink
feat: remove max rois limit in the image projection based fusion (#9596)
Browse files Browse the repository at this point in the history
feat: remove max rois limit

Signed-off-by: yoshiri <[email protected]>
  • Loading branch information
YoshiRi authored Dec 11, 2024
1 parent 6fa1a72 commit 386d2af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ FusionNode<TargetMsg3D, ObjType, Msg2D>::FusionNode(
}
if (rois_number_ > 8) {
RCLCPP_WARN(
this->get_logger(), "maximum rois_number is 8. current rois_number is %zu", rois_number_);
rois_number_ = 8;
this->get_logger(),
"Current rois_number is %zu. Large rois number may cause performance issue.", rois_number_);
}

// Set parameters
Expand Down

0 comments on commit 386d2af

Please sign in to comment.