All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aiwiown.face.domain.detect.Eyegaze Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.domain.detect;

import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;

public class Eyegaze extends ApiObject {
    private static final long serialVersionUID = -5547203991356015613L;
    @ApiField("left_eye_gaze")
    private EyegazeInfo leftEyeGaze;
    @ApiField("right_eye_gaze")
    private EyegazeInfo rightEyeGaze;

    public EyegazeInfo getLeftEyeGaze() {
        return leftEyeGaze;
    }

    public void setLeftEyeGaze(EyegazeInfo leftEyeGaze) {
        this.leftEyeGaze = leftEyeGaze;
    }

    public EyegazeInfo getRightEyeGaze() {
        return rightEyeGaze;
    }

    public void setRightEyeGaze(EyegazeInfo rightEyeGaze) {
        this.rightEyeGaze = rightEyeGaze;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy