Examples of Fixation


Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.fixation.Fixation

        final int size = fixations.size();

        if (size < 2) return;

        final Fixation a = fixations.get(size - 2);
        final Fixation b = fixations.get(size - 1);

        final int x1 = a.getCenter().x;
        final int x2 = b.getCenter().x;

        final int delta = x2 - x1;

        final FixationLineUtil fixationLineUtil = new FixationLineUtil(fixationLine);
        final Rectangle r = fixationLineUtil.getRectangle();
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.