Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Eye-Tracking Classroom
/
gaze-server.cs
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
1
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
46d65b4f
authored
Oct 07, 2019
by
Stefan Schreistetter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapted project to work with Tracker.
parent
3663b358
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
50 additions
and
76 deletions
+50
-76
GazeWebSocketServer.sln
+2
-7
GazeWebSocketServer/App.config
+1
-1
GazeWebSocketServer/GazeWebSocketServer.csproj
+29
-14
GazeWebSocketServer/Program.cs
+0
-2
TobiiBridge/Class1.cs
+0
-17
TobiiBridge/TobiiBridge.csproj
+0
-15
TrackerBridge/DSP/GazeDecimator.cs
+3
-6
TrackerBridge/GazeDataProcessor.cs
+2
-2
TrackerBridge/TobiiEyeTracker.cs
+12
-11
TrackerBridge/TrackerBridge.csproj
+1
-1
No files found.
GazeWebSocketServer.sln
View file @
46d65b4f
...
...
@@ -11,21 +11,16 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Tracker|Any CPU = Tracker|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Debug|Any CPU.ActiveCfg =
Debug
|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Debug|Any CPU.Build.0 =
Debug
|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Debug|Any CPU.ActiveCfg =
Release
|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Debug|Any CPU.Build.0 =
Release
|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Release|Any CPU.Build.0 = Release|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Tracker|Any CPU.ActiveCfg = Tracker|Any CPU
{F8F11E64-7946-4054-8C27-F0FCAF967F1A}.Tracker|Any CPU.Build.0 = Tracker|Any CPU
{64D52257-ECA7-4F4D-A901-B14D544A1D0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{64D52257-ECA7-4F4D-A901-B14D544A1D0A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{64D52257-ECA7-4F4D-A901-B14D544A1D0A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{64D52257-ECA7-4F4D-A901-B14D544A1D0A}.Release|Any CPU.Build.0 = Release|Any CPU
{64D52257-ECA7-4F4D-A901-B14D544A1D0A}.Tracker|Any CPU.ActiveCfg = Release|Any CPU
{64D52257-ECA7-4F4D-A901-B14D544A1D0A}.Tracker|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
GazeWebSocketServer/App.config
View file @
46d65b4f
...
...
@@ -2,7 +2,7 @@
<
configuration
>
<
appSettings
>
<
add
key
=
"TrackerSerialNumber"
value
=
"TPSP1-010108442544"
/>
<
add
key
=
"TrackerFrequency_Hz"
value
=
"
12
0"
/>
<
add
key
=
"TrackerFrequency_Hz"
value
=
"
60
0"
/>
<
add
key
=
"OutputFrequency_Hz"
value
=
"60"
/>
<
add
key
=
"WebSocketPort"
value
=
"8001"
/>
<
add
key
=
"WebSocketEndpoint"
value
=
"/gaze"
/>
...
...
GazeWebSocketServer/GazeWebSocketServer.csproj
View file @
46d65b4f
...
...
@@ -14,6 +14,21 @@
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
...
...
@@ -26,32 +41,20 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>
AnyCPU
</PlatformTarget>
<PlatformTarget>
x64
</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Tracker|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Tracker\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationFramework" />
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
...
...
@@ -78,6 +81,18 @@
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 und x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TrackerBridge\TrackerBridge.csproj">
<Project>{64d52257-eca7-4f4d-a901-b14d544a1d0a}</Project>
<Name>TrackerBridge</Name>
...
...
GazeWebSocketServer/Program.cs
View file @
46d65b4f
using
System
;
using
System.Threading.Tasks
;
using
TrackerBridge
;
using
TrackerBridge.DSP
;
namespace
GazeWebSocketServer
{
...
...
TobiiBridge/Class1.cs
deleted
100644 → 0
View file @
3663b358
using
System
;
namespace
TobiiBridge
{
public
class
EyeTracker
{
public
EyeTracker
()
{
}
public
EyeTracker
(
String
serialNumber
)
{
}
}
}
TobiiBridge/TobiiBridge.csproj
deleted
100644 → 0
View file @
3663b358
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Tobii.Research.x64" Version="1.7.0.1070" />
</ItemGroup>
</Project>
TrackerBridge/DSP/GazeDecimator.cs
View file @
46d65b4f
...
...
@@ -11,14 +11,12 @@ namespace TrackerBridge.DSP
{
public
event
GazeDataHandler
OutputAvailable
;
private
Single
inputFrequency
;
private
GazeData
output
;
private
Single
outputFrequency
;
private
Object
outputLock
=
new
Object
();
private
Object
valueCountLock
=
new
Object
();
private
readonly
Object
outputLock
=
new
Object
();
private
readonly
Object
valueCountLock
=
new
Object
();
private
Int64
valueCount
;
public
Single
InputFrequency
{
get
=>
inputFrequency
;
set
=>
inputFrequency
=
value
;
}
private
Int64
ValueCount
{
get
{
lock
(
valueCountLock
)
...
...
@@ -49,10 +47,9 @@ namespace TrackerBridge.DSP
}
}
public
GazeDecimator
(
Single
outputFrequency
,
Single
inputFrequency
)
public
GazeDecimator
(
Single
outputFrequency
)
{
this
.
outputFrequency
=
outputFrequency
;
this
.
InputFrequency
=
inputFrequency
;
Task
.
Run
(()
=>
TriggerOutput
(
outputFrequency
));
}
public
void
Input
(
GazeData
input
,
Object
sender
=
null
)
...
...
TrackerBridge/GazeDataProcessor.cs
View file @
46d65b4f
...
...
@@ -30,7 +30,7 @@ namespace TrackerBridge
screenHeight
=
Convert
.
ToSingle
(
SystemParameters
.
PrimaryScreenHeight
);
screenWidth
=
Convert
.
ToSingle
(
SystemParameters
.
PrimaryScreenWidth
);
gazeFilters
=
new
IGazeFilter
[
1
];
gazeFilters
[
0
]
=
new
GazeDecimator
(
60
,
tracker
.
GetTrackingFrequency
()
);
//TODO: Refactor frequency passthrough
gazeFilters
[
0
]
=
new
GazeDecimator
(
60
);
//TODO: Refactor frequency passthrough
//Chain filters
for
(
Int32
index
=
0
;
index
<
gazeFilters
.
Length
;
index
++)
...
...
@@ -85,7 +85,7 @@ namespace TrackerBridge
if
(
filter
.
GetType
()
==
typeof
(
GazeDecimator
))
{
GazeDecimator
decimator
=
(
GazeDecimator
)
filter
;
decimator
.
InputFrequency
=
frequency
;
throw
new
NotImplementedException
()
;
}
}
}
...
...
TrackerBridge/TobiiEyeTracker.cs
View file @
46d65b4f
...
...
@@ -14,7 +14,17 @@ namespace TrackerBridge
public
event
ConnectionEventHandler
ConnectionEvent
;
public
event
ConnectionEventHandler
ConnectionTimeout
;
public
event
GazeDataHandler
GazeDataAvailable
;
private
event
GazeDataHandler
gazeDataAvailable
;
public
event
GazeDataHandler
GazeDataAvailable
{
add
{
gazeDataAvailable
+=
value
;
GazeDataProcessor
.
AddClient
(
value
);
}
remove
{
gazeDataAvailable
-=
value
;
GazeDataProcessor
.
RemoveClient
(
value
);
}
}
public
event
EventHandler
<
Single
>
TrackingFrequencyChanged
;
private
IEyeTracker
eyeTracker
=
null
;
...
...
@@ -23,11 +33,7 @@ namespace TrackerBridge
public
Boolean
IsConnected
{
get
;
private
set
;
}
=
false
;
public
String
SerialNumber
{
get
;
private
set
;
}
=
null
;
public
GazeDataHandler
GazeDataAvailableMembers
{
get
{
return
GazeDataAvailable
;
}
}
public
GazeDataHandler
GazeDataAvailableMembers
=>
gazeDataAvailable
;
public
TobiiEyeTracker
()
{
...
...
@@ -56,11 +62,6 @@ namespace TrackerBridge
}
}
Single
IBridgeTracker
.
GetTrackingFrequency
()
{
throw
new
NotImplementedException
();
}
public
void
SetTrackingFrequency
(
float
value
)
{
if
(
eyeTracker
!=
null
&&
eyeTracker
.
GetAllGazeOutputFrequencies
().
Contains
(
value
))
...
...
TrackerBridge/TrackerBridge.csproj
View file @
46d65b4f
...
...
@@ -32,9 +32,9 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System" />
<Reference Include="System.Core" />
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment