remote-calibrator 0.2.1 → 0.2.2-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +5 -1
  3. package/homepage/example.js +13 -12
  4. package/lib/RemoteCalibrator.min.js +1 -1
  5. package/lib/RemoteCalibrator.min.js.LICENSE.txt +8 -1
  6. package/lib/RemoteCalibrator.min.js.map +1 -1
  7. package/package.json +10 -9
  8. package/src/WebGazer4RC/.gitattributes +10 -0
  9. package/src/WebGazer4RC/LICENSE.md +15 -0
  10. package/src/WebGazer4RC/README.md +142 -0
  11. package/src/WebGazer4RC/gnu-lgpl-v3.0.md +163 -0
  12. package/src/WebGazer4RC/gplv3.md +636 -0
  13. package/src/WebGazer4RC/package-lock.json +1133 -0
  14. package/src/WebGazer4RC/package.json +28 -0
  15. package/src/WebGazer4RC/src/dom_util.mjs +27 -0
  16. package/src/WebGazer4RC/src/facemesh.mjs +150 -0
  17. package/src/WebGazer4RC/src/index.mjs +1213 -0
  18. package/src/WebGazer4RC/src/mat.mjs +301 -0
  19. package/src/WebGazer4RC/src/params.mjs +29 -0
  20. package/src/WebGazer4RC/src/pupil.mjs +109 -0
  21. package/src/WebGazer4RC/src/ridgeReg.mjs +104 -0
  22. package/src/WebGazer4RC/src/ridgeRegThreaded.mjs +161 -0
  23. package/src/WebGazer4RC/src/ridgeWeightedReg.mjs +125 -0
  24. package/src/WebGazer4RC/src/ridgeWorker.mjs +135 -0
  25. package/src/WebGazer4RC/src/util.mjs +348 -0
  26. package/src/WebGazer4RC/src/util_regression.mjs +240 -0
  27. package/src/WebGazer4RC/src/worker_scripts/mat.js +306 -0
  28. package/src/WebGazer4RC/src/worker_scripts/util.js +398 -0
  29. package/src/WebGazer4RC/test/regression_test.js +182 -0
  30. package/src/WebGazer4RC/test/run_tests_and_server.sh +24 -0
  31. package/src/WebGazer4RC/test/util_test.js +60 -0
  32. package/src/WebGazer4RC/test/webgazerExtract_test.js +40 -0
  33. package/src/WebGazer4RC/test/webgazer_test.js +160 -0
  34. package/src/WebGazer4RC/test/www_page_test.js +41 -0
  35. package/src/components/onCanvas.js +1 -2
  36. package/src/components/sound.js +12 -0
  37. package/src/const.js +8 -0
  38. package/src/core.js +36 -0
  39. package/src/css/distance.scss +1 -0
  40. package/src/css/main.css +11 -0
  41. package/src/css/panel.scss +1 -0
  42. package/src/distance/distance.js +8 -1
  43. package/src/distance/distanceTrack.js +2 -2
  44. package/src/index.js +2 -0
  45. package/src/panel/panel.js +53 -21
  46. package/src/screenSize.js +2 -1
  47. package/src/text.json +5 -3
@@ -8,7 +8,7 @@
8
8
  /*!
9
9
  *
10
10
  * @license
11
- * EasyEyes Remote Calibrator (remote-calibrator) Version 0.2.1
11
+ * EasyEyes Remote Calibrator (remote-calibrator) Version 0.2.2-beta.3
12
12
  * https://github.com/EasyEyes/remote-calibrator
13
13
  *
14
14
  * Copyright 2021 Denis Pelli Lab
@@ -233,3 +233,10 @@
233
233
  * limitations under the License.
234
234
  * =============================================================================
235
235
  */
236
+
237
+ /**
238
+ * Tone.js
239
+ * @author Yotam Mann
240
+ * @license http://opensource.org/licenses/MIT MIT License
241
+ * @copyright 2014-2019 Yotam Mann
242
+ */