Questions on the projet #2
-
I am a Masters degree student from Portugal and I am participating in an investigation scholarship about implementing a low-cost open-source Motion capture system to be used in Smart Factories. I would like to make some questions about the system you have implemented. How do you synchronize the cameras? Do you sync them with any time of Time Protocol, like Precision TP? Or use external sync? Wishing a continuation of good work, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Dear GuilhermeMEESantos, Thank you for your question. It sounds like you are working on an exciting project too! For this system, we chose to synchronize the modules based on NTP. I have done performance tests for the delays between camera modules at the initialization of the recordings because the difference in activation of the camera was the aspect causing most delays and something out of our hands (not directly related to the NTP). The tests resulted in an acceptable (for our application) average difference of about 10ms between the modules. However, this might be an overestimation of the error since we were recording a 60Hz screen. We have only tested it on Raspberry Pi's, so it will not work directly on a Jetson since we want to share an image of the Raspbian OS, including our software. Though the same principle could work well on a Jetson device, maybe the Jetson can even handle multiple cameras connected to one module? Unfortunately, I have no experience with Jetson, so I won't be able to help you any further there. Good luck with your project and studies, Kind regards, Jinne |
Beta Was this translation helpful? Give feedback.
Dear GuilhermeMEESantos,
Thank you for your question. It sounds like you are working on an exciting project too!
For this system, we chose to synchronize the modules based on NTP. I have done performance tests for the delays between camera modules at the initialization of the recordings because the difference in activation of the camera was the aspect causing most delays and something out of our hands (not directly related to the NTP). The tests resulted in an acceptable (for our application) average difference of about 10ms between the modules. However, this might be an overestimation of the error since we were recording a 60Hz screen.
We have only tested it on Raspberry Pi's, so it will…