leapmotion / ProjectNorthStar

The open-source files comprising Leap Motion's Project North Star AR Headset.
https://leapmotion.github.io/ProjectNorthStar/
GNU General Public License v3.0
1.7k stars 269 forks source link

Updates to Calibration Readme and small fix to dualStereoChessboardCalibration.py #38

Open BryanChrisBrown opened 5 years ago

BryanChrisBrown commented 5 years ago

The readme for the calibration software currently states to import opencv-python, however this does not include the proper files in order to import aruco, which exists in the extended library opencv-contrib-python.

I've also added an additional flag , allow_pickle=True)to the .npz file import in the dualStereoChessboardCalibration.py file, located on line 77. We wasted a lot of time trying to figure out why numpy couldn't parse the .npz file in our python environments and this solved that issue.

Special thanks to Alina Christenbury and SafariMonkey from the northstar discord server for working with me on this.