yes, the program terminates, but before terminating it says (System.out.println...) it hasn't succeeded in activating gazemanager...
So, let's build a program that doesn't terminate :
- Code: Select all
package testeyetribe;
import com.theeyetribe.clientsdk.GazeManager;
import com.theeyetribe.clientsdk.IGazeListener;
import com.theeyetribe.clientsdk.data.GazeData;
import java.awt.Point;
import javax.swing.JFrame;
import static javax.swing.JFrame.EXIT_ON_CLOSE;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;
public class TestMain
{
static GazeManager gm ;
static JFrame myFrame ;
static JLabel gazePointer ;
public static void main(String[] args) {
gm = GazeManager.getInstance();
boolean success = gm.activate();
System.out.println (success) ;
final GazeListener gazeListener = new GazeListener();
gm.addGazeListener(gazeListener);
System.out.println (gm.isActivated()) ;
//Add a window
myFrame = new JFrame ("Test EyeTribe") ;
myFrame.setSize (700, 700) ;
myFrame.setLayout(null);
myFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);
myFrame.setLocationRelativeTo(null);
myFrame.setVisible(true);
//Add a label
gazePointer = new JLabel ("X") ;
gazePointer.setBounds (350, 350, 20, 20) ;
myFrame.getContentPane().add(gazePointer) ;
gazePointer.setVisible (true) ;
}
}
class GazeListener implements IGazeListener {
@Override
public void onGazeUpdate(GazeData gazeData)
{
Point p = new Point ((int) gazeData.smoothedCoordinates.x, (int) gazeData.smoothedCoordinates.y) ;
SwingUtilities.convertPointFromScreen(p, TestMain.myFrame.getContentPane()) ;
p.x = p.x - TestMain.gazePointer.getWidth() / 2 ;
p.y = p.y - TestMain.gazePointer.getHeight() / 2 ;
TestMain.gazePointer.setLocation ( p ) ;
}
}
Not so optimal and beautiful may be, but than now the program doesn't terminate, you have a little frame with a cross that should roughly follow user gaze. Is that a correct one ?
I've just tested this and I still have the same behaviour :
-) with the 0.9.60 sdk the cross is correctly following my gaze in the window boundaries
-) with the 0.9.77 sdk, the program doesn't terminate, the cross is still in the window and in the output, you have false and false, indicating the gazemanager isn'nt activated...
ps: by the way, your link to gitHub is of limited interest, the three projects pointed out are written with old libraries (2014, 2015 and 0.9.60 for the more recent one), and therefore doesn't address the question of this post which is related to your last library. Nevertheless, I'll take some time this week-end to check the more recent one (heat-map) and compile it with the 0.9.77 library.