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

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

<author><name><![CDATA[The Eye Tribe]]></name></author>
<id>http://theeyetribe.com/forum/feed.php?f=11&amp;t=624</id>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2016-09-05T17:08:08+02:00</updated>
<published>2016-09-05T17:08:08+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2617#p2617</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2617#p2617"/>
<title type="html"><![CDATA[Re: C#]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2617#p2617"><![CDATA[
<blockquote class="uncited"><div><br />Hi everyone, could you please assist me on this. When i run the code below it says &quot;the &quot;protocol&quot; is inaccessible due to protection level&quot;. does anyone know how to make is accessible? Thanks so much. <img src="http://theeyetribe.com/forum/images/smilies/icon_e_smile.gif" alt=":)" title="Smile" /><br /></div></blockquote><br /><br />We are unable to help you without more knowledge of you project and setup. Please ZIP your entire project and make it available in this thread or point me to a GitHub branch holding you project.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 05 Sep 2016, 17:08</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[kimarionizetha@gmail.com]]></name></author>
<updated>2016-09-02T05:23:29+02:00</updated>
<published>2016-09-02T05:23:29+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2615#p2615</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2615#p2615"/>
<title type="html"><![CDATA[Re: C#]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2615#p2615"><![CDATA[
Hi everyone, could you please assist me on this. When i run the code below it says  &quot;the &quot;protocol&quot; is inaccessible due to protection level&quot;. does anyone know how to make is accessible? Thanks so much. <img src="http://theeyetribe.com/forum/images/smilies/icon_e_smile.gif" alt=":)" title="Smile" /><br /><br /><br /><br />using System;<br />using Newtonsoft.Json;<br /><br />namespace EyeTribe.ClientSdk.Data<br />{<br />    /// &lt;summary&gt;<br />    /// Contains tracking results of a single eye.<br />    /// &lt;/summary&gt;<br />    public class Eye<br />    {<br />        /// &lt;summary&gt;<br />        /// Raw gaze coordinates in pixels<br />        /// &lt;/summary&gt;<br />        [JsonProperty(PropertyName = Protocol.FRAME_RAW_COORDINATES)]<br />        public Point2D RawCoordinates<br />        { get; set; }<br />        <br /><br />        /// &lt;summary&gt;<br />        /// Smoothed gaze coordinates in pixels<br />        /// &lt;/summary&gt;<br />        [JsonProperty(PropertyName = Protocol.FRAME_AVERAGE_COORDINATES)]<br />        public Point2D SmoothedCoordinates { get; set; }<br /><br />        /// &lt;summary&gt;<br />        /// Pupil center coordinates in normalized values<br />        /// &lt;/summary&gt;<br />        [JsonProperty(PropertyName = Protocol.FRAME_EYE_PUPIL_CENTER)]<br />        public Point2D PupilCenterCoordinates { get; set; }<br /><br />        /// &lt;summary&gt;<br />        /// Pupil size in normalized value<br />        /// &lt;/summary&gt;<br />        [JsonProperty(PropertyName = Protocol.FRAME_EYE_PUPIL_SIZE)]<br />        public double PupilSize { get; set; }<br /><br />        public   Eye()<br />        {<br />            RawCoordinates = new Point2D();<br />            SmoothedCoordinates = new Point2D();<br />            PupilCenterCoordinates = new Point2D();<br />            PupilSize = 0d;<br />        }<br /><br />        public Eye(Eye other)<br />        {<br />            if (null != other)<br />            {<br />                RawCoordinates = new Point2D(other.RawCoordinates);<br />                SmoothedCoordinates = new Point2D(other.SmoothedCoordinates);<br />                PupilCenterCoordinates = new Point2D(other.PupilCenterCoordinates);<br />                PupilSize = other.PupilSize;<br />            }<br />        }<br /><br />        public override bool Equals(Object o)<br />        {<br />            if (ReferenceEquals(this, o))<br />                return true;<br /><br />            if (!(o is Eye))<br />                return false;<br /><br />            var other = o as Eye;<br /><br />            return<br />                this.RawCoordinates.Equals(other.RawCoordinates) &amp;&amp;<br />                this.SmoothedCoordinates.Equals(other.SmoothedCoordinates) &amp;&amp;<br />                this.PupilCenterCoordinates.Equals(other.PupilCenterCoordinates) &amp;&amp;<br />                Double.Equals(this.PupilSize, other.PupilSize);<br />        }<br /><br />        public override int GetHashCode()<br />        {<br />            int hash = 337;<br />            hash = hash * 797 + RawCoordinates.GetHashCode();<br />            hash = hash * 797 + SmoothedCoordinates.GetHashCode();<br />            hash = hash * 797 + PupilCenterCoordinates.GetHashCode();<br />            hash = hash * 797 + PupilSize.GetHashCode();<br />            return hash;<br />        }<br />    }<br />}<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=6457">skatakimarionizetha@gmail.com</a> — 02 Sep 2016, 05:23</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2016-08-15T11:58:25+02:00</updated>
<published>2016-08-15T11:58:25+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2610#p2610</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2610#p2610"/>
<title type="html"><![CDATA[Re: C#]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2610#p2610"><![CDATA[
<blockquote class="uncited"><div><br />I am using visual studio 2015. I have tried to rebuild the solution several times but it actually gives the same error.<br /></div></blockquote><br /><br />The error you are getting is related to some of the NuGet packages used by the SDK. Seems they are not being properly downloaded (which is an automated process that requires internet connection).<br /><br />As stated in the <a href="https://github.com/EyeTribe/tet-csharp-client" class="postlink">documentation on GitHub</a> (under 'Building') the C# SDK project uses Visual Studio 2013, not 2015. It should support VS2015 though. My best guess is, that the differences between VS2013 and VS2015 is causing the issue you are facing.<br /><br />I suggest trying the following:<br />1. Clean checkout of the C# SDK repo and import to VS2015. Build-&gt;Clean. Build-&gt;Rebuild.<br />2. <a href="https://www.microsoft.com/en-us/download/details.aspx?id=44914" class="postlink">Install VS2013</a>, clean checkout of the C# SDK repo and import to VS2015. Build-&gt;Clean. Build-&gt;Rebuild.<br /><br />I have double-checked that solution 2 works with my VS2013 installation.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 15 Aug 2016, 11:58</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[kimarionizetha@gmail.com]]></name></author>
<updated>2016-08-09T05:13:03+02:00</updated>
<published>2016-08-09T05:13:03+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2609#p2609</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2609#p2609"/>
<title type="html"><![CDATA[Re: C#]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2609#p2609"><![CDATA[
I am using visual studio 2015. I have tried to rebuild the solution several times but it actually gives the same error.<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=6457">skatakimarionizetha@gmail.com</a> — 09 Aug 2016, 05:13</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Anders]]></name></author>
<updated>2016-07-27T11:30:19+02:00</updated>
<published>2016-07-27T11:30:19+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2604#p2604</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2604#p2604"/>
<title type="html"><![CDATA[Re: C#]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2604#p2604"><![CDATA[
What version of visual studio are you using?<br /><br />Have you tried to clean your solution and rebuild? That will redeploy the needed NuGet packages<p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=120">skataAnders</a> — 27 Jul 2016, 11:30</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[kimarionizetha@gmail.com]]></name></author>
<updated>2016-07-19T10:55:59+02:00</updated>
<published>2016-07-19T10:55:59+02:00</published>
<id>http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2595#p2595</id>
<link href="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2595#p2595"/>
<title type="html"><![CDATA[C#]]></title>

<content type="html" xml:base="http://theeyetribe.com/forum/viewtopic.php?t=624&amp;p=2595#p2595"><![CDATA[
Dear everyone,<br />I have tried to access the C# SAMPLE program from Github, but once i try to run the code in Visual studio it gives out several error msgs. Is there anyone who has experienced the same problem? How to tackle it? <br />Below is one of error messages.<br /><br /><span style="font-weight: bold">SeverityCodeDescriptionProjectFileLineSuppression State<br />ErrorCS0433The type 'ConcurrentDictionary&lt;TKey, TValue&gt;' exists in both 'System.Threading, Version=1.0.2856.102, Culture=neutral, PublicKeyToken=31bf3856ad364e35' and 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'sdk_3.5C:\Users\nizetha\Desktop\tet-csharp-client-master\tet-csharp-client-master\sdk\GazeApiManager.cs375Active<br /></span><p>Statistics: Posted by <a href="http://theeyetribe.com/forum/memberlist.php?mode=viewprofile&amp;u=6457">skatakimarionizetha@gmail.com</a> — 19 Jul 2016, 10:55</p><hr />
]]></content>
</entry>
</feed>