Go to the source code of this file.
Data Structures | |
| struct | FullBatchBlock |
| struct | RoiProcessedBuf |
| struct | ReadyResult |
Macros | |
| #define | CUSTOM_CONFIG_SUBSAMPLE "subsample" |
| #define | CUSTOM_CONFIG_STRIDE "stride" |
| #define | CUSTOM_CONFIG_CHANNEL_SCALE_FACTORS "channel-scale-factors" |
| #define | CUSTOM_CONFIG_CHANNEL_MEANS "channel-mean-offsets" |
| #define | DSASSERT assert |
| #define | UNUSED(var) (void)(var) |
| #define | LOG_PRINT_(out, level, fmt, ...) fprintf(out, "%s:%d, [%s: CUSTOM_LIB] " fmt "\n", __FILE__, __LINE__, #level, ##__VA_ARGS__) |
| #define | LOG_DEBUG(fmt, ...) |
| #define | LOG_INFO(fmt, ...) LOG_PRINT_(stdout, INFO, fmt, ##__VA_ARGS__) |
| #define | LOG_ERROR(fmt, ...) LOG_PRINT_(stderr, ERROR, fmt, ##__VA_ARGS__) |
| #define | CHECK_PROCESS_ERROR(err, fmt, ...) |
| #define | CHECK_CUDA_ERR(err, fmt, ...) |
| #define | PROCESS_EXPORT_API __attribute__((__visibility__("default"))) |
| #define | NVDSPREPROCESS_SKIP_FRAME (NvDsPreProcessStatus)255 |
| #define | FRAME_NO_NOT_SET UINT64_MAX |
Typedefs | |
| using | SourceKey = std::tuple< uint64_t, int64_t, int64_t > |
| using | SrcDestBufMap = std::map< SourceKey, std::unique_ptr< RoiProcessedBuf > > |
| template<class T > | |
| using | UniqPtr = std::unique_ptr< T, std::function< void(T *)> > |
Variables | |
| bool | kEnableDebug |
| #define CHECK_CUDA_ERR | ( | err, | |
| fmt, | |||
| ... | |||
| ) |
Definition at line 78 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define CHECK_PROCESS_ERROR | ( | err, | |
| fmt, | |||
| ... | |||
| ) |
Definition at line 68 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define CUSTOM_CONFIG_CHANNEL_MEANS "channel-mean-offsets" |
Definition at line 44 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define CUSTOM_CONFIG_CHANNEL_SCALE_FACTORS "channel-scale-factors" |
Definition at line 43 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define CUSTOM_CONFIG_STRIDE "stride" |
Definition at line 42 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define CUSTOM_CONFIG_SUBSAMPLE "subsample" |
Definition at line 41 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define DSASSERT assert |
Definition at line 47 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define FRAME_NO_NOT_SET UINT64_MAX |
Definition at line 96 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define LOG_DEBUG | ( | fmt, | |
| ... | |||
| ) |
Definition at line 58 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define LOG_ERROR | ( | fmt, | |
| ... | |||
| ) | LOG_PRINT_(stderr, ERROR, fmt, ##__VA_ARGS__) |
Definition at line 65 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define LOG_INFO | ( | fmt, | |
| ... | |||
| ) | LOG_PRINT_(stdout, INFO, fmt, ##__VA_ARGS__) |
Definition at line 63 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define LOG_PRINT_ | ( | out, | |
| level, | |||
| fmt, | |||
| ... | |||
| ) | fprintf(out, "%s:%d, [%s: CUSTOM_LIB] " fmt "\n", __FILE__, __LINE__, #level, ##__VA_ARGS__) |
Definition at line 55 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define NVDSPREPROCESS_SKIP_FRAME (NvDsPreProcessStatus)255 |
Definition at line 93 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define PROCESS_EXPORT_API __attribute__((__visibility__("default"))) |
Definition at line 90 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| #define UNUSED | ( | var | ) | (void)(var) |
Definition at line 50 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| using SourceKey = std::tuple<uint64_t, int64_t, int64_t> |
Definition at line 99 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| using SrcDestBufMap = std::map<SourceKey, std::unique_ptr<RoiProcessedBuf> > |
Definition at line 150 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| using UniqPtr = std::unique_ptr<T, std::function<void(T*)> > |
Definition at line 154 of file sources/apps/sample_apps/deepstream-3d-action-recognition/custom_sequence_preprocess/seq_process_common.h.
| bool kEnableDebug |