Jetson Nano RTSP in institutional network not working

Hi I am trying to deploy a people presence detector using jetson-inference by using CCTV (hikvision) cameras available in my college. I got access to the CCTV cameras along with the IP of their DVR. All are analog cameras so I am only able to access them via the DVR I have the IP of DVR as (10.0.0.2) and I saw it supports RTSP at port 554. I tried to get the RTSP url and tried to run it on vlc in windows and it worked with the following url (rtsp://admin:admin@123@10.0.0.2:554/Streaming/channels/1201) and was able to successfully access it. Now when I tried to run the same thing in jetson nano I got errors vlc crashed and with video-player it gave the error that there is nothing to read or write and sometimes it gave Unauthorized error. Even gst-launch-1.0 also resulted in the same error.

Then after coming home I tried to reproduce it in my home network. I used the IP Camera app on android as it supported RTSP. I gave it IP 192.168.0.5:8080. I was able to get it working with video-viewer with the following command video-viewer rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp --input-codec=h264. It worked without any issue. Then I tried to use it with my script

#!/usr/bin/env python3
import jetson.inference
import jetson.utils
import RPi.GPIO as GPIO
import time

# set up the GPIO pin for the LED
led_pin = 24
GPIO.setmode(GPIO.BCM)
GPIO.setup(led_pin, GPIO.OUT)

net = jetson.inference.detectNet("ssd-mobilenet-v2", threshold=0.5)
camera = jetson.utils.videoSource("rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp", argv=['--input-codec=H264'])
#camera = jetson.utils.videoSource("csi://0")
display = jetson.utils.videoOutput("display://0") 
info = jetson.utils.cudaFont()

human = ['person']

# timestamp for last detection
last_detection_time = time.time()

while display.IsStreaming():
    img = camera.Capture()
    detections = net.Detect(img)
    current_time = time.time()
    if current_time - last_detection_time >= 2:  # check if 2 seconds have passed since last detection
        person_detected = False
        for detection in detections:
            class_desc = net.GetClassDesc(detection.ClassID)
            print("[+] ", class_desc)
            if class_desc in human:
                print("[*] person detected")
                person_detected = True
                last_detection_time = current_time  # update timestamp for last detection
                break
        if person_detected:
            print("[*] Turing led on")
            GPIO.output(led_pin, GPIO.HIGH) # turn on the LED
        else:
            print("[-] Turing Led off")
            GPIO.output(led_pin, GPIO.LOW) # turn off the LED
    display.Render(img)	
    display.SetStatus("Object Detection | Network {:.0f} FPS".format(net.GetNetworkFPS()))

I am not able to view the display output when running the script. Also it printed a lot of gibberish on the terminal output attached here. I tried the gst-launch-1.0 command but get an internal data stream error

ERROR: from element /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0/GstUDPSrc:udpsrc4: Internal data stream error.
Additional debug info:
gstbasesrc.c(3055): gst_base_src_loop (): /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0/GstUDPSrc:udpsrc4:
streaming stopped, reason not-linked (-1)

But gst-play worked flawlessly with this command

$ gst-play-1.0 rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp

What should I do now?
Hope I was able to explain my issue clearly!
Thanks
Kanak

Hi @ideatic_memory.cv0l1, I’m not able to view pastebin, can you post it here please? Thanks.

Can you try running these?

detectnet rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp --input-codec=h264

detectnet.py rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp --input-codec=h264

If it prints out a lot of stuff at the beginning, let it run - TensorRT is probably just optimizing the DNN model (it does this the first time you load a model - but on subsequent runs, it should start up faster)

The link is working fine for me I even tried in other devices can you please recheck. The output is of 200 lines so it would be very long to paste it here.

With the following command

detectnet rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp --input-codec=h264

I was able to get the video output of the RTSP stream but with the python one I was not able to get the video output. I have attached the output logs in this link.
In both the cases I got the following error

nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found

NVIDIA blocks access to that site, so I can’t see it, sorry. You can post it <code></code> tags here if you still need to.

Does video-viewer.py work for you? In your Python script, can you try creating the videoSource interface before the model?

Alright I have pasted the output

warning:  importing jetson.utils is deprecated.  please 'import jetson_utils' instead.
warning:  importing jetson.inference is deprecated.  please 'import jetson_inference' instead.
/usr/lib/python3/dist-packages/Jetson/GPIO/gpio.py:386: RuntimeWarning: This channel is already in use, continuing anyway. Use GPIO.setwarnings(False) to disable warnings
  RuntimeWarning)
jetson.inference -- detectNet loading build-in network 'ssd-mobilenet-v2'

detectNet -- loading detection network model from:
          -- model        networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
          -- input_blob   'Input'
          -- output_blob  'NMS'
          -- output_count 'NMS_1'
          -- class_labels networks/SSD-Mobilenet-v2/ssd_coco_labels.txt
          -- threshold    0.500000
          -- batch_size   1

