PS Move Setup is a co-registration utility for the PS Move + PS Eye using the Oculus DK2 tracker as a reference.
The goal is to show the PS Move controller in the same space referential than the Oculus DK2 to support 1:1 hand tracking in virtual reality applications.
It's written for Unity 5 and cboulay version of the PS Move API, which features a new tracking algorithm and an updated implementation of the PS3EYEDriver driver for the PS Eye.
It's been developed for MS Windows but it should hopefully work on OS X. Linux support would probably require some code adaptation.
Previously the only driver available for MS Windows was the CL Eye driver but it was not free, unrealiable, it didn't support 64 bit applications and looked basically unmaintained.
Instructions to set up the PS Move and the PS Eye on MS Windows and OS X can be found here : https://github.com/cboulay/psmove-ue4/wiki
Clone this repository locally then open it with Unity 5.1. Then build the project.
Strap the PSMove to the DK2 (e.g., using rubber bands) and place them both in view of their cameras. Run the exe file you built with Unity. When the application is running, move the headset-controller around their workspaces. After 300 samples are collected, the utility will update the position of the PSMove controller in the same coordinate space as the DK2.
The utility reads several hundreds positions of the PS Move and the Oculus DK2 (strapped together with rubber bands), stores them in a list of correlated positions and computes the rotation, translation and scale between the two sets of 3D points.
It's known as the Wahba's problem and can be solved with the Kabsch algorithm.
The implementation uses the Horn method which is based on quaternions and seems to be more robust, precise and numerically stable than the SVD method.
A first step of outlier rejection is implemented using the absolute deviation around the median.
The Math.NET Numerics library is used for the implementation of the Horn method (eigendecomposition of a matrix).
The utility is not complete yet. The registration code is functional and works correctly with test data, but the results are still unreliable when using the positions read from the PS Move. It's most probably because of noise or distortion in the tracking algorithm.
The goal is to reliably compute the rotation and translation between the two space referentials, obtain the corresponding transformation matrix and store it in a file in the C:\Users\<Username>\AppData\Roaming\.psmoveapi
directory so it can be used directly by VR applications and games.
###Relevant discussions
- Playstation Move controllers working reliably in UE4 in OSX and Windows. Now how to co-register with DK2? on reddit
- Working PS Move plugin for UE4; need help coreg with DK2 on the Oculus VR Forums
Note: the Oculus Development Kit 2 3D model is from MannyLectro.