Examples of Saccade


Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.saccade.Saccade

        if (event.getType() == FixationEventType.FIXATION_START && this.lastFixation != null) {

            final Fixation finalLastFixation = this.lastFixation;
            final Fixation currentFixation = event.getFixation();

            final Saccade saccade = new Saccade() {

                @Override
                public Fixation getStart() {
                    return finalLastFixation;
                }
View Full Code Here

Examples of de.dfki.km.text20.services.evaluators.gaze.listenertypes.saccade.Saccade

                return l;
            }

            @Override
            public Saccade getSaccade() {
                return new Saccade() {

                    @Override
                    public Fixation getEnd() {
                        return current;
                    }
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.