[TRT]    TensorRT version 8.2.1
[TRT]    loading NVIDIA plugins...
[TRT]    Registered plugin creator - ::GridAnchor_TRT version 1
[TRT]    Registered plugin creator - ::GridAnchorRect_TRT version 1
[TRT]    Registered plugin creator - ::NMS_TRT version 1
[TRT]    Registered plugin creator - ::Reorg_TRT version 1
[TRT]    Registered plugin creator - ::Region_TRT version 1
[TRT]    Registered plugin creator - ::Clip_TRT version 1
[TRT]    Registered plugin creator - ::LReLU_TRT version 1
[TRT]    Registered plugin creator - ::PriorBox_TRT version 1
[TRT]    Registered plugin creator - ::Normalize_TRT version 1
[TRT]    Registered plugin creator - ::ScatterND version 1
[TRT]    Registered plugin creator - ::RPROI_TRT version 1
[TRT]    Registered plugin creator - ::BatchedNMS_TRT version 1
[TRT]    Registered plugin creator - ::BatchedNMSDynamic_TRT version 1
[TRT]    Could not register plugin creator -  ::FlattenConcat_TRT version 1
[TRT]    Registered plugin creator - ::CropAndResize version 1
[TRT]    Registered plugin creator - ::DetectionLayer_TRT version 1
[TRT]    Registered plugin creator - ::EfficientNMS_TRT version 1
[TRT]    Registered plugin creator - ::EfficientNMS_ONNX_TRT version 1
[TRT]    Registered plugin creator - ::EfficientNMS_TFTRT_TRT version 1
[TRT]    Registered plugin creator - ::Proposal version 1
[TRT]    Registered plugin creator - ::ProposalLayer_TRT version 1
[TRT]    Registered plugin creator - ::PyramidROIAlign_TRT version 1
[TRT]    Registered plugin creator - ::ResizeNearest_TRT version 1
[TRT]    Registered plugin creator - ::Split version 1
[TRT]    Registered plugin creator - ::SpecialSlice_TRT version 1
[TRT]    Registered plugin creator - ::InstanceNormalization_TRT version 1
[TRT]    detected model format - UFF  (extension '.uff')
[TRT]    desired precision specified for GPU: FASTEST
[TRT]    requested fasted precision for device GPU without providing valid calibrator, disabling INT8
[TRT]    [MemUsageChange] Init CUDA: CPU +230, GPU +0, now: CPU 254, GPU 3780 (MiB)
[TRT]    [MemUsageSnapshot] Begin constructing builder kernel library: CPU 254 MiB, GPU 3809 MiB
[TRT]    [MemUsageSnapshot] End constructing builder kernel library: CPU 284 MiB, GPU 3837 MiB
[TRT]    native precisions detected for GPU:  FP32, FP16
[TRT]    selecting fastest native precision for GPU:  FP16
[TRT]    found engine cache file networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.1.1.8201.GPU.FP16.engine
[TRT]    found model checksum networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.sha256sum
[TRT]    echo "$(cat networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.sha256sum) networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff" | sha256sum --check --status
[TRT]    model matched checksum networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.sha256sum
[TRT]    loading network plan from engine cache... networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.1.1.8201.GPU.FP16.engine
[TRT]    device GPU, loaded networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    [MemUsageChange] Init CUDA: CPU +0, GPU +0, now: CPU 288, GPU 3886 (MiB)
[TRT]    Loaded engine size: 33 MiB
[TRT]    Using cublas as a tactic source
[TRT]    [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +158, GPU +9, now: CPU 465, GPU 3893 (MiB)
[TRT]    Using cuDNN as a tactic source
[TRT]    [MemUsageChange] Init cuDNN: CPU +240, GPU -91, now: CPU 705, GPU 3802 (MiB)
[TRT]    Deserialization required 5247470 microseconds.
[TRT]    [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +33, now: CPU 0, GPU 33 (MiB)
[TRT]    Using cublas as a tactic source
[TRT]    [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 705, GPU 3789 (MiB)
[TRT]    Using cuDNN as a tactic source
[TRT]    [MemUsageChange] Init cuDNN: CPU +0, GPU -1, now: CPU 705, GPU 3788 (MiB)
[TRT]    Total per-runner device persistent memory is 22143488
[TRT]    Total per-runner host persistent memory is 127808
[TRT]    Allocated activation device memory of size 13360640
[TRT]    [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +34, now: CPU 0, GPU 67 (MiB)
[TRT]    
[TRT]    CUDA engine context initialized on device GPU:
[TRT]       -- layers       124
[TRT]       -- maxBatchSize 1
[TRT]       -- deviceMemory 13360640
[TRT]       -- bindings     3
[TRT]       binding 0
                -- index   0
                -- name    'Input'
                -- type    FP32
                -- in/out  INPUT
                -- # dims  3
                -- dim #0  3
                -- dim #1  300
                -- dim #2  300
[TRT]       binding 1
                -- index   1
                -- name    'NMS'
                -- type    FP32
                -- in/out  OUTPUT
                -- # dims  3
                -- dim #0  1
                -- dim #1  100
                -- dim #2  7
[TRT]       binding 2
                -- index   2
                -- name    'NMS_1'
                -- type    FP32
                -- in/out  OUTPUT
                -- # dims  3
                -- dim #0  1
                -- dim #1  1
                -- dim #2  1
[TRT]    
[TRT]    binding to input 0 Input  binding index:  0
[TRT]    binding to input 0 Input  dims (b=1 c=3 h=300 w=300) size=1080000
[TRT]    binding to output 0 NMS  binding index:  1
[TRT]    binding to output 0 NMS  dims (b=1 c=1 h=100 w=7) size=2800
[TRT]    binding to output 1 NMS_1  binding index:  2
[TRT]    binding to output 1 NMS_1  dims (b=1 c=1 h=1 w=1) size=4
[TRT]    
[TRT]    device GPU, networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff initialized.
[TRT]    W = 7  H = 100  C = 1
[TRT]    detectNet -- maximum bounding boxes:   100
[TRT]    loaded 91 class labels
[TRT]    detectNet -- number of object classes:  91
[TRT]    loaded 0 class colors
[TRT]    didn't load expected number of class colors  (0 of 91)
[TRT]    filling in remaining 91 class colors with default colors
[gstreamer] initialized gstreamer, version 1.14.5.0
[gstreamer] gstDecoder -- creating decoder for admin:admin123@192.168.0.5
Opening in BLOCKING MODE 
NvMMLiteOpen : Block : BlockType = 261 
NVMEDIA: Reading vendor.tegra.display-size : status: 6 
NvMMLiteBlockCreate : Block : BlockType = 261 
reference in DPB was never decoded
[gstreamer] gstDecoder -- discovered video resolution: 1920x1080  (framerate 0.000000 Hz)
[gstreamer] gstDecoder -- discovered video caps:  video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, level=(string)4, profile=(string)baseline, width=(int)1920, height=(int)1080, framerate=(fraction)0/1, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
[gstreamer] gstDecoder -- pipeline string:
[gstreamer] rtspsrc location=rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp latency=2000 ! queue ! rtph264depay ! h264parse ! omxh264dec ! video/x-raw(memory:NVMM) ! appsink name=mysink
[video]  created gstDecoder from rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp
------------------------------------------------
gstDecoder video options:
------------------------------------------------
  -- URI: rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp
     - protocol:  rtsp
     - location:  admin:admin123@192.168.0.5
     - port:      8080
  -- deviceType: ip
  -- ioType:     input
  -- codec:      h264
  -- width:      1920
  -- height:     1080
  -- frameRate:  0.000000
  -- bitRate:    0
  -- numBuffers: 4
  -- zeroCopy:   true
  -- flipMethod: none
  -- loop:       0
  -- rtspLatency 2000
------------------------------------------------
[OpenGL] glDisplay -- X screen 0 resolution:  1920x1080
[OpenGL] glDisplay -- X window resolution:    1920x1080
[OpenGL] failed to create X11 Window.
jetson.utils -- no output streams, creating fake null output
[gstreamer] opening gstDecoder for streaming, transitioning pipeline to GST_STATE_PLAYING
[gstreamer] gstreamer changed state from NULL to READY ==> mysink
[gstreamer] gstreamer changed state from NULL to READY ==> capsfilter1
[gstreamer] gstreamer changed state from NULL to READY ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from NULL to READY ==> h264parse1
[gstreamer] gstreamer changed state from NULL to READY ==> rtph264depay1
[gstreamer] gstreamer changed state from NULL to READY ==> queue0
[gstreamer] gstreamer changed state from NULL to READY ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> pipeline0
[gstreamer] gstreamer changed state from READY to PAUSED ==> capsfilter1
[gstreamer] gstreamer changed state from READY to PAUSED ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from READY to PAUSED ==> h264parse1
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtph264depay1
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtspsrc0
[gstreamer] gstreamer changed state from READY to PAUSED ==> pipeline0
[gstreamer] gstreamer message new-clock ==> pipeline0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> capsfilter1
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> h264parse1
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtph264depay1
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0

(python3:13230): GStreamer-CRITICAL **: 22:15:39.909: gst_caps_is_empty: assertion 'GST_IS_CAPS (caps)' failed

(python3:13230): GStreamer-CRITICAL **: 22:15:39.909: gst_caps_truncate: assertion 'GST_IS_CAPS (caps)' failed

(python3:13230): GStreamer-CRITICAL **: 22:15:39.909: gst_caps_fixate: assertion 'GST_IS_CAPS (caps)' failed

(python3:13230): GStreamer-CRITICAL **: 22:15:39.909: gst_caps_get_structure: assertion 'GST_IS_CAPS (caps)' failed

(python3:13230): GStreamer-CRITICAL **: 22:15:39.909: gst_structure_get_string: assertion 'structure != NULL' failed

(python3:13230): GStreamer-CRITICAL **: 22:15:39.909: gst_mini_object_unref: assertion 'mini_object != NULL' failed
NvMMLiteOpen : Block : BlockType = 261 
NVMEDIA: Reading vendor.tegra.display-size : status: 6 
NvMMLiteBlockCreate : Block : BlockType = 261 
Allocating new output: 1920x1088 (x 8), ThumbnailMode = 0
OPENMAX: HandleNewStreamFormat: 3605: Send OMX_EventPortSettingsChanged: nFrameWidth = 1920, nFrameHeight = 1080 
reference in DPB was never decoded
[gstreamer] gstDecoder -- onPreroll()
[gstreamer] gstreamer changed state from NULL to READY ==> manager
[gstreamer] gstreamer changed state from READY to PAUSED ==> manager
[gstreamer] gstreamer changed state from NULL to READY ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpsession2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpsession2
[gstreamer] gstreamer changed state from NULL to READY ==> funnel4
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel4
[gstreamer] gstreamer changed state from NULL to READY ==> funnel5
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel5
[gstreamer] gstreamer changed state from NULL to READY ==> rtpstorage2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpstorage2
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpsession3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpsession3
[gstreamer] gstreamer changed state from NULL to READY ==> funnel6
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel6
[gstreamer] gstreamer changed state from NULL to READY ==> funnel7
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel7
[gstreamer] gstreamer changed state from NULL to READY ==> rtpstorage3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpstorage3
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> udpsink4
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsink4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsink4
[gstreamer] gstreamer changed state from NULL to READY ==> fakesrc2
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> fakesrc2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> fakesrc2
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from NULL to READY ==> udpsink6
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsink6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsink6
[gstreamer] gstreamer changed state from NULL to READY ==> fakesrc3
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> fakesrc3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> fakesrc3
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpstorage3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpsession3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel7
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpstorage2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpsession2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel5
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> manager
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc6
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc7
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc7
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc9
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc9
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc10
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc10
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message element ==> rtpsession2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpptdemux2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpptdemux2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpptdemux2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpjitterbuffer2
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpjitterbuffer2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpjitterbuffer2
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer message element ==> rtpsession3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpptdemux3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpptdemux3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpptdemux3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpjitterbuffer3
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpjitterbuffer3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpjitterbuffer3
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer message stream-start ==> pipeline0
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer mysink taglist, video-codec=(string)"H.264\ \(Baseline\ Profile\)";
[gstreamer] gstBufferManager -- map buffer size was less than max size (1008 vs 3110400)
[gstreamer] gstBufferManager recieve caps:  video/x-raw(memory:NVMM), format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)mpeg2, colorimetry=(string)bt709, framerate=(fraction)0/1
[gstreamer] gstBufferManager -- recieved first frame, codec=h264 format=nv12 width=1920 height=1080 size=3110400
[gstreamer] gstBufferManager -- recieved NVMM memory
RingBuffer -- allocated 4 buffers (8 bytes each, 32 bytes total)
[gstreamer] gstreamer changed state from READY to PAUSED ==> mysink
[gstreamer] gstreamer message async-done ==> pipeline0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> mysink
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> pipeline0
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
RingBuffer -- allocated 4 buffers (6220800 bytes each, 24883200 bytes total)
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  laptop
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  laptop
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  tv
[-] Turing Led off
[+]  tv
[-] Turing Led off
[+]  tv
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
[-] Turing Led off
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[-] Turing Led off
[-] Turing Led off
[+]  person
[*] person detected
[*] Turing led on
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  person
[*] person detected
[*] Turing led on
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[+]  person
[*] person detected
[*] Turing led on
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
^Cnvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
Traceback (most recent call last):
  File "cctv.py", line 27, in <module>
    detections = net.Detect(img)
KeyboardInterrupt
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1274 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1254 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1256 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1258 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1260 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1262 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1264 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1266 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[gstreamer] gstDecoder -- stopping pipeline, transitioning to GST_STATE_NULL
nvbuf_utils: dmabuf_fd 1268 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1270 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1272 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[gstreamer] gstDecoder -- onPreroll()
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> capsfilter1
[gstreamer] gstDecoder -- pipeline stopped

I get the following output with video-viewer.py I got those nvbuf_utils failed thing for a while but then it stopped coming a few seconds after I was able to get the display output of rtsp stream

$ video-viewer.py  rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp --input-codec=h264
[gstreamer] initialized gstreamer, version 1.14.5.0
[gstreamer] gstDecoder -- creating decoder for admin:admin123@192.168.0.5
Opening in BLOCKING MODE 
NvMMLiteOpen : Block : BlockType = 261 
NVMEDIA: Reading vendor.tegra.display-size : status: 6 
NvMMLiteBlockCreate : Block : BlockType = 261 
reference in DPB was never decoded
[gstreamer] gstDecoder -- discovered video resolution: 1920x1080  (framerate 0.000000 Hz)
[gstreamer] gstDecoder -- discovered video caps:  video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, level=(string)4, profile=(string)baseline, width=(int)1920, height=(int)1080, framerate=(fraction)0/1, interlace-mode=(string)progressive, chroma-format=(string)4:2:0, bit-depth-luma=(uint)8, bit-depth-chroma=(uint)8, parsed=(boolean)true
[gstreamer] gstDecoder -- pipeline string:
[gstreamer] rtspsrc location=rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp latency=2000 ! queue ! rtph264depay ! h264parse ! omxh264dec ! video/x-raw(memory:NVMM) ! appsink name=mysink
[video]  created gstDecoder from rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp
------------------------------------------------
gstDecoder video options:
------------------------------------------------
  -- URI: rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp
     - protocol:  rtsp
     - location:  admin:admin123@192.168.0.5
     - port:      8080
  -- deviceType: ip
  -- ioType:     input
  -- codec:      h264
  -- width:      1920
  -- height:     1080
  -- frameRate:  0.000000
  -- bitRate:    0
  -- numBuffers: 4
  -- zeroCopy:   true
  -- flipMethod: none
  -- loop:       0
  -- rtspLatency 2000
------------------------------------------------
[OpenGL] glDisplay -- X screen 0 resolution:  1920x1080
[OpenGL] glDisplay -- X window resolution:    1920x1080
[OpenGL] glDisplay -- display device initialized (1920x1080)
[video]  created glDisplay from display://0
------------------------------------------------
glDisplay video options:
------------------------------------------------
  -- URI: display://0
     - protocol:  display
     - location:  0
  -- deviceType: display
  -- ioType:     output
  -- codec:      raw
  -- width:      1920
  -- height:     1080
  -- frameRate:  0.000000
  -- bitRate:    0
  -- numBuffers: 4
  -- zeroCopy:   true
  -- flipMethod: none
  -- loop:       0
  -- rtspLatency 2000
------------------------------------------------
[gstreamer] opening gstDecoder for streaming, transitioning pipeline to GST_STATE_PLAYING
[gstreamer] gstreamer changed state from NULL to READY ==> mysink
[gstreamer] gstreamer changed state from NULL to READY ==> capsfilter1
[gstreamer] gstreamer changed state from NULL to READY ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from NULL to READY ==> h264parse1
[gstreamer] gstreamer changed state from NULL to READY ==> rtph264depay1
[gstreamer] gstreamer changed state from NULL to READY ==> queue0
[gstreamer] gstreamer changed state from NULL to READY ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> pipeline0
[gstreamer] gstreamer changed state from READY to PAUSED ==> capsfilter1
[gstreamer] gstreamer changed state from READY to PAUSED ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from READY to PAUSED ==> h264parse1
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtph264depay1
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtspsrc0
[gstreamer] gstreamer changed state from READY to PAUSED ==> pipeline0
[gstreamer] gstreamer message new-clock ==> pipeline0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> capsfilter1
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> h264parse1
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtph264depay1
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0

(python3:13626): GStreamer-CRITICAL **: 19:33:28.197: gst_caps_is_empty: assertion 'GST_IS_CAPS (caps)' failed

(python3:13626): GStreamer-CRITICAL **: 19:33:28.197: gst_caps_truncate: assertion 'GST_IS_CAPS (caps)' failed

(python3:13626): GStreamer-CRITICAL **: 19:33:28.197: gst_caps_fixate: assertion 'GST_IS_CAPS (caps)' failed

(python3:13626): GStreamer-CRITICAL **: 19:33:28.197: gst_caps_get_structure: assertion 'GST_IS_CAPS (caps)' failed

(python3:13626): GStreamer-CRITICAL **: 19:33:28.197: gst_structure_get_string: assertion 'structure != NULL' failed

(python3:13626): GStreamer-CRITICAL **: 19:33:28.197: gst_mini_object_unref: assertion 'mini_object != NULL' failed
NvMMLiteOpen : Block : BlockType = 261 
NVMEDIA: Reading vendor.tegra.display-size : status: 6 
NvMMLiteBlockCreate : Block : BlockType = 261 
Allocating new output: 1920x1088 (x 8), ThumbnailMode = 0
OPENMAX: HandleNewStreamFormat: 3605: Send OMX_EventPortSettingsChanged: nFrameWidth = 1920, nFrameHeight = 1080 
reference in DPB was never decoded
[gstreamer] gstDecoder -- onPreroll()
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> manager
[gstreamer] gstreamer changed state from READY to PAUSED ==> manager
[gstreamer] gstreamer changed state from NULL to READY ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpsession2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpsession2
[gstreamer] gstreamer changed state from NULL to READY ==> funnel4
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel4
[gstreamer] gstreamer changed state from NULL to READY ==> funnel5
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel5
[gstreamer] gstreamer changed state from NULL to READY ==> rtpstorage2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpstorage2
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpsession3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpsession3
[gstreamer] gstreamer changed state from NULL to READY ==> funnel6
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel6
[gstreamer] gstreamer changed state from NULL to READY ==> funnel7
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel7
[gstreamer] gstreamer changed state from NULL to READY ==> rtpstorage3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpstorage3
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> udpsink4
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsink4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsink4
[gstreamer] gstreamer changed state from NULL to READY ==> fakesrc2
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> fakesrc2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> fakesrc2
[gstreamer] gstreamer changed state from NULL to READY ==> udpsink6
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsink6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsink6
[gstreamer] gstreamer changed state from NULL to READY ==> fakesrc3
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> fakesrc3
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> fakesrc3
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpstorage3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpsession3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel7
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpstorage2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpsession2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel5
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> manager
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc4
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc5
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc5
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc6
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc7
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc7
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message element ==> rtpsession2
[gstreamer] gstreamer message element ==> rtpsession3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpptdemux2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpptdemux2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpptdemux2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpjitterbuffer2
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpjitterbuffer2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpjitterbuffer2
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from NULL to READY ==> rtpptdemux3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpptdemux3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpptdemux3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpjitterbuffer3
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpjitterbuffer3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpjitterbuffer3
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer message stream-start ==> pipeline0
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer mysink taglist, video-codec=(string)"H.264\ \(Baseline\ Profile\)";
[gstreamer] gstBufferManager -- map buffer size was less than max size (1008 vs 3110400)
[gstreamer] gstBufferManager recieve caps:  video/x-raw(memory:NVMM), format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)mpeg2, colorimetry=(string)bt709, framerate=(fraction)0/1
[gstreamer] gstBufferManager -- recieved first frame, codec=h264 format=nv12 width=1920 height=1080 size=3110400
[gstreamer] gstBufferManager -- recieved NVMM memory
RingBuffer -- allocated 4 buffers (8 bytes each, 32 bytes total)
[gstreamer] gstreamer changed state from READY to PAUSED ==> mysink
[gstreamer] gstreamer message async-done ==> pipeline0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> mysink
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> pipeline0
nvbuf_utils: dmabuf_fd 1087 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1089 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1085 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1091 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
RingBuffer -- allocated 4 buffers (6220800 bytes each, 24883200 bytes total)
[OpenGL] creating 1920x1080 texture (GL_RGB8 format, 6220800 bytes)
[cuda]   registered openGL texture for interop access (1920x1080, GL_RGB8, 6220800 bytes)
nvbuf_utils: dmabuf_fd 1093 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1095 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
nvbuf_utils: dmabuf_fd 1091 mapped entry NOT found
nvbuf_utils: NvReleaseFd Failed... Exiting...
[gstreamer] gstBufferManager -- failed to retrieve timestamp buffer (default to 0)
[OpenGL] glDisplay -- the window has been closed
[gstreamer] gstDecoder -- stopping pipeline, transitioning to GST_STATE_NULL
[gstreamer] gstDecoder -- onPreroll()
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> capsfilter1
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> h264parse1
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> rtph264depay1
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> rtspsrc0
[gstreamer] gstreamer changed state from PLAYING to PAUSED ==> pipeline0
[gstreamer] gstDecoder -- pipeline stopped

OK thanks, due to the number of those dmabuf messages you are getting, I recommend rebuilding jetson-inference with -DENABLE_NVMM=off:

cd jetson-inference/build
cmake -DENABLE_NVMM=off ../
make
sudo make install

If that still doesn’t help, try changing your Python script so that the videoSource interface is created before the detectNet model.

I rebuilt it with the -DENABLE_NVMM=off flag. But still in detectnet.py I am unable to get the display output and the video interface is created before the model is created.
I am getting the error as device not ready (error 600)

$ detectnet.py rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp --input-codec=h264
[gstreamer] initialized gstreamer, version 1.14.5.0
[gstreamer] gstDecoder -- creating decoder for admin:admin123@192.168.0.5
[gstreamer] gstDecoder -- failed to discover any video streams
[gstreamer] gstDecoder -- pipeline string:
[gstreamer] rtspsrc location=rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp latency=2000 ! queue ! rtph264depay ! h264parse ! omxh264dec ! video/x-raw ! appsink name=mysink
[video]  created gstDecoder from rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp
------------------------------------------------
gstDecoder video options:
------------------------------------------------
  -- URI: rtsp://admin:admin123@192.168.0.5:8080/h264_pcm.sdp
     - protocol:  rtsp
     - location:  admin:admin123@192.168.0.5
     - port:      8080
  -- deviceType: ip
  -- ioType:     input
  -- codec:      h264
  -- width:      0
  -- height:     0
  -- frameRate:  0.000000
  -- bitRate:    0
  -- numBuffers: 4
  -- zeroCopy:   true
  -- flipMethod: none
  -- loop:       0
  -- rtspLatency 2000
------------------------------------------------
[OpenGL] glDisplay -- X screen 0 resolution:  1920x1080
[OpenGL] glDisplay -- X window resolution:    1920x1080
[OpenGL] failed to create X11 Window.
jetson.utils -- no output streams, creating fake null output

detectNet -- loading detection network model from:
          -- model        networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
          -- input_blob   'Input'
          -- output_blob  'NMS'
          -- output_count 'NMS_1'
          -- class_labels networks/SSD-Mobilenet-v2/ssd_coco_labels.txt
          -- threshold    0.500000
          -- batch_size   1

[TRT]    TensorRT version 8.2.1
[TRT]    loading NVIDIA plugins...
[TRT]    Registered plugin creator - ::GridAnchor_TRT version 1
[TRT]    Registered plugin creator - ::GridAnchorRect_TRT version 1
[TRT]    Registered plugin creator - ::NMS_TRT version 1
[TRT]    Registered plugin creator - ::Reorg_TRT version 1
[TRT]    Registered plugin creator - ::Region_TRT version 1
[TRT]    Registered plugin creator - ::Clip_TRT version 1
[TRT]    Registered plugin creator - ::LReLU_TRT version 1
[TRT]    Registered plugin creator - ::PriorBox_TRT version 1
[TRT]    Registered plugin creator - ::Normalize_TRT version 1
[TRT]    Registered plugin creator - ::ScatterND version 1
[TRT]    Registered plugin creator - ::RPROI_TRT version 1
[TRT]    Registered plugin creator - ::BatchedNMS_TRT version 1
[TRT]    Registered plugin creator - ::BatchedNMSDynamic_TRT version 1
[TRT]    Could not register plugin creator -  ::FlattenConcat_TRT version 1
[TRT]    Registered plugin creator - ::CropAndResize version 1
[TRT]    Registered plugin creator - ::DetectionLayer_TRT version 1
[TRT]    Registered plugin creator - ::EfficientNMS_TRT version 1
[TRT]    Registered plugin creator - ::EfficientNMS_ONNX_TRT version 1
[TRT]    Registered plugin creator - ::EfficientNMS_TFTRT_TRT version 1
[TRT]    Registered plugin creator - ::Proposal version 1
[TRT]    Registered plugin creator - ::ProposalLayer_TRT version 1
[TRT]    Registered plugin creator - ::PyramidROIAlign_TRT version 1
[TRT]    Registered plugin creator - ::ResizeNearest_TRT version 1
[TRT]    Registered plugin creator - ::Split version 1
[TRT]    Registered plugin creator - ::SpecialSlice_TRT version 1
[TRT]    Registered plugin creator - ::InstanceNormalization_TRT version 1
[TRT]    detected model format - UFF  (extension '.uff')
[TRT]    desired precision specified for GPU: FASTEST
[TRT]    requested fasted precision for device GPU without providing valid calibrator, disabling INT8
[TRT]    [MemUsageChange] Init CUDA: CPU +229, GPU +0, now: CPU 259, GPU 3326 (MiB)
[TRT]    [MemUsageSnapshot] Begin constructing builder kernel library: CPU 259 MiB, GPU 3353 MiB
[TRT]    [MemUsageSnapshot] End constructing builder kernel library: CPU 289 MiB, GPU 3383 MiB
[TRT]    native precisions detected for GPU:  FP32, FP16
[TRT]    selecting fastest native precision for GPU:  FP16
[TRT]    found engine cache file networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.1.1.8201.GPU.FP16.engine
[TRT]    found model checksum networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.sha256sum
[TRT]    echo "$(cat networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.sha256sum) networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff" | sha256sum --check --status
[TRT]    model matched checksum networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.sha256sum
[TRT]    loading network plan from engine cache... networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff.1.1.8201.GPU.FP16.engine
[TRT]    device GPU, loaded networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    [MemUsageChange] Init CUDA: CPU +0, GPU +0, now: CPU 294, GPU 3511 (MiB)
[TRT]    Loaded engine size: 33 MiB
[TRT]    Using an engine plan file across different models of devices is not recommended and is likely to affect performance or even cause errors.
[TRT]    Using cublas as a tactic source
[TRT]    [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +158, GPU +19, now: CPU 470, GPU 3536 (MiB)
[TRT]    Using cuDNN as a tactic source
[TRT]    [MemUsageChange] Init cuDNN: CPU +241, GPU +243, now: CPU 711, GPU 3779 (MiB)
[TRT]    Deserialization required 2692056 microseconds.
[TRT]    [MemUsageChange] TensorRT-managed allocation in engine deserialization: CPU +0, GPU +33, now: CPU 0, GPU 33 (MiB)
[TRT]    Using cublas as a tactic source
[TRT]    [MemUsageChange] Init cuBLAS/cuBLASLt: CPU +0, GPU +0, now: CPU 711, GPU 3779 (MiB)
[TRT]    Using cuDNN as a tactic source
[TRT]    [MemUsageChange] Init cuDNN: CPU +0, GPU +0, now: CPU 711, GPU 3779 (MiB)
[TRT]    Total per-runner device persistent memory is 22143488
[TRT]    Total per-runner host persistent memory is 127808
[TRT]    Allocated activation device memory of size 13360640
[TRT]    [MemUsageChange] TensorRT-managed allocation in IExecutionContext creation: CPU +0, GPU +34, now: CPU 0, GPU 67 (MiB)
[TRT]    
[TRT]    CUDA engine context initialized on device GPU:
[TRT]       -- layers       124
[TRT]       -- maxBatchSize 1
[TRT]       -- deviceMemory 13360640
[TRT]       -- bindings     3
[TRT]       binding 0
                -- index   0
                -- name    'Input'
                -- type    FP32
                -- in/out  INPUT
                -- # dims  3
                -- dim #0  3
                -- dim #1  300
                -- dim #2  300
[TRT]       binding 1
                -- index   1
                -- name    'NMS'
                -- type    FP32
                -- in/out  OUTPUT
                -- # dims  3
                -- dim #0  1
                -- dim #1  100
                -- dim #2  7
[TRT]       binding 2
                -- index   2
                -- name    'NMS_1'
                -- type    FP32
                -- in/out  OUTPUT
                -- # dims  3
                -- dim #0  1
                -- dim #1  1
                -- dim #2  1
[TRT]    
[TRT]    binding to input 0 Input  binding index:  0
[TRT]    binding to input 0 Input  dims (b=1 c=3 h=300 w=300) size=1080000
[TRT]    binding to output 0 NMS  binding index:  1
[TRT]    binding to output 0 NMS  dims (b=1 c=1 h=100 w=7) size=2800
[TRT]    binding to output 1 NMS_1  binding index:  2
[TRT]    binding to output 1 NMS_1  dims (b=1 c=1 h=1 w=1) size=4
[TRT]    
[TRT]    device GPU, networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff initialized.
[TRT]    W = 7  H = 100  C = 1
[TRT]    detectNet -- maximum bounding boxes:   100
[TRT]    loaded 91 class labels
[TRT]    detectNet -- number of object classes:  91
[TRT]    loaded 0 class colors
[TRT]    didn't load expected number of class colors  (0 of 91)
[TRT]    filling in remaining 91 class colors with default colors
[gstreamer] opening gstDecoder for streaming, transitioning pipeline to GST_STATE_PLAYING
[gstreamer] gstreamer changed state from NULL to READY ==> mysink
[gstreamer] gstreamer changed state from NULL to READY ==> capsfilter0
[gstreamer] gstreamer changed state from NULL to READY ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from NULL to READY ==> h264parse0
[gstreamer] gstreamer changed state from NULL to READY ==> rtph264depay0
[gstreamer] gstreamer changed state from NULL to READY ==> queue0
[gstreamer] gstreamer changed state from NULL to READY ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> pipeline0
[gstreamer] gstreamer changed state from READY to PAUSED ==> capsfilter0
[gstreamer] gstreamer changed state from READY to PAUSED ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from READY to PAUSED ==> h264parse0
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtph264depay0
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtspsrc0
[gstreamer] gstreamer changed state from READY to PAUSED ==> pipeline0
[gstreamer] gstreamer message new-clock ==> pipeline0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> capsfilter0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> h264parse0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtph264depay0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0

(python3:12090): GStreamer-CRITICAL **: 23:03:01.101: gst_caps_is_empty: assertion 'GST_IS_CAPS (caps)' failed

(python3:12090): GStreamer-CRITICAL **: 23:03:01.101: gst_caps_truncate: assertion 'GST_IS_CAPS (caps)' failed

(python3:12090): GStreamer-CRITICAL **: 23:03:01.101: gst_caps_fixate: assertion 'GST_IS_CAPS (caps)' failed

(python3:12090): GStreamer-CRITICAL **: 23:03:01.101: gst_caps_get_structure: assertion 'GST_IS_CAPS (caps)' failed

(python3:12090): GStreamer-CRITICAL **: 23:03:01.101: gst_structure_get_string: assertion 'structure != NULL' failed

(python3:12090): GStreamer-CRITICAL **: 23:03:01.101: gst_mini_object_unref: assertion 'mini_object != NULL' failed
NvMMLiteOpen : Block : BlockType = 261 
NVMEDIA: Reading vendor.tegra.display-size : status: 6 
NvMMLiteBlockCreate : Block : BlockType = 261 
Allocating new output: 1920x1088 (x 8), ThumbnailMode = 0
OPENMAX: HandleNewStreamFormat: 3605: Send OMX_EventPortSettingsChanged: nFrameWidth = 1920, nFrameHeight = 1080 
reference in DPB was never decoded
[gstreamer] gstDecoder -- onPreroll()
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> manager
[gstreamer] gstreamer changed state from READY to PAUSED ==> manager
[gstreamer] gstreamer changed state from NULL to READY ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpsession2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpsession2
[gstreamer] gstreamer changed state from NULL to READY ==> funnel4
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel4
[gstreamer] gstreamer changed state from NULL to READY ==> funnel5
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel5
[gstreamer] gstreamer changed state from NULL to READY ==> rtpstorage2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpstorage2
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpsession3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpsession3
[gstreamer] gstreamer changed state from NULL to READY ==> funnel6
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel6
[gstreamer] gstreamer changed state from NULL to READY ==> funnel7
[gstreamer] gstreamer changed state from READY to PAUSED ==> funnel7
[gstreamer] gstreamer changed state from NULL to READY ==> rtpstorage3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpstorage3
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> udpsink4
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsink4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsink4
[gstreamer] gstreamer changed state from NULL to READY ==> fakesrc2
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> fakesrc2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> fakesrc2
[gstreamer] gstreamer changed state from NULL to READY ==> udpsink6
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsink6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsink6
[gstreamer] gstreamer changed state from NULL to READY ==> fakesrc3
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> fakesrc3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> fakesrc3
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpssrcdemux3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpstorage3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpsession3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel7
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpssrcdemux2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpstorage2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpsession2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel4
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> funnel5
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> manager
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc6
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc6
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc7
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc7
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc9
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc9
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> udpsrc10
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> udpsrc10
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer message element ==> rtpsession3
[gstreamer] gstreamer message element ==> rtpsession2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpptdemux2
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpptdemux2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpptdemux2
[gstreamer] gstreamer changed state from NULL to READY ==> rtpjitterbuffer2
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpjitterbuffer2
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpjitterbuffer2
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from NULL to READY ==> rtpptdemux3
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpptdemux3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpptdemux3
[gstreamer] gstreamer changed state from NULL to READY ==> rtpjitterbuffer3
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtpjitterbuffer3
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtpjitterbuffer3
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer message stream-start ==> pipeline0
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer mysink taglist, video-codec=(string)"H.264\ \(Baseline\ Profile\)";
[gstreamer] gstBufferManager recieve caps:  video/x-raw, format=(string)NV12, width=(int)1920, height=(int)1080, interlace-mode=(string)progressive, multiview-mode=(string)mono, multiview-flags=(GstVideoMultiviewFlagsSet)0:ffffffff:/right-view-first/left-flipped/left-flopped/right-flipped/right-flopped/half-aspect/mixed-mono, pixel-aspect-ratio=(fraction)1/1, chroma-site=(string)mpeg2, colorimetry=(string)bt709, framerate=(fraction)0/1
[gstreamer] gstBufferManager -- recieved first frame, codec=h264 format=nv12 width=1920 height=1080 size=3110400
RingBuffer -- allocated 4 buffers (3110400 bytes each, 12441600 bytes total)
RingBuffer -- allocated 4 buffers (8 bytes each, 32 bytes total)
[gstreamer] gstreamer changed state from READY to PAUSED ==> mysink
[gstreamer] gstreamer message async-done ==> pipeline0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> mysink
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> pipeline0
RingBuffer -- allocated 4 buffers (6220800 bytes each, 24883200 bytes total)
detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11120ms  CUDA   0.85161ms
[TRT]    Network       CPU 2451.32544ms  CUDA 2440.84033ms
[TRT]    Post-Process  CPU   0.03625ms  CUDA   0.03661ms
[TRT]    Total         CPU 2451.47266ms  CUDA 2441.72852ms
[TRT]    ------------------------------------------------

[TRT]    note -- when processing a single image, run 'sudo jetson_clocks' before
                to disable DVFS for more accurate profiling/timing measurements

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11432ms  CUDA   0.90729ms
[TRT]    Network       CPU  51.66530ms  CUDA  40.88021ms
[TRT]    Post-Process  CPU   0.05094ms  CUDA   0.05094ms
[TRT]    Total         CPU  51.83056ms  CUDA  41.83844ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06307ms  CUDA   1.00339ms
[TRT]    Network       CPU  51.85358ms  CUDA  40.42969ms
[TRT]    Post-Process  CPU   0.03354ms  CUDA   0.03359ms
[TRT]    Total         CPU  51.95020ms  CUDA  41.46667ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07271ms  CUDA   0.83838ms
[TRT]    Network       CPU  49.95610ms  CUDA  38.70995ms
[TRT]    Post-Process  CPU   0.03099ms  CUDA   0.03109ms
[TRT]    Total         CPU  50.05980ms  CUDA  39.57943ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07776ms  CUDA   1.01703ms
[TRT]    Network       CPU  51.69259ms  CUDA  40.90589ms
[TRT]    Post-Process  CPU   0.05115ms  CUDA   0.04974ms
[TRT]    Total         CPU  51.82150ms  CUDA  41.97266ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07146ms  CUDA   1.03625ms
[TRT]    Network       CPU  50.45953ms  CUDA  39.11385ms
[TRT]    Post-Process  CPU   0.08297ms  CUDA   0.08313ms
[TRT]    Total         CPU  50.61395ms  CUDA  40.23323ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06437ms  CUDA   1.28188ms
[TRT]    Network       CPU  53.32108ms  CUDA  41.00063ms
[TRT]    Post-Process  CPU   0.04906ms  CUDA   0.04932ms
[TRT]    Total         CPU  53.43452ms  CUDA  42.33183ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06458ms  CUDA   1.09240ms
[TRT]    Network       CPU  50.45418ms  CUDA  39.26260ms
[TRT]    Post-Process  CPU   0.04677ms  CUDA   0.04948ms
[TRT]    Total         CPU  50.56553ms  CUDA  40.40448ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11260ms  CUDA   0.97734ms
[TRT]    Network       CPU  50.98495ms  CUDA  40.43771ms
[TRT]    Post-Process  CPU   0.03995ms  CUDA   0.04125ms
[TRT]    Total         CPU  51.13750ms  CUDA  41.45630ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.12062ms  CUDA   1.07698ms
[TRT]    Network       CPU  51.56714ms  CUDA  39.35693ms
[TRT]    Post-Process  CPU   0.03854ms  CUDA   0.03932ms
[TRT]    Total         CPU  51.72631ms  CUDA  40.47323ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06307ms  CUDA   0.96146ms
[TRT]    Network       CPU  51.73011ms  CUDA  41.16792ms
[TRT]    Post-Process  CPU   0.03646ms  CUDA   0.03740ms
[TRT]    Total         CPU  51.82964ms  CUDA  42.16677ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06458ms  CUDA   0.89583ms
[TRT]    Network       CPU  50.42564ms  CUDA  39.38839ms
[TRT]    Post-Process  CPU   0.03620ms  CUDA   0.03693ms
[TRT]    Total         CPU  50.52642ms  CUDA  40.32114ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06089ms  CUDA   0.97167ms
[TRT]    Network       CPU  52.66843ms  CUDA  41.87614ms
[TRT]    Post-Process  CPU   0.03823ms  CUDA   0.03891ms
[TRT]    Total         CPU  52.76755ms  CUDA  42.88671ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.08151ms  CUDA   1.07422ms
[TRT]    Network       CPU  51.70292ms  CUDA  40.02057ms
[TRT]    Post-Process  CPU   0.03844ms  CUDA   0.03818ms
[TRT]    Total         CPU  51.82286ms  CUDA  41.13297ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07208ms  CUDA   1.19156ms
[TRT]    Network       CPU  51.01393ms  CUDA  39.25505ms
[TRT]    Post-Process  CPU   0.04292ms  CUDA   0.04229ms
[TRT]    Visualize     CPU  24.24856ms  CUDA  24.49964ms
[TRT]    Total         CPU  75.37749ms  CUDA  64.98854ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06453ms  CUDA   0.85182ms
[TRT]    Network       CPU  53.10324ms  CUDA  42.50505ms
[TRT]    Post-Process  CPU   0.04672ms  CUDA   0.04797ms
[TRT]    Visualize     CPU  24.24856ms  CUDA  24.49964ms
[TRT]    Total         CPU  77.46304ms  CUDA  67.90448ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07005ms  CUDA   0.83536ms
[TRT]    Network       CPU  51.28922ms  CUDA  39.29818ms
[TRT]    Post-Process  CPU   0.02927ms  CUDA   0.02974ms
[TRT]    Visualize     CPU   0.17104ms  CUDA   0.00000ms
[TRT]    Total         CPU  51.55958ms  CUDA  40.16328ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06333ms  CUDA   0.93781ms
[TRT]    Network       CPU  52.35197ms  CUDA  41.82604ms
[TRT]    Post-Process  CPU   0.04583ms  CUDA   0.04552ms
[TRT]    Visualize     CPU   0.17104ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.63218ms  CUDA  42.80938ms
[TRT]    ------------------------------------------------

detected 2 objects in image
<detectNet.Detection object>
   -- ClassID: 75
   -- Confidence: 0.807129
   -- Left:    211.875
   -- Top:     17.666
   -- Right:   1693.12
   -- Bottom:  936.562
   -- Width:   1481.25
   -- Height:  918.896
   -- Area:    1.36112e+06
   -- Center:  (952.5, 477.114)
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.505859
   -- Left:    433.359
   -- Top:     630.176
   -- Right:   613.125
   -- Bottom:  776.777
   -- Width:   179.766
   -- Height:  146.602
   -- Area:    26353.9
   -- Center:  (523.242, 703.477)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06896ms  CUDA   1.34713ms
[TRT]    Network       CPU  51.06469ms  CUDA  40.19896ms
[TRT]    Post-Process  CPU   0.05740ms  CUDA   0.05693ms
[cuda]      device not ready (error 600) (hex 0x258)
[cuda]      /home/jetson/Documents/jetson-inference/build/aarch64/include/jetson-inference/tensorNet.h:754
[TRT]    Visualize     CPU   0.25422ms  CUDA   0.00000ms
[TRT]    Total         CPU  51.44526ms  CUDA  41.60302ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07380ms  CUDA   0.99609ms
[TRT]    Network       CPU  51.20537ms  CUDA  40.43385ms
[TRT]    Post-Process  CPU   0.05505ms  CUDA   0.05479ms
[TRT]    Visualize     CPU   0.25422ms  CUDA   0.00000ms
[TRT]    Total         CPU  51.58844ms  CUDA  41.48474ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06349ms  CUDA   0.87089ms
[TRT]    Network       CPU  51.01724ms  CUDA  39.49875ms
[TRT]    Post-Process  CPU   0.05786ms  CUDA   0.05807ms
[TRT]    Visualize     CPU   0.25422ms  CUDA   0.00000ms
[TRT]    Total         CPU  51.39281ms  CUDA  40.42770ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.516602
   -- Left:    457.734
   -- Top:     620.156
   -- Right:   624.375
   -- Bottom:  762.539
   -- Width:   166.641
   -- Height:  142.383
   -- Area:    23726.8
   -- Center:  (541.055, 691.348)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06281ms  CUDA   1.02297ms
[TRT]    Network       CPU  52.50386ms  CUDA  41.49375ms
[TRT]    Post-Process  CPU   0.05531ms  CUDA   0.05562ms
[TRT]    Visualize     CPU   0.21786ms  CUDA   0.55516ms
[TRT]    Total         CPU  52.83985ms  CUDA  43.12750ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.05953ms  CUDA   1.43276ms
[TRT]    Network       CPU  50.10596ms  CUDA  38.14495ms
[TRT]    Post-Process  CPU   0.05177ms  CUDA   0.05167ms
[TRT]    Visualize     CPU   0.21786ms  CUDA   0.55516ms
[TRT]    Total         CPU  50.43513ms  CUDA  40.18453ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06995ms  CUDA   0.98844ms
[TRT]    Network       CPU  51.20314ms  CUDA  40.43406ms
[TRT]    Post-Process  CPU   0.06448ms  CUDA   0.06729ms
[TRT]    Visualize     CPU   0.21786ms  CUDA   0.55516ms
[TRT]    Total         CPU  51.55543ms  CUDA  42.04495ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.10333ms  CUDA   0.90828ms
[TRT]    Network       CPU  51.61575ms  CUDA  39.95120ms
[TRT]    Post-Process  CPU   0.06807ms  CUDA   0.06760ms
[TRT]    Visualize     CPU   0.21786ms  CUDA   0.55516ms
[TRT]    Total         CPU  52.00501ms  CUDA  41.48224ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06708ms  CUDA   0.97979ms
[TRT]    Network       CPU  52.42813ms  CUDA  41.68474ms
[TRT]    Post-Process  CPU   0.05995ms  CUDA   0.06068ms
[TRT]    Visualize     CPU   0.21786ms  CUDA   0.55516ms
[TRT]    Total         CPU  52.77303ms  CUDA  43.28036ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.686035
   -- Left:    461.016
   -- Top:     620.684
   -- Right:   635.156
   -- Bottom:  766.23
   -- Width:   174.141
   -- Height:  145.547
   -- Area:    25345.6
   -- Center:  (548.086, 693.457)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06552ms  CUDA   0.86990ms
[TRT]    Network       CPU  50.90992ms  CUDA  39.78109ms
[TRT]    Post-Process  CPU   0.06562ms  CUDA   0.06568ms
[TRT]    Visualize     CPU   0.24578ms  CUDA   0.62208ms
[TRT]    Total         CPU  51.28684ms  CUDA  41.33875ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.723145
   -- Left:    461.25
   -- Top:     621.211
   -- Right:   633.75
   -- Bottom:  767.812
   -- Width:   172.5
   -- Height:  146.602
   -- Area:    25288.8
   -- Center:  (547.5, 694.512)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06521ms  CUDA   0.95630ms
[TRT]    Network       CPU  52.31699ms  CUDA  41.50687ms
[TRT]    Post-Process  CPU   0.06771ms  CUDA   0.06838ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  52.69579ms  CUDA  43.13760ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06062ms  CUDA   1.17859ms
[TRT]    Network       CPU  49.24951ms  CUDA  37.76615ms
[TRT]    Post-Process  CPU   0.05078ms  CUDA   0.05099ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  49.60680ms  CUDA  39.60177ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06922ms  CUDA   1.03052ms
[TRT]    Network       CPU  51.86699ms  CUDA  40.90859ms
[TRT]    Post-Process  CPU   0.05135ms  CUDA   0.05182ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  52.23345ms  CUDA  42.59698ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06573ms  CUDA   1.16292ms
[TRT]    Network       CPU  50.99382ms  CUDA  39.35115ms
[TRT]    Post-Process  CPU   0.05864ms  CUDA   0.05838ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.36408ms  CUDA  41.17849ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07812ms  CUDA   1.02839ms
[TRT]    Network       CPU  53.06376ms  CUDA  41.72115ms
[TRT]    Post-Process  CPU   0.05823ms  CUDA   0.05813ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  53.44599ms  CUDA  43.41370ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06922ms  CUDA   0.87063ms
[TRT]    Network       CPU  51.35601ms  CUDA  39.82859ms
[TRT]    Post-Process  CPU   0.03786ms  CUDA   0.03984ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.70898ms  CUDA  41.34510ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07411ms  CUDA   0.98094ms
[TRT]    Network       CPU  53.18164ms  CUDA  42.64672ms
[TRT]    Post-Process  CPU   0.08323ms  CUDA   0.03880ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  53.58487ms  CUDA  44.27250ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07667ms  CUDA   0.87667ms
[TRT]    Network       CPU  51.12821ms  CUDA  39.31604ms
[TRT]    Post-Process  CPU   0.03172ms  CUDA   0.03172ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.48248ms  CUDA  40.83047ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06193ms  CUDA   0.97104ms
[TRT]    Network       CPU  52.39248ms  CUDA  41.67958ms
[TRT]    Post-Process  CPU   0.03088ms  CUDA   0.03120ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  52.73117ms  CUDA  43.28786ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06552ms  CUDA   1.05313ms
[TRT]    Network       CPU  51.24326ms  CUDA  39.74589ms
[TRT]    Post-Process  CPU   0.03182ms  CUDA   0.03187ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.58649ms  CUDA  41.43693ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.14302ms  CUDA   1.02516ms
[TRT]    Network       CPU  49.99874ms  CUDA  39.04630ms
[TRT]    Post-Process  CPU   0.03182ms  CUDA   0.03193ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  50.41947ms  CUDA  40.70942ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06286ms  CUDA   1.22740ms
[TRT]    Network       CPU  51.00644ms  CUDA  39.24219ms
[TRT]    Post-Process  CPU   0.07068ms  CUDA   0.07172ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.38586ms  CUDA  41.14734ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07547ms  CUDA   0.97385ms
[TRT]    Network       CPU  53.32955ms  CUDA  41.50818ms
[TRT]    Post-Process  CPU   0.03557ms  CUDA   0.03594ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  53.68647ms  CUDA  43.12401ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06312ms  CUDA   0.86187ms
[TRT]    Network       CPU  50.86785ms  CUDA  39.82552ms
[TRT]    Post-Process  CPU   0.02990ms  CUDA   0.03000ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.20675ms  CUDA  41.32343ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07588ms  CUDA   0.94052ms
[TRT]    Network       CPU  52.18800ms  CUDA  41.67390ms
[TRT]    Post-Process  CPU   0.06172ms  CUDA   0.06406ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  52.57148ms  CUDA  43.28453ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06474ms  CUDA   1.06917ms
[TRT]    Network       CPU  51.17139ms  CUDA  38.04073ms
[TRT]    Post-Process  CPU   0.05703ms  CUDA   0.05708ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.53904ms  CUDA  39.77302ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06766ms  CUDA   1.00568ms
[TRT]    Network       CPU  52.72336ms  CUDA  41.82203ms
[TRT]    Post-Process  CPU   0.05776ms  CUDA   0.05771ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  53.09466ms  CUDA  43.49146ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06531ms  CUDA   1.04958ms
[TRT]    Network       CPU  50.82196ms  CUDA  39.38521ms
[TRT]    Post-Process  CPU   0.05318ms  CUDA   0.05391ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.18634ms  CUDA  41.09474ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06792ms  CUDA   1.11719ms
[TRT]    Network       CPU  52.75763ms  CUDA  41.54542ms
[TRT]    Post-Process  CPU   0.05208ms  CUDA   0.05365ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  53.12351ms  CUDA  43.32229ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.08641ms  CUDA   0.93328ms
[TRT]    Network       CPU  51.46436ms  CUDA  40.15651ms
[TRT]    Post-Process  CPU   0.08682ms  CUDA   0.04490ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  51.88347ms  CUDA  41.74073ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06708ms  CUDA   0.96552ms
[TRT]    Network       CPU  52.46117ms  CUDA  41.99240ms
[TRT]    Post-Process  CPU   0.04422ms  CUDA   0.05380ms
[TRT]    Visualize     CPU   0.24588ms  CUDA   0.60604ms
[TRT]    Total         CPU  52.81835ms  CUDA  43.61776ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.505859
   -- Left:    461.25
   -- Top:     575.332
   -- Right:   627.188
   -- Bottom:  716.66
   -- Width:   165.938
   -- Height:  141.328
   -- Area:    23451.6
   -- Center:  (544.219, 645.996)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06458ms  CUDA   1.06865ms
[TRT]    Network       CPU  52.71924ms  CUDA  41.23682ms
[TRT]    Post-Process  CPU   0.03307ms  CUDA   0.03302ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  53.01450ms  CUDA  42.86641ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06078ms  CUDA   1.12646ms
[TRT]    Network       CPU  50.06338ms  CUDA  39.26474ms
[TRT]    Post-Process  CPU   0.05906ms  CUDA   0.05901ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  50.38082ms  CUDA  40.97812ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06531ms  CUDA   0.82354ms
[TRT]    Network       CPU  52.58680ms  CUDA  42.23625ms
[TRT]    Post-Process  CPU   0.05891ms  CUDA   0.05870ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  52.90862ms  CUDA  43.64641ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06177ms  CUDA   1.23448ms
[TRT]    Network       CPU  50.78723ms  CUDA  39.31255ms
[TRT]    Post-Process  CPU   0.07750ms  CUDA   0.07854ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  51.12410ms  CUDA  41.15349ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11062ms  CUDA   0.93094ms
[TRT]    Network       CPU  52.33036ms  CUDA  41.70906ms
[TRT]    Post-Process  CPU   0.03349ms  CUDA   0.03312ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  52.67207ms  CUDA  43.20105ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.09729ms  CUDA   1.22563ms
[TRT]    Network       CPU  51.96650ms  CUDA  39.36515ms
[TRT]    Post-Process  CPU   0.03120ms  CUDA   0.03156ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  52.29259ms  CUDA  41.15026ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07312ms  CUDA   0.86031ms
[TRT]    Network       CPU  52.31395ms  CUDA  41.72599ms
[TRT]    Post-Process  CPU   0.03162ms  CUDA   0.03151ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  52.61629ms  CUDA  43.14573ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06599ms  CUDA   1.21526ms
[TRT]    Network       CPU  51.07286ms  CUDA  39.33859ms
[TRT]    Post-Process  CPU   0.03708ms  CUDA   0.03755ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  51.37354ms  CUDA  41.11932ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.08005ms  CUDA   0.84349ms
[TRT]    Network       CPU  51.36505ms  CUDA  40.77662ms
[TRT]    Post-Process  CPU   0.03734ms  CUDA   0.03917ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  51.68005ms  CUDA  42.18719ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07349ms  CUDA   1.05141ms
[TRT]    Network       CPU  51.66328ms  CUDA  39.96786ms
[TRT]    Post-Process  CPU   0.07734ms  CUDA   0.07724ms
[TRT]    Visualize     CPU   0.19760ms  CUDA   0.52792ms
[TRT]    Total         CPU  52.01171ms  CUDA  41.62443ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.652344
   -- Left:    454.922
   -- Top:     563.73
   -- Right:   622.969
   -- Bottom:  706.113
   -- Width:   168.047
   -- Height:  142.383
   -- Area:    23927
   -- Center:  (538.945, 634.922)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07094ms  CUDA   0.92953ms
[TRT]    Network       CPU  51.49874ms  CUDA  40.81151ms
[TRT]    Post-Process  CPU   0.05385ms  CUDA   0.04500ms
[TRT]    Visualize     CPU   0.28880ms  CUDA   0.52573ms
[TRT]    Total         CPU  51.91234ms  CUDA  42.31177ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.652344
   -- Left:    458.906
   -- Top:     561.621
   -- Right:   631.406
   -- Bottom:  710.332
   -- Width:   172.5
   -- Height:  148.711
   -- Area:    25652.6
   -- Center:  (545.156, 635.977)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.13562ms  CUDA   1.11552ms
[TRT]    Network       CPU  51.10281ms  CUDA  39.65729ms
[TRT]    Post-Process  CPU   0.05568ms  CUDA   0.05667ms
[TRT]    Visualize     CPU   0.27656ms  CUDA   0.60089ms
[TRT]    Total         CPU  51.57067ms  CUDA  41.43037ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06948ms  CUDA   0.85885ms
[TRT]    Network       CPU  51.43937ms  CUDA  40.80667ms
[TRT]    Post-Process  CPU   0.04896ms  CUDA   0.04901ms
[TRT]    Visualize     CPU   0.27656ms  CUDA   0.60089ms
[TRT]    Total         CPU  51.83437ms  CUDA  42.31542ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.52832
   -- Left:    479.062
   -- Top:     574.277
   -- Right:   628.125
   -- Bottom:  709.277
   -- Width:   149.062
   -- Height:  135
   -- Area:    20123.4
   -- Center:  (553.594, 641.777)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.09963ms  CUDA   0.94458ms
[TRT]    Network       CPU  53.61915ms  CUDA  43.07979ms
[TRT]    Post-Process  CPU   0.07135ms  CUDA   0.07292ms
[TRT]    Visualize     CPU   0.20573ms  CUDA   0.49927ms
[TRT]    Total         CPU  53.99587ms  CUDA  44.59657ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.53418
   -- Left:    469.922
   -- Top:     562.148
   -- Right:   636.562
   -- Bottom:  703.477
   -- Width:   166.641
   -- Height:  141.328
   -- Area:    23551
   -- Center:  (553.242, 632.812)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06047ms  CUDA   0.82063ms
[TRT]    Network       CPU  50.37443ms  CUDA  38.72120ms
[TRT]    Post-Process  CPU   0.03604ms  CUDA   0.03609ms
[TRT]    Visualize     CPU   0.17755ms  CUDA   0.50313ms
[TRT]    Total         CPU  50.64849ms  CUDA  40.08104ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.05750ms  CUDA   0.94526ms
[TRT]    Network       CPU  50.92620ms  CUDA  40.40089ms
[TRT]    Post-Process  CPU   0.03255ms  CUDA   0.03250ms
[TRT]    Visualize     CPU   0.17755ms  CUDA   0.50313ms
[TRT]    Total         CPU  51.19380ms  CUDA  41.88177ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.654785
   -- Left:    472.266
   -- Top:     566.367
   -- Right:   632.344
   -- Bottom:  703.477
   -- Width:   160.078
   -- Height:  137.109
   -- Area:    21948.2
   -- Center:  (552.305, 634.922)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06838ms  CUDA   0.89037ms
[TRT]    Network       CPU  51.29854ms  CUDA  39.87146ms
[TRT]    Post-Process  CPU   0.03615ms  CUDA   0.03594ms
[TRT]    Visualize     CPU   0.17266ms  CUDA   0.52448ms
[TRT]    Total         CPU  51.57573ms  CUDA  41.32224ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.05917ms  CUDA   1.02281ms
[TRT]    Network       CPU  52.64416ms  CUDA  41.60651ms
[TRT]    Post-Process  CPU   0.04662ms  CUDA   0.04589ms
[TRT]    Visualize     CPU   0.17266ms  CUDA   0.52448ms
[TRT]    Total         CPU  52.92260ms  CUDA  43.19968ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06609ms  CUDA   0.87521ms
[TRT]    Network       CPU  51.13760ms  CUDA  39.93292ms
[TRT]    Post-Process  CPU   0.03276ms  CUDA   0.03307ms
[TRT]    Visualize     CPU   0.17266ms  CUDA   0.52448ms
[TRT]    Total         CPU  51.40911ms  CUDA  41.36568ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.626953
   -- Left:    475.781
   -- Top:     569.004
   -- Right:   631.406
   -- Bottom:  707.168
   -- Width:   155.625
   -- Height:  138.164
   -- Area:    21501.8
   -- Center:  (553.594, 638.086)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06161ms  CUDA   0.96734ms
[TRT]    Network       CPU  52.37067ms  CUDA  41.76714ms
[TRT]    Post-Process  CPU   0.06396ms  CUDA   0.06213ms
[TRT]    Visualize     CPU   0.22885ms  CUDA   0.50891ms
[TRT]    Total         CPU  52.72509ms  CUDA  43.30552ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.626953
   -- Left:    473.438
   -- Top:     563.73
   -- Right:   634.688
   -- Bottom:  705.059
   -- Width:   161.25
   -- Height:  141.328
   -- Area:    22789.2
   -- Center:  (554.062, 634.395)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06458ms  CUDA   0.82807ms
[TRT]    Network       CPU  50.53854ms  CUDA  38.72203ms
[TRT]    Post-Process  CPU   0.05958ms  CUDA   0.05990ms
[TRT]    Visualize     CPU   0.21948ms  CUDA   0.54984ms
[TRT]    Total         CPU  50.88219ms  CUDA  40.15984ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.631836
   -- Left:    481.875
   -- Top:     570.059
   -- Right:   633.75
   -- Bottom:  707.168
   -- Width:   151.875
   -- Height:  137.109
   -- Area:    20823.5
   -- Center:  (557.812, 638.613)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.08583ms  CUDA   1.01969ms
[TRT]    Network       CPU  52.08677ms  CUDA  41.22739ms
[TRT]    Post-Process  CPU   0.05823ms  CUDA   0.05828ms
[TRT]    Visualize     CPU   0.21984ms  CUDA   0.50849ms
[TRT]    Total         CPU  52.45067ms  CUDA  42.81385ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06052ms  CUDA   0.92005ms
[TRT]    Network       CPU  51.12225ms  CUDA  39.69818ms
[TRT]    Post-Process  CPU   0.08406ms  CUDA   0.08286ms
[TRT]    Visualize     CPU   0.21984ms  CUDA   0.50849ms
[TRT]    Total         CPU  51.48667ms  CUDA  41.20959ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07828ms  CUDA   1.02839ms
[TRT]    Network       CPU  52.73964ms  CUDA  41.52995ms
[TRT]    Post-Process  CPU   0.04375ms  CUDA   0.05792ms
[TRT]    Visualize     CPU   0.21984ms  CUDA   0.50849ms
[TRT]    Total         CPU  53.08151ms  CUDA  43.12474ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.578613
   -- Left:    469.219
   -- Top:     564.785
   -- Right:   634.219
   -- Bottom:  708.223
   -- Width:   165
   -- Height:  143.438
   -- Area:    23667.2
   -- Center:  (551.719, 636.504)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07984ms  CUDA   0.95292ms
[TRT]    Network       CPU  50.41924ms  CUDA  39.06364ms
[TRT]    Post-Process  CPU   0.04260ms  CUDA   0.04401ms
[TRT]    Visualize     CPU   0.24239ms  CUDA   0.51781ms
[TRT]    Total         CPU  50.78408ms  CUDA  40.57838ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.606934
   -- Left:    472.5
   -- Top:     564.785
   -- Right:   632.812
   -- Bottom:  706.113
   -- Width:   160.312
   -- Height:  141.328
   -- Area:    22656.7
   -- Center:  (552.656, 635.449)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07750ms  CUDA   1.01682ms
[TRT]    Network       CPU  52.78797ms  CUDA  42.02224ms
[TRT]    Post-Process  CPU   0.05359ms  CUDA   0.05370ms
[TRT]    Visualize     CPU   0.30161ms  CUDA   0.49151ms
[TRT]    Total         CPU  53.22068ms  CUDA  43.58427ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.510742
   -- Left:    469.688
   -- Top:     564.258
   -- Right:   630
   -- Bottom:  709.805
   -- Width:   160.312
   -- Height:  145.547
   -- Area:    23333
   -- Center:  (549.844, 637.031)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11490ms  CUDA   0.88307ms
[TRT]    Network       CPU  50.95028ms  CUDA  38.89734ms
[TRT]    Post-Process  CPU   0.06167ms  CUDA   0.06125ms
[TRT]    Visualize     CPU   0.20765ms  CUDA   0.55510ms
[TRT]    Total         CPU  51.33449ms  CUDA  40.39677ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.09698ms  CUDA   0.96974ms
[TRT]    Network       CPU  51.59866ms  CUDA  41.08516ms
[TRT]    Post-Process  CPU   0.04255ms  CUDA   0.04250ms
[TRT]    Visualize     CPU   0.20765ms  CUDA   0.55510ms
[TRT]    Total         CPU  51.94584ms  CUDA  42.65250ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06755ms  CUDA   1.07203ms
[TRT]    Network       CPU  49.89721ms  CUDA  38.55469ms
[TRT]    Post-Process  CPU   0.03391ms  CUDA   0.03391ms
[TRT]    Visualize     CPU   0.20765ms  CUDA   0.55510ms
[TRT]    Total         CPU  50.20632ms  CUDA  40.21573ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06844ms  CUDA   1.01026ms
[TRT]    Network       CPU  52.39553ms  CUDA  41.76922ms
[TRT]    Post-Process  CPU   0.04760ms  CUDA   0.04875ms
[TRT]    Visualize     CPU   0.20765ms  CUDA   0.55510ms
[TRT]    Total         CPU  52.71922ms  CUDA  43.38334ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.516602
   -- Left:    468.75
   -- Top:     565.312
   -- Right:   633.75
   -- Bottom:  705.586
   -- Width:   165
   -- Height:  140.273
   -- Area:    23145.1
   -- Center:  (551.25, 635.449)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.10969ms  CUDA   0.93307ms
[TRT]    Network       CPU  51.50038ms  CUDA  39.49375ms
[TRT]    Post-Process  CPU   0.04375ms  CUDA   0.04417ms
[TRT]    Visualize     CPU   0.26948ms  CUDA   0.53234ms
[TRT]    Total         CPU  51.92329ms  CUDA  41.00333ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.641602
   -- Left:    475.078
   -- Top:     569.531
   -- Right:   629.062
   -- Bottom:  707.695
   -- Width:   153.984
   -- Height:  138.164
   -- Area:    21275.1
   -- Center:  (552.07, 638.613)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11104ms  CUDA   1.08354ms
[TRT]    Network       CPU  52.17370ms  CUDA  41.44422ms
[TRT]    Post-Process  CPU   0.03927ms  CUDA   0.03937ms
[TRT]    Visualize     CPU   0.17786ms  CUDA   0.48391ms
[TRT]    Total         CPU  52.50188ms  CUDA  43.05104ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.05870ms  CUDA   1.52724ms
[TRT]    Network       CPU  51.24220ms  CUDA  39.31594ms
[TRT]    Post-Process  CPU   0.05292ms  CUDA   0.05391ms
[TRT]    Visualize     CPU   0.17786ms  CUDA   0.48391ms
[TRT]    Total         CPU  51.53168ms  CUDA  41.38099ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06276ms  CUDA   0.96630ms
[TRT]    Network       CPU  52.67771ms  CUDA  41.95323ms
[TRT]    Post-Process  CPU   0.05099ms  CUDA   0.05083ms
[TRT]    Visualize     CPU   0.17786ms  CUDA   0.48391ms
[TRT]    Total         CPU  52.96932ms  CUDA  43.45427ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.541992
   -- Left:    471.094
   -- Top:     563.73
   -- Right:   633.281
   -- Bottom:  710.332
   -- Width:   162.188
   -- Height:  146.602
   -- Area:    23776.9
   -- Center:  (552.188, 637.031)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06489ms  CUDA   1.07729ms
[TRT]    Network       CPU  51.93871ms  CUDA  40.59932ms
[TRT]    Post-Process  CPU   0.07771ms  CUDA   0.07849ms
[TRT]    Visualize     CPU   0.26359ms  CUDA   0.60844ms
[TRT]    Total         CPU  52.34491ms  CUDA  42.36354ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.602051
   -- Left:    473.906
   -- Top:     562.676
   -- Right:   636.094
   -- Bottom:  705.059
   -- Width:   162.188
   -- Height:  142.383
   -- Area:    23092.7
   -- Center:  (555, 633.867)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07156ms  CUDA   0.96583ms
[TRT]    Network       CPU  50.43142ms  CUDA  39.66396ms
[TRT]    Post-Process  CPU   0.06323ms  CUDA   0.06286ms
[TRT]    Visualize     CPU   0.23615ms  CUDA   0.57010ms
[TRT]    Total         CPU  50.80236ms  CUDA  41.26276ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.555664
   -- Left:    471.562
   -- Top:     561.621
   -- Right:   636.562
   -- Bottom:  704.004
   -- Width:   165
   -- Height:  142.383
   -- Area:    23493.2
   -- Center:  (554.062, 632.812)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06187ms  CUDA   0.91250ms
[TRT]    Network       CPU  49.38357ms  CUDA  37.89901ms
[TRT]    Post-Process  CPU   0.06292ms  CUDA   0.06365ms
[TRT]    Visualize     CPU   0.23583ms  CUDA   0.56969ms
[TRT]    Total         CPU  49.74419ms  CUDA  39.44484ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.542969
   -- Left:    489.375
   -- Top:     572.695
   -- Right:   634.688
   -- Bottom:  707.695
   -- Width:   145.312
   -- Height:  135
   -- Area:    19617.2
   -- Center:  (562.031, 640.195)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.05781ms  CUDA   1.01104ms
[TRT]    Network       CPU  52.55334ms  CUDA  41.52281ms
[TRT]    Post-Process  CPU   0.06792ms  CUDA   0.06750ms
[TRT]    Visualize     CPU   0.24713ms  CUDA   0.53109ms
[TRT]    Total         CPU  52.92620ms  CUDA  43.13245ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.542969
   -- Left:    486.562
   -- Top:     574.805
   -- Right:   631.875
   -- Bottom:  706.641
   -- Width:   145.312
   -- Height:  131.836
   -- Area:    19157.4
   -- Center:  (559.219, 640.723)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06083ms  CUDA   0.87490ms
[TRT]    Network       CPU  50.75278ms  CUDA  39.54578ms
[TRT]    Post-Process  CPU   0.06750ms  CUDA   0.06781ms
[TRT]    Visualize     CPU   0.24380ms  CUDA   0.50427ms
[TRT]    Total         CPU  51.12491ms  CUDA  40.99276ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 85
   -- Confidence: 0.53125
   -- Left:    472.734
   -- Top:     563.73
   -- Right:   636.562
   -- Bottom:  704.004
   -- Width:   163.828
   -- Height:  140.273
   -- Area:    22980.7
   -- Center:  (554.648, 633.867)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06365ms  CUDA   0.98594ms
[TRT]    Network       CPU  52.57032ms  CUDA  41.78865ms
[TRT]    Post-Process  CPU   0.05677ms  CUDA   0.05745ms
[TRT]    Visualize     CPU   0.23823ms  CUDA   0.57906ms
[TRT]    Total         CPU  52.92896ms  CUDA  43.41109ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06573ms  CUDA   0.96510ms
[TRT]    Network       CPU  51.80498ms  CUDA  41.19792ms
[TRT]    Post-Process  CPU   0.03672ms  CUDA   0.08714ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  52.12653ms  CUDA  42.85828ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11724ms  CUDA   1.09823ms
[TRT]    Network       CPU  52.41706ms  CUDA  41.20432ms
[TRT]    Post-Process  CPU   0.03672ms  CUDA   0.03917ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  52.79012ms  CUDA  42.94984ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07359ms  CUDA   1.22979ms
[TRT]    Network       CPU  52.37658ms  CUDA  40.16964ms
[TRT]    Post-Process  CPU   0.05031ms  CUDA   0.05042ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  52.71960ms  CUDA  42.05797ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06302ms  CUDA   0.84615ms
[TRT]    Network       CPU  51.33987ms  CUDA  40.99281ms
[TRT]    Post-Process  CPU   0.03943ms  CUDA   0.04052ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  51.66143ms  CUDA  42.48760ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06635ms  CUDA   1.20656ms
[TRT]    Network       CPU  50.58654ms  CUDA  39.13500ms
[TRT]    Post-Process  CPU   0.02911ms  CUDA   0.02948ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  50.90112ms  CUDA  40.97916ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06526ms  CUDA   0.84943ms
[TRT]    Network       CPU  53.44481ms  CUDA  42.77636ms
[TRT]    Post-Process  CPU   0.03198ms  CUDA   0.03260ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  53.76116ms  CUDA  44.26651ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06255ms  CUDA   1.05813ms
[TRT]    Network       CPU  52.66862ms  CUDA  40.46625ms
[TRT]    Post-Process  CPU   0.04276ms  CUDA   0.04359ms
[TRT]    Visualize     CPU   0.21911ms  CUDA   0.60812ms
[TRT]    Total         CPU  52.99304ms  CUDA  42.17609ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 33
   -- Confidence: 0.65625
   -- Left:    122.812
   -- Top:     109.951
   -- Right:   1590
   -- Bottom:  870.117
   -- Width:   1467.19
   -- Height:  760.166
   -- Area:    1.11531e+06
   -- Center:  (856.406, 490.034)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06411ms  CUDA   0.85010ms
[TRT]    Network       CPU  51.82357ms  CUDA  41.14375ms
[TRT]    Post-Process  CPU   0.03807ms  CUDA   0.03776ms
[cuda]      device not ready (error 600) (hex 0x258)
[cuda]      /home/jetson/Documents/jetson-inference/build/aarch64/include/jetson-inference/tensorNet.h:754
[TRT]    Visualize     CPU   0.18599ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.11174ms  CUDA  42.03162ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 33
   -- Confidence: 0.542969
   -- Left:    154.688
   -- Top:     144.492
   -- Right:   1618.12
   -- Bottom:  905.977
   -- Width:   1463.44
   -- Height:  761.484
   -- Area:    1.11438e+06
   -- Center:  (886.406, 525.234)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07417ms  CUDA   1.23521ms
[TRT]    Network       CPU  51.70275ms  CUDA  39.93875ms
[TRT]    Post-Process  CPU   0.04208ms  CUDA   0.04281ms
[cuda]      device not ready (error 600) (hex 0x258)
[cuda]      /home/jetson/Documents/jetson-inference/build/aarch64/include/jetson-inference/tensorNet.h:754
[TRT]    Visualize     CPU   0.18391ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.00291ms  CUDA  41.21677ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.05448ms  CUDA   0.82302ms
[TRT]    Network       CPU  68.67709ms  CUDA  40.46104ms
[TRT]    Post-Process  CPU   0.03208ms  CUDA   0.03234ms
[TRT]    Visualize     CPU   0.18391ms  CUDA   0.00000ms
[TRT]    Total         CPU  68.94756ms  CUDA  41.31641ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06005ms  CUDA   1.00255ms
[TRT]    Network       CPU  52.79660ms  CUDA  41.95146ms
[TRT]    Post-Process  CPU   0.03323ms  CUDA   0.03323ms
[TRT]    Visualize     CPU   0.18391ms  CUDA   0.00000ms
[TRT]    Total         CPU  53.07379ms  CUDA  42.98724ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06453ms  CUDA   0.84771ms
[TRT]    Network       CPU  51.27650ms  CUDA  40.07010ms
[TRT]    Post-Process  CPU   0.04239ms  CUDA   0.05130ms
[TRT]    Visualize     CPU   0.18391ms  CUDA   0.00000ms
[TRT]    Total         CPU  51.56734ms  CUDA  40.96912ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 33
   -- Confidence: 0.507324
   -- Left:    345.938
   -- Top:     183.252
   -- Right:   1662.19
   -- Bottom:  919.688
   -- Width:   1316.25
   -- Height:  736.436
   -- Area:    969333
   -- Center:  (1004.06, 551.47)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.15182ms  CUDA   1.05438ms
[TRT]    Network       CPU  53.23712ms  CUDA  42.53214ms
[TRT]    Post-Process  CPU   0.04135ms  CUDA   0.04198ms
[cuda]      device not ready (error 600) (hex 0x258)
[cuda]      /home/jetson/Documents/jetson-inference/build/aarch64/include/jetson-inference/tensorNet.h:754
[TRT]    Visualize     CPU   0.32109ms  CUDA   0.00000ms
[TRT]    Total         CPU  53.75139ms  CUDA  43.62849ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.11047ms  CUDA   1.02823ms
[TRT]    Network       CPU  50.77255ms  CUDA  39.80708ms
[TRT]    Post-Process  CPU   0.05354ms  CUDA   0.05443ms
[TRT]    Visualize     CPU   0.32109ms  CUDA   0.00000ms
[TRT]    Total         CPU  51.25765ms  CUDA  40.88974ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06297ms  CUDA   0.88760ms
[TRT]    Network       CPU  52.57087ms  CUDA  41.75500ms
[TRT]    Post-Process  CPU   0.03385ms  CUDA   0.03432ms
[TRT]    Visualize     CPU   0.32109ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.98879ms  CUDA  42.67693ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 75
   -- Confidence: 0.523926
   -- Left:    366.562
   -- Top:     203.291
   -- Right:   1699.69
   -- Bottom:  904.922
   -- Width:   1333.12
   -- Height:  701.631
   -- Area:    935362
   -- Center:  (1033.12, 554.106)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.07120ms  CUDA   1.02349ms
[TRT]    Network       CPU  52.26660ms  CUDA  39.34182ms
[TRT]    Post-Process  CPU   0.13526ms  CUDA   0.13172ms
[cuda]      device not ready (error 600) (hex 0x258)
[cuda]      /home/jetson/Documents/jetson-inference/build/aarch64/include/jetson-inference/tensorNet.h:754
[TRT]    Visualize     CPU   0.17760ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.65066ms  CUDA  40.49703ms
[TRT]    ------------------------------------------------


detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06870ms  CUDA   0.98307ms
[TRT]    Network       CPU  52.37646ms  CUDA  41.67292ms
[TRT]    Post-Process  CPU   0.06818ms  CUDA   0.09068ms
[TRT]    Visualize     CPU   0.21661ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.72995ms  CUDA  42.74667ms
[TRT]    ------------------------------------------------

detected 1 objects in image
<detectNet.Detection object>
   -- ClassID: 73
   -- Confidence: 0.615234
   -- Left:    450.938
   -- Top:     224.648
   -- Right:   1778.44
   -- Bottom:  881.719
   -- Width:   1327.5
   -- Height:  657.07
   -- Area:    872261
   -- Center:  (1114.69, 553.184)

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06484ms  CUDA   0.86203ms
[TRT]    Network       CPU  50.53782ms  CUDA  39.58771ms
[TRT]    Post-Process  CPU   0.03682ms  CUDA   0.03703ms
[cuda]      device not ready (error 600) (hex 0x258)
[cuda]      /home/jetson/Documents/jetson-inference/build/aarch64/include/jetson-inference/tensorNet.h:754
[TRT]    Visualize     CPU   0.18281ms  CUDA   0.00000ms
[TRT]    Total         CPU  50.82230ms  CUDA  40.48677ms
[TRT]    ------------------------------------------------

detected 0 objects in image

[TRT]    ------------------------------------------------
[TRT]    Timing Report networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT]    ------------------------------------------------
[TRT]    Pre-Process   CPU   0.06693ms  CUDA   0.95547ms
[TRT]    Network       CPU  52.37615ms  CUDA  41.85193ms
[TRT]    Post-Process  CPU   0.04990ms  CUDA   0.05094ms
[TRT]    Visualize     CPU   0.20729ms  CUDA   0.00000ms
[TRT]    Total         CPU  52.70026ms  CUDA  42.85833ms
[TRT]    ------------------------------------------------



^CTraceback (most recent call last):
  File "/usr/local/bin/detectnet.py", line 69, in <module>
    detections = net.Detect(img, overlay=args.overlay)
KeyboardInterrupt
[gstreamer] gstDecoder -- stopping pipeline, transitioning to GST_STATE_NULL
[gstreamer] gstDecoder -- pipeline stopped

OK, it looks like you are receiving the RTSP frames at least and the DNN is processing. Next, can you try creating the videoOutput interface first?

In the detectnet the video interface is created first and then the model is initialized. Even i tried with my own code and the model was loading and doing the inferencing task but the stream was not displayed
my code:

#!/usr/bin/env python3
import jetson.inference
import jetson.utils
import RPi.GPIO as GPIO
import time

# set up the GPIO pin for the LED
led_pin = 24
GPIO.setmode(GPIO.BCM)
GPIO.setup(led_pin, GPIO.OUT)

camera = jetson.utils.videoSource("rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp", argv=['--input-codec=H264'])
#camera = jetson.utils.videoSource("csi://0")
display = jetson.utils.videoOutput("display://0") 

net = jetson.inference.detectNet("ssd-mobilenet-v2", threshold=0.5)

info = jetson.utils.cudaFont()

human = ['person']

# timestamp for last detection
last_detection_time = time.time()

while display.IsStreaming():
    img = camera.Capture()
    detections = net.Detect(img)
    current_time = time.time()
    if current_time - last_detection_time >= 2:  # check if 2 seconds have passed since last detection
        person_detected = False
        for detection in detections:
            class_desc = net.GetClassDesc(detection.ClassID)
            print("[+] ", class_desc)
            if class_desc in human:
                print("[*] person detected")
                person_detected = True
                last_detection_time = current_time  # update timestamp for last detection
                break
        if person_detected:
            print("[*] Turing led on")
            GPIO.output(led_pin, GPIO.HIGH) # turn on the LED
        else:
            print("[-] Turing Led off")
            GPIO.output(led_pin, GPIO.LOW) # turn off the LED
    display.Render(img)	
    display.SetStatus("Object Detection | Network {:.0f} FPS".format(net.GetNetworkFPS()))

Something funny is going on, but try this ordering next:

display = jetson.utils.videoOutput("display://0") 
camera = jetson.utils.videoSource("rtsp://admin:admin123@192.168.0.5:8080/h264_ulaw.sdp", argv=['--input-codec=H264'])
net = jetson.inference.detectNet("ssd-mobilenet-v2", threshold=0.5)

Yeah now it worked!!
Strange isnt it??

I have tested this on my home network. Now for testing this on the institutional network I will try this tomorrow and check if there is any issue and get back to you. I might get errors due to that very trash institutional firewall .

OK, glad that you got it working at home - thanks for working through that with me there. Good luck tomorrow!

$ video-viewer rtsp://admin:ad@min@IP_ADDR:554/Streaming/channels/1201 --input-codec=h264
[gstreamer] initialized gstreamer, version 1.14.5.0
[gstreamer] gstDecoder -- creating decoder for admin:ad@min@IP_ADDR
[gstreamer] gstDecoder -- Unauthorized
[gstreamer] gstDecoder -- pipeline string:
[gstreamer] rtspsrc location=rtsp://admin:ad@min@IP_ADDR:554/Streaming/channels/1201 latency=2000 ! queue ! rtph264depay ! h264parse ! omxh264dec ! video/x-raw ! appsink name=mysink
[video]  created gstDecoder from rtsp://admin:ad@min@IP_ADDR:554/Streaming/channels/1201
------------------------------------------------
gstDecoder video options:
------------------------------------------------
  -- URI: rtsp://admin:ad@min@IP_ADDR:554/Streaming/channels/1201
     - protocol:  rtsp
     - location:  admin:ad@min@IP_ADDR
     - port:      554
  -- deviceType: ip
  -- ioType:     input
  -- codec:      h264
  -- width:      0
  -- height:     0
  -- frameRate:  0.000000
  -- bitRate:    0
  -- numBuffers: 4
  -- zeroCopy:   true
  -- flipMethod: none
  -- loop:       0
  -- rtspLatency 2000
------------------------------------------------
[OpenGL] glDisplay -- X screen 0 resolution:  1920x1080
[OpenGL] glDisplay -- X window resolution:    1920x1080
[OpenGL] glDisplay -- display device initialized (1920x1080)
[video]  created glDisplay from display://0
------------------------------------------------
glDisplay video options:
------------------------------------------------
  -- URI: display://0
     - protocol:  display
     - location:  0
  -- deviceType: display
  -- ioType:     output
  -- codec:      raw
  -- width:      1920
  -- height:     1080
  -- frameRate:  0.000000
  -- bitRate:    0
  -- numBuffers: 4
  -- zeroCopy:   true
  -- flipMethod: none
  -- loop:       0
  -- rtspLatency 2000
------------------------------------------------
[gstreamer] opening gstDecoder for streaming, transitioning pipeline to GST_STATE_PLAYING
[gstreamer] gstreamer changed state from NULL to READY ==> mysink
[gstreamer] gstreamer changed state from NULL to READY ==> capsfilter0
[gstreamer] gstreamer changed state from NULL to READY ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from NULL to READY ==> h264parse0
[gstreamer] gstreamer changed state from NULL to READY ==> rtph264depay0
[gstreamer] gstreamer changed state from NULL to READY ==> queue0
[gstreamer] gstreamer changed state from NULL to READY ==> rtspsrc0
[gstreamer] gstreamer changed state from NULL to READY ==> pipeline0
[gstreamer] gstreamer changed state from READY to PAUSED ==> capsfilter0
[gstreamer] gstreamer changed state from READY to PAUSED ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from READY to PAUSED ==> h264parse0
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtph264depay0
[gstreamer] gstreamer stream status CREATE ==> src
[gstreamer] gstreamer stream status ENTER ==> src
[gstreamer] gstreamer changed state from READY to PAUSED ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from READY to PAUSED ==> rtspsrc0
[gstreamer] gstreamer changed state from READY to PAUSED ==> pipeline0
[gstreamer] gstreamer message new-clock ==> pipeline0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> capsfilter0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> omxh264dec-omxh264dec0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> h264parse0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtph264depay0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> queue0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer changed state from PAUSED to PLAYING ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer rtspsrc0 ERROR Unauthorized
[gstreamer] gstreamer Debugging info: gstrtspsrc.c(6116): gst_rtspsrc_send (): /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0:
Unauthorized (401)
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstreamer message progress ==> rtspsrc0
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
^C[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
^Creceived SIGINT
^Creceived SIGINT
^Creceived SIGINT
[gstreamer] gstDecoder -- failed to retrieve next image buffer
video-viewer:  failed to capture video frame
video-viewer:  shutting down...
[gstreamer] gstDecoder -- stopping pipeline, transitioning to GST_STATE_NULL
[gstreamer] gstDecoder -- pipeline stopped
video-viewer:  shutdown complete

I am getting Unauthorized (401) error. But i tested those credentials and they work properly for the web UI even it worked properly on the vlc in windows. Is it due to @ in the password?

I don’t believe the @ in the password is an issue (in my code at least), because you see it passed-through to the GStreamer rtspsrc element in the pipeline above. Are you able to run your own standalone GStreamer pipeline (i.e. with gst-launch-1.0) and successfully connect/authenticate with your camera?

Also I noticed that IP_ADDR is actually being passed into the GStreamer pipeline - which if this is an environment variable, it’s never getting resolved and GStreamer doesn’t actually know the IP. I recommend launching it with the IP address itself (or maybe it should be specified on the command-line as $IP_ADDR)

Not sure at all, but does TCP transport improves ?

video-viewer rtspt://admin:ad@min@IP_ADDR:554/Streaming/channels/1201 --input-codec=h264

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.