-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gRPC-based Endoscopy Tool Tracking application with Data Flow Tracking
Signed-off-by: Victor Chang <[email protected]>
- Loading branch information
Showing
25 changed files
with
1,612 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
35 changes: 35 additions & 0 deletions
35
applications/distributed/grpc/grpc_endoscopy_tool_tracking/CMakeLists.txt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
cmake_minimum_required(VERSION 3.20) | ||
project(grpc_endoscopy_tool_tracking LANGUAGES NONE) | ||
|
||
# Download the endoscopy sample data | ||
if(HOLOHUB_DOWNLOAD_DATASETS) | ||
include(holoscan_download_data) | ||
holoscan_download_data(endoscopy | ||
URL https://api.ngc.nvidia.com/v2/resources/nvidia/clara-holoscan/holoscan_endoscopy_sample_data/versions/20230222/zip | ||
DOWNLOAD_NAME holoscan_endoscopy_sample_data_20230222.zip | ||
URL_MD5 d54f84a562d29ed560a87d2607eba973 | ||
DOWNLOAD_DIR ${HOLOHUB_DATA_DIR} | ||
GENERATE_GXF_ENTITIES | ||
GXF_ENTITIES_HEIGHT 480 | ||
GXF_ENTITIES_WIDTH 854 | ||
GXF_ENTITIES_CHANNELS 3 | ||
GXF_ENTITIES_FRAMERATE 30 | ||
) | ||
endif() | ||
|
||
add_subdirectory(cpp) |
Oops, something went wrong.