Skip to content

Commit 040b9a4

Browse files
committed
Isaac ROS 2.0.0
1 parent 0e7abe8 commit 040b9a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+613
-1135
lines changed

README.md

Lines changed: 80 additions & 458 deletions
Large diffs are not rendered by default.

docs/model-preparation.md

Lines changed: 0 additions & 65 deletions
This file was deleted.

docs/tensorrt-and-triton-info.md

Lines changed: 0 additions & 45 deletions
This file was deleted.

docs/troubleshooting.md

Lines changed: 0 additions & 49 deletions
This file was deleted.

isaac_ros_dnn_encoders/CMakeLists.txt renamed to isaac_ros_dnn_image_encoder/CMakeLists.txt

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-FileCopyrightText: NVIDIA CORPORATION & AFFILIATES
2-
# Copyright (c) 2021-2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright (c) 2021-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,8 +15,8 @@
1515
#
1616
# SPDX-License-Identifier: Apache-2.0
1717

18-
cmake_minimum_required(VERSION 3.23.2)
19-
project(isaac_ros_dnn_encoders LANGUAGES C CXX)
18+
cmake_minimum_required(VERSION 3.22.1)
19+
project(isaac_ros_dnn_image_encoder LANGUAGES C CXX)
2020

2121
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
2222
add_compile_options(-Wall -Wextra -Wpedantic)
@@ -34,10 +34,16 @@ if(BUILD_TESTING)
3434
find_package(ament_lint_auto REQUIRED)
3535
ament_lint_auto_find_test_dependencies()
3636

37+
38+
# The FindPythonInterp and FindPythonLibs modules are removed
39+
if(POLICY CMP0148)
40+
cmake_policy(SET CMP0148 OLD)
41+
endif()
42+
3743
find_package(launch_testing_ament_cmake REQUIRED)
3844
add_launch_test(test/isaac_ros_dnn_image_encoder_test.py)
45+
add_launch_test(test/isaac_ros_dnn_image_encoder_image_crop_test.py)
3946
add_launch_test(test/isaac_ros_dnn_image_encoder_image_norm_test.py)
40-
add_launch_test(test/isaac_ros_dnn_image_encoder_image_resize_test.py)
4147
endif()
4248

4349
ament_auto_package(INSTALL_TO_SHARE config)

0 commit comments

Comments
 (0)