Jetson inference car detect

We are conducting vehicle detection by installing the Jetson reference of Jetson Nano. I’d like to designate an area so that vehicles can be detected only in certain areas, is there a good way?

Hi yujy9014, one such way is by cropping the input video frame to your Region of Interest (ROI), and sending that cropped frame to detectNet. Otherwise you could just filter/reject the detected objects from the full frame that lie outside of your ROI.

See here to use the cudaCrop() function to crop the image: