Hi
I have a couple of questions on the python visualizer in people counting lab.
1. In line 604-616 of gui_main.py (updateGraph), the code removes the static point cloud and update indexes. I don't understand the logic of the following code. firstZ is the first element in statics. Does that mean the moving points is stored first in pointCloud and then the static points?
firstZ = statics[0][0] # index of first static point
numPoints = firstZ
pointCloud = pointCloud[:,:firstZ]
2. In addition, the point cloud and indexes are updated but the targets are not updated accordingly. Why is that, e.g., no static pointCloud is included in tracking the targets?
3. In line 620-642 of gui_main.py (updateGraph), why do we need the point cloud persistence to update the graph?
Thanks!
Kai