Sam Lerman
Sam Lerman

Reputation: 311

I have a list of 3D coordinates over time, that is, a video of points. How can I visualize this in Python?

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.

Upvotes: -1

Views: 318

Answers (1)

Mix
Mix

Reputation: 178

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.

Upvotes: 0

Related Questions