Examples of FixationUtil


Examples of de.dfki.km.text20.services.evaluators.gaze.util.FixationUtil

                    return saccade;
                }

                @Override
                public long getGenerationTime() {
                    return new FixationUtil(currentFixation).getEndDate().getTime();
                }
            });
        }
    }
View Full Code Here

Examples of de.dfki.km.text20.services.evaluators.gaze.util.FixationUtil

     * @return .
     */
    public static double calculateTemporalHealthiness(final Fixation fixation) {
        double baseValue = 1.0;

        final FixationUtil fixationUtil = new FixationUtil(fixation);
        final long fixationDuration = fixationUtil.getFixationDuration();

        // Improve this ...
        if (fixationDuration < 50) baseValue *= 0;
        if (fixationDuration > 400) baseValue *= 0;

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.