• Hardware Platform (Jetson / GPU)
Jetson Orin
• DeepStream Version
6.1.1
• JetPack Version (valid for Jetson only)
5.0.2
• TensorRT Version
8.4.1-1+cuda11.4
Hi, I am using the analytics plugin and I am trying to get the count of the line crossing set and came across two definitions objLCCumCnt
and objLCCurrCnt
.
What is the difference between those two?
objLCCumCnt
definition states that: “it holds a map of total cumulative count of Line crossing for configured lines”
objLCCurrCnt
Holds a map of total count of Line crossing in current frame for configured lines
what does current frame means?
I ran the application with 3 sample videos and only one line and objLCCumCnt came with the cumulative counts that show on the screen and for objLCCurrCnt
the value was always 0.
What will happen if I have multiple lines? , are all going to be added into objLCCumCnt?
Answer for this; I figured I can retrieve the cumulative count using using key, value pair; where key is the line crossing label. So it is not adding a cumulative for all the lines.