NVIDIA DriveWorks API: AutoNet Module
Description: This file defines the AutoNet module.
Definition in file AutoNet.h.
|
| DW_API_PUBLIC dwStatus | dwAutoNet_bindTensorTimestamp (dwAutoNetOutputHandle_t autonetOutput, dwTime_t tensorTimeStamp) |
| | Ties image timestamp to the autonet output tensor. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_createOutput (dwAutoNetOutputHandle_t *autonetOutput, dwAutoNetHandle_t obj) |
| | Allocates AutoNet output. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_destroyOutput (dwAutoNetOutputHandle_t autonetOutput) |
| | Destroys AutoNet output. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_getDNNMetaData (dwDNNMetaData *metaData, dwAutoNetHandle_t obj) |
| | Returns the DNN metadata. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_getInputBlobsize (dwBlobSize *inputBlobsize, dwAutoNetHandle_t obj) |
| | Returns input blob size that AutoNet expects. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_getInputTensorProperties (dwDNNTensorProperties *inputProps, dwAutoNetHandle_t obj) |
| | Returns input properties that AutoNet expects. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_getNumHeadOutputBlobs (uint32_t *numOutputBlobs, dwAutoNetHeadType headType, dwAutoNetHandle_t obj) |
| | Returns number of valid head outputs that AutoNet expects. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_getOutputTensorProperties (dwDNNTensorProperties *outputProps, dwAutoNetHeadType headType, dwAutoNetHandle_t obj) |
| | Returns output properties that AutoNet expects. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_getProcessorType (dwProcessorType *processorType, dwAutoNetHandle_t obj) |
| | Returns processor type that AutoNet runs on. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_inferAsync (dwAutoNetOutputHandle_t autonetOutput, dwConstDNNTensorHandle_t *inputTensors, dwAutoNetHandle_t obj) |
| | Runs inference on given list of input tensors. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_initDefaultParams (dwAutoNetParams *params) |
| | Initializes AutoNet parameters with default values. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_initialize (dwAutoNetHandle_t *autoNetHandle, const dwAutoNetParams *autoNetParams, dwContextHandle_t ctx) |
| | Initializes AutoNet module. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_release (dwAutoNetHandle_t obj) |
| | Releases the AutoNet module. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_reset (dwAutoNetHandle_t obj) |
| | Resets AutoNet. More...
|
| |
| DW_API_PUBLIC dwStatus | dwAutoNet_setCUDAStream (cudaStream_t stream, dwAutoNetHandle_t obj) |
| | Sets the CUDA stream for CUDA related operations. More...
|
| |