Skip to content

Commit

Permalink
Merge pull request #40 from NVIDIA-ISAAC-ROS/release-2.0.0
Browse files Browse the repository at this point in the history
Isaac ROS 2.0.0
  • Loading branch information
jaiveersinghNV authored Oct 19, 2023
2 parents d23f503 + 7de81d8 commit 0943be5
Show file tree
Hide file tree
Showing 28 changed files with 814 additions and 473 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@
**/resources/**/*.zstd filter=lfs diff=lfs merge=lfs -text
**/resources/**/*.db3 filter=lfs diff=lfs merge=lfs -text
**/resources/**/*.yaml filter=lfs diff=lfs merge=lfs -text
**/resources/**/*.bag filter=lfs diff=lfs merge=lfs -text
300 changes: 62 additions & 238 deletions README.md

Large diffs are not rendered by default.

64 changes: 0 additions & 64 deletions docs/tutorial-isaac-sim.md

This file was deleted.

68 changes: 0 additions & 68 deletions docs/tutorial-nitros-graph.md

This file was deleted.

55 changes: 0 additions & 55 deletions docs/tutorial-usb-cam.md

This file was deleted.

7 changes: 6 additions & 1 deletion isaac_ros_apriltag/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#
# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.23.2)
cmake_minimum_required(VERSION 3.22.1)
project(isaac_ros_apriltag LANGUAGES C CXX)

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Expand Down Expand Up @@ -58,6 +58,11 @@ if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()

# The FindPythonInterp and FindPythonLibs modules are removed
if(POLICY CMP0148)
cmake_policy(SET CMP0148 OLD)
endif()

find_package(launch_testing_ament_cmake REQUIRED)
add_launch_test(test/isaac_ros_apriltag_pipeline_test.py)
endif()
Expand Down
10 changes: 7 additions & 3 deletions isaac_ros_apriltag/config/apriltag_node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,18 @@ components:
parameters:
capacity: 12
policy: 0
- name: allocator
type: nvidia::gxf::UnboundedAllocator
- name: pool
type: nvidia::gxf::BlockMemoryPool
parameters:
storage_type: 0
block_size: 64
num_blocks: 2560
- name: cuda_april_tag_detector
type: nvidia::isaac::CudaAprilTagDetector
parameters:
camera_image: camera_image_info_in
april_tags: april_tags_out
allocator: allocator
allocator: pool
max_tags: 64
tile_size: 4
tag_dimensions: 0.22
Expand Down
Loading

0 comments on commit 0943be5

Please sign in to comment.