I’m trying to accomplish the following.
Creating a graph that shows time, and then when the camera doesn’t see an object. I basically want the plot of the blocks position, but if the camera misses the object for a set period of time, I would plot a x line to show that it lost the object.
Any ideas on how to do this? I tried:
If(blocks)
Do stuff and increment time
if(!blocks)
increment time
Then I just plotted the position of the blocks, vs the time with python, however this doesn’t seem to work.
Thanks for any hints or thoughts!