<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://theeyetribe.com/forum/feed.php?f=8&amp;t=515" />

<title>The Eye Tribe</title>
<subtitle>Developer Forum</subtitle>
<link href="http://theeyetribe.com/forum/index.php" />
<updated>2015-09-04T15:42:59+02:00</updated>

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=8&amp;t=515</id>
<entry>
<author><name><![CDATA[pf@seriousgames.net]]></name></author>
<updated>2015-09-04T15:42:59+02:00</updated>
<published>2015-09-04T15:42:59+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2259#p2259</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2259#p2259"/>
<title type="html"><![CDATA[Re: How to recalibrate a certain point]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2259#p2259"><![CDATA[
the tracker says<br /><br />Request FAILED<br />Category: calibration<br />Request: pointend<br />StatusCode: 403<br />StatusMessage: Another client initiated calibration<br /><br />are the points overritten behind the scenes?<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=2286">skatapf@seriousgames.net</a> — 04 Sep 2015, 15:42</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[pf@seriousgames.net]]></name></author>
<updated>2015-08-31T17:34:24+02:00</updated>
<published>2015-08-31T17:34:24+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2253#p2253</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2253#p2253"/>
<title type="html"><![CDATA[Re: How to recalibrate a certain point]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2253#p2253"><![CDATA[
but after resubmitting the points with start/end the server does not respond with anything.<br />How do I get it to respond with the calibresult?<br /><dl class="codebox"><dt>Code: </dt><dd><code>{&quot;category&quot;:&quot;calibration&quot;,&quot;request&quot;:&quot;pointend&quot;,&quot;statuscode&quot;:200,&quot;values&quot;:{&quot;calibresult&quot;:{&quot;calibpoints&quot;:&#91; ..</code></dd></dl><br />is the trick in ICalibrationResultListener, GazeManager.Instance.AddCalibrationStateListener and OnCalibrationChanged? <br />I can't quite seem to get that to work, will test more tomorrow<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=2286">skatapf@seriousgames.net</a> — 31 Aug 2015, 17:34</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Martin]]></name></author>
<updated>2015-07-16T16:45:33+02:00</updated>
<published>2015-07-16T16:45:33+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2159#p2159</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2159#p2159"/>
<title type="html"><![CDATA[Re: How to recalibrate a certain point]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2159#p2159"><![CDATA[
The Server will let you know which points should be re-calibrated at the end. Consider the <a href="https://github.com/EyeTribe/tet-csharp-samples/blob/master/TETControls/Calibration/CalibrationRunner.xaml.cs" class="postlink">calibration sample</a> on Github.<br /><br />First your class should implement the ICalibrationProcessHandler interface, you then have the method OnCalibrationResult(CalibrationResult res). Here we find the points that should be shown again.<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>            // Success, check results for bad points<br />            foreach (CalibrationPoint cp in res.Calibpoints)<br />            {<br />                // Tracker tells us to resample this point, enque it<br />                if (cp.State == CalibrationPoint.STATE_RESAMPLE || cp.State == CalibrationPoint.STATE_NO_DATA)<br />                    points.Enqueue(new Point2D(cp.Coordinates.X, cp.Coordinates.Y));<br />            }<br /></code></dd></dl><br /><br />Overall, points with no data should always be re-sampled but you can define your own threshold for accuracy, mean error or standard deviation (spread). The variables are outlined in the <a href="http://dev.theeyetribe.com/csharp/" class="postlink">API documentation</a>. <br /><br />Simply add the bad points to a queue and run the display sequence again. The server automatically will replace the data for each point based on the X/Y location. Note that calling CalibrationStart will clear the previous calibration.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=117">skataMartin</a> — 16 Jul 2015, 16:45</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[jhbong84@gmail.com]]></name></author>
<updated>2015-07-16T05:07:50+02:00</updated>
<published>2015-07-16T05:07:50+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2158#p2158</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2158#p2158"/>
<title type="html"><![CDATA[How to recalibrate a certain point]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=515&amp;p=2158#p2158"><![CDATA[
Hi i am making a custom automatic calibration program in Unity, this is how it works<br /><br />However, i need to be able to recalibrate a point, not abort the whole calibration. Here is what i mean<br /><br />&gt; StartCalibrationPoint<br /><br />&gt; wait for 800ms<br /><br />&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;during this 800ms the user looked away, i need to void this calibration, and only recalibrate this point again.<br /><br /><br />to do this should i call CalibrationPointEnd? and StartCalibrationPoint on the same Point again? or can i just call StartCalibrationPoint on the same point without ending it. Because if i end it, then the API will go on to the next point, which i don't want. <br /><br /><br />Thx for help<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=8335">skatajhbong84@gmail.com</a> — 16 Jul 2015, 05:07</p><hr />
]]></content>
</entry>
</feed>