Real-time object detection with jetson tx2

I want to detect objects in real time. I am using the Jetson tx2 with Jetpack 4.2. And I completed training with my data according to object detection tutorial. But I don’t know what to do next.
How do I place my own object detector on jetson tx2?

Hi,

Do you mean TensorFlow object detection API?
If yes, please convert the model from .pb → uff → TensorRT engine.

You can find some example here:

/usr/src/tensorrt/samples/sampleUffSSD/
/usr/src/tensorrt/samples/python/uff_ssd/

Or this GitHub:

Thanks.