<?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=24&amp;t=329" />

<title>The Eye Tribe</title>
<subtitle>Developer Forum</subtitle>
<link href="http://theeyetribe.com/forum/index.php" />
<updated>2014-10-01T17:09:35+02:00</updated>

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=24&amp;t=329</id>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2014-10-01T17:09:35+02:00</updated>
<published>2014-10-01T17:09:35+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1440#p1440</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1440#p1440"/>
<title type="html"><![CDATA[Re: ReCalibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1440#p1440"><![CDATA[
Hi <br /><br />The approach you describe is not the intended usage of the SDK. You should refer to the code I linked to in my last post instead. <br /><br />BR,<br />Anders<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 01 Oct 2014, 17:09</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[sourabhbans0007@gmail.com]]></name></author>
<updated>2014-09-22T15:12:39+02:00</updated>
<published>2014-09-22T15:12:39+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1413#p1413</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1413#p1413"/>
<title type="html"><![CDATA[Re: ReCalibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1413#p1413"><![CDATA[
hello sir,<br /><br />   i have done it by deactivating and reactivating the Gazemanager and working great. am i making it wrong ?<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4745">skatasourabhbans0007@gmail.com</a> — 22 Sep 2014, 15:12</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2014-09-19T08:02:51+02:00</updated>
<published>2014-09-19T08:02:51+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1392#p1392</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1392#p1392"/>
<title type="html"><![CDATA[Re: ReCalibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1392#p1392"><![CDATA[
When you have initiated a calibration process with a call to GazeManager.calibrationStart(...) then the process is ongoing until either the ICalibrationProcessHandler.onCalibrationResult() returns a successful calibration or you as a developer call GazeManager.calibrationAbort(). You cannot start a new calibration though GazeManager.calibrationStart(...) before either of these two have occoured.<br /><br />If the ICalibrationProcessHandler.onCalibrationResult() return an unsuccessful calibration, then it is up to you as a developer to define what calibrationpoint(s) that you would like to resample. The logic involved in doing this may be different from one implementation to another due to different needs in a given setup.<br /><br />Several examples of handling calibrationpoint resampling is available in our samples. Try taking a look at the OnCalibrationResult of our C# samples <a href="https://github.com/EyeTribe/tet-csharp-samples/blob/master/TETControls/Calibration/CalibrationRunner.cs" class="postlink">here</a>. You can also take a look at the OnCalibrationResult process in our Unity sample <a href="https://github.com/EyeTribe/tet-unity-gazecam/blob/master/Assets/Scripts/CalibCamera.cs" class="postlink">here</a>.<br /><br />Best of luck<br /><br />BR,<br />Anders<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 19 Sep 2014, 08:02</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[sourabhbans0007@gmail.com]]></name></author>
<updated>2014-09-08T16:55:11+02:00</updated>
<published>2014-09-08T16:55:11+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1356#p1356</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1356#p1356"/>
<title type="html"><![CDATA[ReCalibration]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=329&amp;p=1356#p1356"><![CDATA[
hi there, i am performing calibration process sometime when it fails or error degree is very high then i am trying to recalibrate it.. but it shows..<dl class="codebox"><dt>Code: </dt><dd><code>Request FAILED<br />Category: calibration<br />Request: start<br />StatusCode: 403<br />StatusMessage: Calibration already in progress<br /></code></dd></dl><br /><br />i called Calibration abort also but it seems doesn't work.<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>CalibrationHandler handler = new CalibrationHandler();<br />      if(!GazeManager.getInstance().isCalibrating()){<br />      GazeManager.getInstance().calibrationStart(9, handler);<br />      }else{<br />         System.out.println(&quot; not started : &quot;+GazeManager.getInstance().isCalibrating());<br />         GazeManager.getInstance().calibrationAbort();<br />         System.out.println(&quot; still calibrating  : &quot;+GazeManager.getInstance().isCalibrating());<br />         <br />         GazeManager.getInstance().calibrationStart(9, handler);<br />         <br />      }<br /></code></dd></dl><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=4745">skatasourabhbans0007@gmail.com</a> — 08 Sep 2014, 16:55</p><hr />
]]></content>
</entry>
</feed>