How to drop frames in streaming in rtsp from cctvs in Deepstream's poseclassification-net

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU) RTX4080
• DeepStream Version 7.0
We can drop frames using config file in deepstream-app.
But for this deepstream-pose-classification, how can i drop frames in streaming from cctv?

Which parameter did you configure to drop frames in deepstream-app?

drop-frame-interval
https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_ref_app_deepstream.html

OK. You need to port the deepstream-app source code below to the deepstream_pose_classification_app.cpp.

decodebin_child_added in the sources\apps\apps-common\src\deepstream_source_bin.c dir

  if (g_strstr_len (name, -1, "nvv4l2decoder") == name) {
    g_object_set (object, "drop-frame-interval", <frame number>,
        NULL);
  }

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