-1

So the data might look like:

at time 0 : [(8,8,9), (2,4,5), ...]
at time 1 : [(3,5,1), (7,4,3), ...]
...
at time N : ...

I need to visualize these points in a video using Python.

Sam Lerman
  • 301
  • 2
  • 8
  • 1
    it this your answer? https://stackoverflow.com/questions/38118598/3d-animation-using-matplotlib OR https://stackoverflow.com/questions/52630340/animate-a-3d-matrix-with-matplotlib-in-jupyter-notebook – I'mahdi Aug 21 '21 at 14:55

1 Answers1

0

In my experience it would be easiest to use OpenCV library (tutorials). Covert your data into a series of Mat (image) objects, and display using its standard GUI frame by frame.

Mix
  • 161
  • 1
  • 10