• JetsonNano
• DS6.0
• Jetpack 4.6
• TensorRT 8.0.1
I have a multi-input rtsp video after inference and tracking, how to get the data of each channel through the source id
my code:
…
while l_frame is not None:
try:
frame_meta = pyds.NvDsFrameMeta.cast(l_frame.data)
source_id = frame_meta.source_id
…
how to get every frame’s data with source_id
thanks for your help!!