pb sdk 0.9.77 ?

Forum for development in the Java programming language.

pb sdk 0.9.77 ?

Postby f.maillet » 22 Oct 2016, 14:39

Hello,
coming back to eyeTribe after a long period, I tried the new library 0.9.77 but it doesn't works.
My first (simple) test project with 0.9.60 still working, but I can not get it works with the new library... I can not get the gazemanager to be activated, but there's no error.

Code: Select all
public class TestMain
{
    public static void main(String[] args) {
    // …
        final GazeManager gm = GazeManager.getInstance(); 
        boolean success = gm.activate();
        final GazeListener gazeListener = new GazeListener();
        gm.addGazeListener(gazeListener);
        System.out.println (gm.isActivated()) ;
    }
}
   
class GazeListener implements IGazeListener {
   
    @Override
    public void onGazeUpdate(GazeData gazeData)
    {
        System.out.println(gazeData.toString());
    }
}
       


Any help will be appreciated (updating the sample introductory java page for instance ?)
Thanks,
--frédéric
f.maillet
 
Posts: 11
Joined: 03 Jan 2016, 11:01

Re: pb sdk 0.9.77 ?

Postby Anders » 23 Oct 2016, 18:23

If the code you posted here is your complete program, then the "error" is not related to the eyetribe library. You program has no thread and therefore exits immediately after starting up. That is a fundamental programming issue.

The Java SDK contains a JavaFX sample project. I would advise you to look through the source code of that to get an example of how to structure a program.

Also, go to GitHub and search for 'eyetribe java'. There is much inspiration there.

I hope that helps :)
Anders
 
Posts: 124
Joined: 29 Oct 2013, 16:23

Re: pb sdk 0.9.77 ?

Postby f.maillet » 24 Oct 2016, 17:21

Thanks for your reply and the links for implementations samples. That will probably help. You're right, I'm not a so experienced Java programmer.

Anyway, I'm using NetBeans, and the code I posted runs perfectly with the 0.9.60 sdk : I get in the output window a real time updated gazeData string (even if there's no thread or frame, seems that your listener is doing the job ;)
When I switch the eyeTribe library (without doing anything else) to the recent 0.9.77, I only get a false gazeManager activated status. I precise the server is still running. And the program behaviour returns to normal when I switch back to 0.9.60...

Any idea ?
--Frederic

(editing) My reply may be unclear, so let me add some precision about my question : even if the program terminates (which is not the case by the way but that's not the problem) the problem relates with the gazeManager activation : with the new sdk it is not activated as the System.out.println (gm.isActivated()) = false indicates. The eyeTribe leds doesn't flash at all.
When I switch back with the previous sdk, I get a normal activation of the device (leds on and gazedata flooding the output)
f.maillet
 
Posts: 11
Joined: 03 Jan 2016, 11:01

Re: pb sdk 0.9.77 ?

Postby Anders » 26 Oct 2016, 11:09

I am unable to help you without your source code or knowledge about the system you are running your program on.

I would advice you to check out the EyeTribe Java SDK from Github and then compile & run the sample project.
Anders
 
Posts: 124
Joined: 29 Oct 2013, 16:23

Re: pb sdk 0.9.77 ?

Postby f.maillet » 27 Oct 2016, 05:50

Hello,
I already post the code above. It works perfectly under windows 10 in last Netbeans 8.2 IDE and using last 1.8.0_111 JDK.
Let me repost it below :

Code: Select all
package testeyetribe;

import com.theeyetribe.clientsdk.GazeManager;
import com.theeyetribe.clientsdk.IGazeListener;
import com.theeyetribe.clientsdk.data.GazeData;


public class TestMain
{
    public static void main(String[] args) {
 
        final GazeManager gm = GazeManager.getInstance(); 
        boolean success = gm.activate();
        final GazeListener gazeListener = new GazeListener();
        gm.addGazeListener(gazeListener);
        System.out.println (gm.isActivated()) ;
    }
}
   
class GazeListener implements IGazeListener {
   
    @Override
    public void onGazeUpdate(GazeData gazeData)
    {
        System.out.println(gazeData.toString());
    }

       
}



I'm a student in Master 2 Research in cognitive psychology. I'd like to use the EyeTribe in a small course research project we have. The Java code is on work, quite bigger than this simple test I had written on my first tries with eyeTribe. And I have the same behaviour with this project : it perfectly runs with the previous library, but does not receive anything from eyeTribe with the new one.
So let me insist, this seems not to be a problem with the program design...

As I previously said, this code, as simpler as it is, runs perfectly well (the output window is correctly flooded with gaze datas) when I use the 0.9.60 sdk.
When I switch the library to your last 0.9.77, the function gm.activate() doesn't seem to do anything (without making any other change in the program).
--Frédéric
f.maillet
 
Posts: 11
Joined: 03 Jan 2016, 11:01

Re: pb sdk 0.9.77 ?

Postby Anders » 27 Oct 2016, 09:31

As I already mentioned, your program exits immediately since there is no thread or infinite loop. That is the problem. There is no doubt about it.

If the code you posted used to 'work' with an older SDK version, then the older SDK contained bugs and not the latest one.

I still advice you to go and check other peoples work with the SDK by searching for 'eyetribe java' on Github. You'll see, that other people use threads or infinite loops to keep theirs program alive. You should do the same.
Anders
 
Posts: 124
Joined: 29 Oct 2013, 16:23

Re: pb sdk 0.9.77 ?

Postby f.maillet » 27 Oct 2016, 21:50

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.
f.maillet
 
Posts: 11
Joined: 03 Jan 2016, 11:01

Re: pb sdk 0.9.77 ?

Postby Anders » 28 Oct 2016, 09:39

I am unable to help you without your source code or knowledge about the system you are running your program on.


Could you share your entire project so I can inspect it? Could you share information of the system you are trying to run your program on (OS, Java version etc)?
Anders
 
Posts: 124
Joined: 29 Oct 2013, 16:23

Re: pb sdk 0.9.77 ?

Postby f.maillet » 28 Oct 2016, 09:51

Hello Anders,
Nice to read you, I previously mentionned I was working under windows 10 in last Netbeans 8.2 IDE and using last 1.8.0_111 JDK.
you didn't succeed in running the above code ? It should be sufficient in order to check for the sdk I think.

Anyway, you can find my university project here (not sure you will find it correctly proof coded, but as for now it works nicely with the 0.9.60 sdk (which may be sufficient for me, my post was only related to your notice that the latest sdk seems to be in trouble while activating the gazemanager)

https://github.com/fmaillet/Projet-ACIT
f.maillet
 
Posts: 11
Joined: 03 Jan 2016, 11:01

Re: pb sdk 0.9.77 ?

Postby Anders » 28 Oct 2016, 11:17

I've set up a simple project on Github, see eyetribe-java-gradlesetup. I am unable to reproduce any of the errors you seem to be experiencing. I've tried using both the Bintray package as well as the prebuilt JAR from the SDK 'releases' section. I establish connection immediately in both cases.

I still believe that the issues you are experiencing are caused by your program architecture. My best advise is still to look into Java threading and look at the example projects available online. I do not know how else to help you.
Anders
 
Posts: 124
Joined: 29 Oct 2013, 16:23

Next

Return to Java



cron