Hi everybody!
I was wondering, if anybody successfully imported the TET Java Library in Processing?
Any ideas how this could work?
Thanks!
Philipp
import com.google.gson.Gson;
import com.theeyetribe.client.*;
void setup() {
GazeManager gm=GazeManager.getInstance();
boolean success = gm.activate(GazeManager.ApiVersion.VERSION_1_0, GazeManager.ClientMode.PUSH);
GazeListener gazeListener = new GazeListener();
gm.addGazeListener(gazeListener);
size(640, 360);
}
void draw() {
}
private static class GazeListener implements IGazeListener
{
@Override
public void onGazeUpdate(GazeData gazeData)
{
System.out.println("weird hexadecimal stuf: "+gazeData.toString());
}
}
... it should be compiled for Java 1.6, and this one is later
//IMPORT LIBRARIES
import com.theeyetribe.client.*;
//SETUP
void setup() {
GazeManager gm=GazeManager.getInstance();
boolean success = gm.activate(GazeManager.ApiVersion.VERSION_1_0, GazeManager.ClientMode.PUSH);
GazeListener gazeListener = new GazeListener();
gm.addGazeListener(gazeListener);
size(800, 800);
}
//DRAW
void draw() {
ellipse(gazeRaw.x, gazeRaw.y, 10, 10);
}
boolean fixation;
int msTimeStamp, state;
String timeStamp;
float lPupilSize, rPupilSize;
PVector
gazeRaw, gazeSmooth,
lPupilPos, rPupilPos,
lGazeRaw, rGazeRaw,
lGazeSmooth, rGazeSmooth;
private class GazeListener implements IGazeListener
{
@Override
public void onGazeUpdate(GazeData gazeData)
{
//GENERAL//
//integer: state
state = gazeData.state;
//integer: time stamp in ms
msTimeStamp = int(gazeData.timeStamp);
//string: time stamp
timeStamp = gazeData.timeStampString;
//BOTH EYES//
//boolean: is fixation?
fixation = gazeData.isFixated;
//from double to PVector: raw gaze coordinates of both eyes
gazeRaw = new PVector((float)gazeData.rawCoordinates.x, (float)gazeData.rawCoordinates.y);
//from double to PVector: smooth gaze x and y coordinates of both eyes
gazeSmooth = new PVector((float)gazeData.smoothedCoordinates.x, (float)gazeData.smoothedCoordinates.y);
//LEFT AND RIGHT EYE//
//from double to float: pupil size of left and right eye
//lPupilSize = (float)gazeData.leftEye.pupilSize;
//rPupilSize = (float)gazeData.rightEye.pupilSize;
////ERROR: CANNOT CAST FROM DOUBLE TO FLOAT
//from double to PVector: pupil position of left eye
lPupilPos = new PVector((float)gazeData.leftEye.pupilCenterCoordinates.x, (float)gazeData.leftEye.pupilCenterCoordinates.y);
//from double to PVector: pupil position of right eye
rPupilPos = new PVector((float)gazeData.rightEye.pupilCenterCoordinates.x, (float)gazeData.rightEye.pupilCenterCoordinates.y);
//from double to PVector: raw gaze coordinates of left eye
lGazeRaw = new PVector((float)gazeData.leftEye.rawCoordinates.x, (float)gazeData.leftEye.rawCoordinates.y);
//from double to PVector: raw gaze coordinates of right eye
rGazeRaw = new PVector((float)gazeData.rightEye.rawCoordinates.x, (float)gazeData.rightEye.rawCoordinates.y);
//from double to PVector: smooth gaze of left eye
rGazeSmooth = new PVector((float)gazeData.leftEye.smoothedCoordinates.x, (float)gazeData.leftEye.smoothedCoordinates.y);
//from double to float: smooth gaze coordinates of right eye
rGazeSmooth = new PVector((float)gazeData.rightEye.smoothedCoordinates.x, (float)gazeData.rightEye.smoothedCoordinates.y);
}
}
1. Pupil size can't be converted from Double to float. Error: "Cannot cast from Double to float"
2. Processing uses the gaze coordinates from the whole screen in the applet window.
3. As state, I get the numbers 4 or 7. What does that mean?