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.
- package/CHANGELOG.md +19 -0
- package/README.md +5 -1
- package/homepage/example.js +13 -12
- package/lib/RemoteCalibrator.min.js +1 -1
- package/lib/RemoteCalibrator.min.js.LICENSE.txt +8 -1
- package/lib/RemoteCalibrator.min.js.map +1 -1
- package/package.json +10 -9
- package/src/WebGazer4RC/.gitattributes +10 -0
- package/src/WebGazer4RC/LICENSE.md +15 -0
- package/src/WebGazer4RC/README.md +142 -0
- package/src/WebGazer4RC/gnu-lgpl-v3.0.md +163 -0
- package/src/WebGazer4RC/gplv3.md +636 -0
- package/src/WebGazer4RC/package-lock.json +1133 -0
- package/src/WebGazer4RC/package.json +28 -0
- package/src/WebGazer4RC/src/dom_util.mjs +27 -0
- package/src/WebGazer4RC/src/facemesh.mjs +150 -0
- package/src/WebGazer4RC/src/index.mjs +1213 -0
- package/src/WebGazer4RC/src/mat.mjs +301 -0
- package/src/WebGazer4RC/src/params.mjs +29 -0
- package/src/WebGazer4RC/src/pupil.mjs +109 -0
- package/src/WebGazer4RC/src/ridgeReg.mjs +104 -0
- package/src/WebGazer4RC/src/ridgeRegThreaded.mjs +161 -0
- package/src/WebGazer4RC/src/ridgeWeightedReg.mjs +125 -0
- package/src/WebGazer4RC/src/ridgeWorker.mjs +135 -0
- package/src/WebGazer4RC/src/util.mjs +348 -0
- package/src/WebGazer4RC/src/util_regression.mjs +240 -0
- package/src/WebGazer4RC/src/worker_scripts/mat.js +306 -0
- package/src/WebGazer4RC/src/worker_scripts/util.js +398 -0
- package/src/WebGazer4RC/test/regression_test.js +182 -0
- package/src/WebGazer4RC/test/run_tests_and_server.sh +24 -0
- package/src/WebGazer4RC/test/util_test.js +60 -0
- package/src/WebGazer4RC/test/webgazerExtract_test.js +40 -0
- package/src/WebGazer4RC/test/webgazer_test.js +160 -0
- package/src/WebGazer4RC/test/www_page_test.js +41 -0
- package/src/components/onCanvas.js +1 -2
- package/src/components/sound.js +12 -0
- package/src/const.js +8 -0
- package/src/core.js +36 -0
- package/src/css/distance.scss +1 -0
- package/src/css/main.css +11 -0
- package/src/css/panel.scss +1 -0
- package/src/distance/distance.js +8 -1
- package/src/distance/distanceTrack.js +2 -2
- package/src/index.js +2 -0
- package/src/panel/panel.js +53 -21
- package/src/screenSize.js +2 -1
- 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.
|
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
|
+
*/
|