WDMiller wrote:4. Forgive my ignorance, because I know this is mentioned on the website, but I'm not familiar with 32-bit masked state integers. Is it possible to list the possible values that TET outputs, and what they mean? For example, I've seen state codes of 4, 7, 8, and 16 in the short time I've started exploring.
Javier wrote:The masked integers are used to represent the state, and can take many values for a given sample. You can take a look at the C# SDK and samples on GitHub to see how you can check whether a specific state is "present" in the integer received over the API. In particular, check the ProcessSample method in the TrackBox sample.
I have the same question and problem. I would like to use the "state" column of the output files to filter for blinks and data loss in general. I'm not familiar with programming in C or C# either and the 'ProcessSample' code that Javier pointed to did not help me with the interpretation of these values.
Support requests in this matter are always answered with a reference to look at the API, yet all I could find is the following:
Tracker State (
http://dev.theeyetribe.com/api/)
When requesting the tracker device connectivity state value trackerstate it returns an integer/enum with a value as described below:
State Description Value
TRACKER_CONNECTED Tracker device is detected and working 0
TRACKER_NOT_CONNECTED Tracker device is not detected 1
TRACKER_CONNECTED_BADFW Tracker device is detected but not working due to wrong/unsupported firmware 2
TRACKER_CONNECTED_NOUSB3 Tracker device is detected but not working due to unsupported USB host 3
TRACKER_CONNECTED_NOSTREAM Tracker device is detected but not working due to no stream could be received 4
While it appears to me that 7 indicates successful tracking of both eyes, 4 indicates partial or complete loss of tracking information (one or both eyes). 8 is coupled to all values being 0 and a sample with state 8 often precedes several samples with state 4, i.e. data loss. So my guess would be that 8 indicates a more severe tracking problem, for example that in addition to the eyes the head is not detected/located. Haven't encountered a 16 or other values, yet.
Would it be possible to just get a list of possible values and their meaning? Or am I missing the complexity of these values?
Many thanks!