Implement 3D Elevation Graph Support and Add ROS2 Costmap Publisher#3
Open
denaecantrell wants to merge 2 commits intonvidia-isaac:mainfrom
Open
Implement 3D Elevation Graph Support and Add ROS2 Costmap Publisher#3denaecantrell wants to merge 2 commits intonvidia-isaac:mainfrom
denaecantrell wants to merge 2 commits intonvidia-isaac:mainfrom
Conversation
rhua-nv
reviewed
Dec 1, 2025
Collaborator
rhua-nv
left a comment
There was a problem hiding this comment.
Could you please run the unit tests and the linter? Please see https://github.com/nvidia-isaac/SWAGGER/tree/main?tab=readme-ov-file#development
| ) | ||
| self._known_points: list[tuple[float, float]] = [] | ||
|
|
||
| def _debug_print(self, *args, **kwargs): |
Collaborator
There was a problem hiding this comment.
Please use self._logger.debug (configured here). To enable debug print, initialize the waypoint graph generator instance with logger_level=logging.DEBUG.
| image_height = image.shape[0] | ||
| self._y_offset = y_offset + (image_height * resolution) # Add image height in meters | ||
| #self._y_offset = y_offset + (image_height * resolution) # Add image height in meters | ||
| self._y_offset = y_offset |
Collaborator
There was a problem hiding this comment.
Could you explain the change?
| self._logger.info("Generating skeleton...") | ||
| try: | ||
| skeleton_image = thin((1 - self._inflated_map).view(cp.uint8)) | ||
| skeleton_image = thin((1 - inflated_map).view(cp.uint8)) |
Collaborator
There was a problem hiding this comment.
inflated_map is not defined in this function.
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.
Added new elevation integration + graph visualization improvements.