**• Hardware Platform:Jetson
**• DeepStream Version: 5.1
**• JetPack Version: 4.5.1
**• TensorRT Version: 7.1.3.0
**• Issue Type: Question
Hello,
I have a problem with line-crossing feature of nvdsanalytics. I have defined two lines, Entry and Exit. Detected objects can trigger these events only once for each. If object crossed the Entry and Exit lines once for each, following line-crossings do not create events.
I need all crossing events until object is disappeared because of this. In some cases for my counting application, people crosses the lines for several times and I should ignore all the Entry&Exit pairs. If there is no event left after ignoring the pairs, this indicates that person kept his/her beginning position, actually did not enter/exit from that area. If there is only one Exit event left, that indicates person changed his/her beginning position, exit from that area. But as I mentioned, nvdsanalytics does not create any events after one Entry&Exit pair.
Alternative solutions may be;
- Clear only lcStatus information of objects with an Entry&Exit pair each time, wait for disappear
- Removing all metadata related to objects with an Entry&Exit pair, track with new id (act it like its a new detected object)
By now, I could not apply any of these solutions.
Do line-crossing really works like that or there is something wrong with my application or configurations ? If it works like that, how can I get what I need, any opinions ?