Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) Tx2
• JetPack Version (valid for Jetson only) 4.6.2
• Issue Type( questions, new requirements, bugs) questions
I found a gstreamer example code like bellow:
$ gst-launch-1.0 filesrc \
location=<filename_h264.mp4> ! \
qtdemux ! queue ! h264parse ! nvv4l2decoder \
enable-frame-type-reporting=1 ! nv3dsink -e
Which does print out the frame-type of each frame in terminal.
So I want to use this information within my python cv2 code for cv2.VideoCapatue($gst-piplne).
How to pass frame and frame-type infomation in my pthon cv2 Code?
(For the purpose of performing yolo detector on I-Frame )