Proactive Safety Framework  1.0
roi_details.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11 */
12 
13 #ifndef _ROI_DETAILS_H
14 #define _ROI_DETAILS_H
15 
16 #include <time.h>
17 #define MAX_LEN 16
18 
19 typedef struct roiDetails_t
20 {
21  unsigned int roiId;
22  char roiName[MAX_LEN];
23  unsigned int occupancy;
24  time_t timeStamp;
25 
26 }roiDetails;
27 
28 #endif
#define MAX_LEN
Definition: roi_details.h:17
Definition: roi_details.h:20
time_t timeStamp
Definition: roi_details.h:24
unsigned int roiId
Definition: roi_details.h:21
unsigned int occupancy
Definition: roi_details.h:23