Examples of FixationLineImpl


Examples of de.dfki.km.text20.services.evaluators.gaze.impl.elements.FixationLineImpl

    /**
     * @param fixations
     * @return
     */
    private FixationLineImpl createFixationLine(final List<Fixation> fixations) {
        return new FixationLineImpl(fixations);
    }
View Full Code Here

Examples of de.dfki.km.text20.services.evaluators.gaze.impl.elements.FixationLineImpl

        // Need a minimum size
        if (this.lastFixations.size() < 3) return;

        // Check if we should look for a new fixation line ...
        if (this.currentFixationLine == null) {
            final FixationLineImpl candidata = createFixationLine(getLast(3));
            final FixationLineUtil flu = new FixationLineUtil(candidata);

            // Check start of line.
            for (double d : flu.getAllAngles()) {
                if (Math.abs(d) > 0.4) return;
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.