Update RT-DETR confidence threshold dynamically#65
Open
krishna-esrlabs wants to merge 1 commit into
Open
Conversation
Signed-off-by: Krishna Krothapalli <krishna.krothapalli@accenture.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@jaiveersinghNV @kajananchinniahNV
Description
This PR updates the RT-DETR decoder so runtime changes to the
confidence_thresholdparameter are applied without restarting the node.Previously,
confidence_thresholdwas declared and copied into theconfidence_threshold_member variable during node construction. As a result, running:ros2 param set /rtdetr_decoder confidence_threshold 0.75updated the ROS parameter value, but the decoder continued using the original startup value inside InputCallback().
This change adds a parameter callback that updates confidence_threshold_ when the parameter is changed.
Testing
Built the package, verified the parameter can be changed at runtime and confirmed that detections update without restarting the node.
results on the examples with the low threshold
ros2 param set /rtdetr_decoder confidence_threshold 0.1