Dear Experts,
I have trained my custom data in Jetson Nano. Jetson Nano generated the model and labels. Now i want to load the model and labels in my C++ function. If i am right, I am using
detectNet* net = detectNet::create(models/ssd-mobilenet.onnx,
models/labels.txt,0.7,input ,inputDims , output,numDetections,DEFAULT_MAX_BATCH_SIZE, TYPE_FASTEST, DEVICE_GPU,true);
To me, Unknown variables are input, inputDims, output and numDetections. How to set these variable to call create function in detectNet.