-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
about system requirement and camera #1
Comments
Hi there! First of all I'm glad you found it useful. It should be totally possible to change the camera feed. To do so please you should simply implement the same interface as Optitrack.h. The implementation of this class is exclusively used in the CameraController class, so if you need customize how the capture works you can simply change that class and it should be sufficient. Regarding system requirements, you should be able to run it in any system. It relies on CMake for building so it should be pretty straight forward to run it on mac, since it only uses OpenCV and boost. I have personally tested it on Windows 10 due to Optitrack camera drivers, but if you are not using Optitrack cameras you should be fine anyhow. Regarding the docker package, I don't have the time to prepare it for you, but if you have any specific issues during the building process just let me know whats going on and I'll try to give you a hand. |
Hi @bsespede ! |
Hi Nick! Given that you already have the pre-recorded frames, you might as well just use the opencv methods directly if you want to calibrate a set of cameras (you could just copy the calibration related code from my repo to make it easier). If your goal is to triangulate the pose you would need to download OpenPose (the version I described in the readme), and override it with my custom code in order to feed a multi-view scene. I don't know if there have been any improvements to OpenPose since I released this code, but I remember having issues using OpenPose for 3D poses out-of-the-box so I needed to add this custom code on top. I think there should be more advanced pose estimation algorithms than OpenPose by now though. Here are some sample results I've obtained back then: Hope it helps! |
Hi Sespede, Thank you for your great job, there are some questions for me:)
Can I replace OptiTrack with another camera? What does this need to do?
What is the system requirement? Can I run it on mac?
I spent a lot of time configuring the environment but it didn't work. Could you package it into docker?
Thank you~
The text was updated successfully, but these errors were encountered: