Skip to content

Commit

Permalink
Merge pull request #63 from TheD2Lab/ui-help-page
Browse files Browse the repository at this point in the history
UI Help Page
  • Loading branch information
angeloryan authored Oct 24, 2024
2 parents 8986aff + 0c1000d commit 7b1d391
Show file tree
Hide file tree
Showing 32 changed files with 242 additions and 169 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
**B**each **E**nvironment for the **A**nalyti**c**s of **H**uman **Gaze** (BEACH-Gaze) provides reuseable and extensible support to the broader scientific community interested in descriptive and predictive gaze analytics applied to a wide range of domains.
**B**each **E**nvironment for the **A**nalyti**c**s of **H**uman **Gaze** (BEACH-Gaze) provides reuseable and extensible support to the broader scientific community interested in descriptive and predictive gaze analytics applied to a wide range of domains. BEACH-Gaze is open-source software issued under the GNU General Public License.

# Abstract

The purpose of this codebase is to provide an eye gaze analysis tool that utilizes machine learning algorithms to predict the fatigue level of participants. The codebase is compatible with Gazepoint's GP3 Desktop and GP3HD V2 eyetrackers and uses the WEKA software collection for its data mining procedures.
The purpose of this codebase is to provide an eye gaze analysis tool that utilizes machine learning algorithms to predict the fatigue level of participants. The codebase is compatible with Gazepoint's GP3 and GP3HD eyetrackers and uses the WEKA software collection for its data mining procedures.

# Setup

Expand Down
Binary file removed documentation.pdf
Binary file not shown.
Binary file added img/ui-descriptive-analytics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/ui-predictive-analytics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Analysis.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.SCREEN_HEIGHT;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Angles.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.FIXATION_ID;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.AOI_LABEL;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Blinks.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.BLINK_ID;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import weka.classifiers.*;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Constants.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

/**
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/ConvexHull.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.FIXATION_X;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Coordinate.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

/** Simple data class for holding fixation coordinate information. */
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/DataEntry.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import java.util.ArrayList;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/DataFilter.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.FIXATION_ID;
Expand Down
25 changes: 2 additions & 23 deletions src/main/java/com/github/thed2lab/analysis/DescriptiveStats.java
Original file line number Diff line number Diff line change
@@ -1,28 +1,7 @@
package com.github.thed2lab.analysis;
/*
* Copyright (c) 2013, Bo Fu
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Event.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.CURSOR_EVENT;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/FileHandler.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import java.io.File;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Fixations.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.FIXATION_DURATION;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Gaze.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.*;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/GazeEntropy.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/

package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.AOI_LABEL;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Main.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

public class Main {
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Parameters.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import java.io.File;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Patterns.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import java.util.ArrayList;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/QuickStart.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.FIXATION_ID;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Saccades.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.FIXATION_DURATION;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/github/thed2lab/analysis/Sequences.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
* BEACH-Gaze is open-source software issued under the GNU General Public License.
*/
package com.github.thed2lab.analysis;

import static com.github.thed2lab.analysis.Constants.AOI_LABEL;
Expand Down
Loading

0 comments on commit 7b1d391

Please sign in to comment.