Permalink
Please sign in to comment.
Showing
with
441 additions
and 41 deletions.
- +0 −1 .gitignore
- +210 −0 EyeTab/EyeTab.vcxproj
- +0 −40 EyeTab/ReadMe.txt
- +231 −0 EyeTab_SP2/EyeTab_SP2.vcxproj
| @@ -0,0 +1,210 @@ | |||
| +<?xml version="1.0" encoding="utf-8"?> | |||
| +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||
| + <ItemGroup Label="ProjectConfigurations"> | |||
| + <ProjectConfiguration Include="Debug|Win32"> | |||
| + <Configuration>Debug</Configuration> | |||
| + <Platform>Win32</Platform> | |||
| + </ProjectConfiguration> | |||
| + <ProjectConfiguration Include="Debug|x64"> | |||
| + <Configuration>Debug</Configuration> | |||
| + <Platform>x64</Platform> | |||
| + </ProjectConfiguration> | |||
| + <ProjectConfiguration Include="Release|Win32"> | |||
| + <Configuration>Release</Configuration> | |||
| + <Platform>Win32</Platform> | |||
| + </ProjectConfiguration> | |||
| + <ProjectConfiguration Include="Release|x64"> | |||
| + <Configuration>Release</Configuration> | |||
| + <Platform>x64</Platform> | |||
| + </ProjectConfiguration> | |||
| + </ItemGroup> | |||
| + <PropertyGroup Label="Globals"> | |||
| + <ProjectGuid>{6AA5343B-047B-48E2-A839-03D6BDC9D19F}</ProjectGuid> | |||
| + <Keyword>Win32Proj</Keyword> | |||
| + <RootNamespace>EyeTab</RootNamespace> | |||
| + </PropertyGroup> | |||
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |||
| + <ConfigurationType>Application</ConfigurationType> | |||
| + <UseDebugLibraries>true</UseDebugLibraries> | |||
| + <PlatformToolset>v110</PlatformToolset> | |||
| + <CharacterSet>Unicode</CharacterSet> | |||
| + </PropertyGroup> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |||
| + <ConfigurationType>Application</ConfigurationType> | |||
| + <UseDebugLibraries>true</UseDebugLibraries> | |||
| + <PlatformToolset>v110</PlatformToolset> | |||
| + <CharacterSet>Unicode</CharacterSet> | |||
| + </PropertyGroup> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |||
| + <ConfigurationType>Application</ConfigurationType> | |||
| + <UseDebugLibraries>false</UseDebugLibraries> | |||
| + <PlatformToolset>v110</PlatformToolset> | |||
| + <WholeProgramOptimization>true</WholeProgramOptimization> | |||
| + <CharacterSet>Unicode</CharacterSet> | |||
| + </PropertyGroup> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> | |||
| + <ConfigurationType>Application</ConfigurationType> | |||
| + <UseDebugLibraries>false</UseDebugLibraries> | |||
| + <PlatformToolset>v110</PlatformToolset> | |||
| + <WholeProgramOptimization>true</WholeProgramOptimization> | |||
| + <CharacterSet>Unicode</CharacterSet> | |||
| + </PropertyGroup> | |||
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |||
| + <ImportGroup Label="ExtensionSettings"> | |||
| + </ImportGroup> | |||
| + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |||
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |||
| + </ImportGroup> | |||
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> | |||
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |||
| + </ImportGroup> | |||
| + <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |||
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |||
| + </ImportGroup> | |||
| + <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> | |||
| + <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |||
| + </ImportGroup> | |||
| + <PropertyGroup Label="UserMacros" /> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |||
| + <LinkIncremental>true</LinkIncremental> | |||
| + </PropertyGroup> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |||
| + <LinkIncremental>true</LinkIncremental> | |||
| + </PropertyGroup> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |||
| + <LinkIncremental>false</LinkIncremental> | |||
| + </PropertyGroup> | |||
| + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |||
| + <LinkIncremental>false</LinkIncremental> | |||
| + </PropertyGroup> | |||
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |||
| + <ClCompile> | |||
| + <PrecompiledHeader>Use</PrecompiledHeader> | |||
| + <WarningLevel>Level3</WarningLevel> | |||
| + <Optimization>Disabled</Optimization> | |||
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |||
| + <SDLCheck>true</SDLCheck> | |||
| + <AdditionalIncludeDirectories>$(OPENCV_DIR)\..\..\include;C:\tbb\tbb42_20131118oss\include;C:\eigen\eigen-eigen-ffa86ffb5570;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |||
| + </ClCompile> | |||
| + <Link> | |||
| + <SubSystem>Console</SubSystem> | |||
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |||
| + <AdditionalLibraryDirectories>$(OPENCV_DIR)\lib;C:\tbb\tbb42_20131118oss\lib\intel64\vc11</AdditionalLibraryDirectories> | |||
| + <AdditionalDependencies>opencv_core247d.lib;opencv_imgproc247d.lib;opencv_highgui247d.lib;opencv_ml247d.lib;opencv_video247d.lib;opencv_features2d247d.lib;opencv_calib3d247d.lib;opencv_objdetect247d.lib;opencv_contrib247d.lib;opencv_legacy247d.lib;opencv_flann247d.lib;opencv_photo247d.lib;%(AdditionalDependencies)</AdditionalDependencies> | |||
| + </Link> | |||
| + </ItemDefinitionGroup> | |||
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | |||
| + <ClCompile> | |||
| + <PrecompiledHeader>Use</PrecompiledHeader> | |||
| + <WarningLevel>Level3</WarningLevel> | |||
| + <Optimization>Disabled</Optimization> | |||
| + <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |||
| + <SDLCheck>true</SDLCheck> | |||
| + <AdditionalIncludeDirectories>$(OPENCV_DIR)\..\..\include;C:\tbb\tbb42_20131118oss\include;C:\eigen\eigen-eigen-ffa86ffb5570;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |||
| + </ClCompile> | |||
| + <Link> | |||
| + <SubSystem>Console</SubSystem> | |||
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |||
| + <AdditionalLibraryDirectories>$(OPENCV_DIR)\lib;C:\tbb\tbb42_20131118oss\lib\intel64\vc11</AdditionalLibraryDirectories> | |||
| + <AdditionalDependencies>opencv_core247d.lib;opencv_imgproc247d.lib;opencv_highgui247d.lib;opencv_ml247d.lib;opencv_video247d.lib;opencv_features2d247d.lib;opencv_calib3d247d.lib;opencv_objdetect247d.lib;opencv_contrib247d.lib;opencv_legacy247d.lib;opencv_flann247d.lib;opencv_photo247d.lib;%(AdditionalDependencies)</AdditionalDependencies> | |||
| + </Link> | |||
| + </ItemDefinitionGroup> | |||
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |||
| + <ClCompile> | |||
| + <WarningLevel>Level3</WarningLevel> | |||
| + <PrecompiledHeader>Use</PrecompiledHeader> | |||
| + <Optimization>MaxSpeed</Optimization> | |||
| + <FunctionLevelLinking>true</FunctionLevelLinking> | |||
| + <IntrinsicFunctions>true</IntrinsicFunctions> | |||
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |||
| + <SDLCheck>true</SDLCheck> | |||
| + <AdditionalIncludeDirectories>C:\opencv\build\include;C:\tbb\tbb42_20131118oss\include;C:\eigen\eigen-eigen-ffa86ffb5570;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |||
| + </ClCompile> | |||
| + <Link> | |||
| + <SubSystem>Console</SubSystem> | |||
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |||
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |||
| + <OptimizeReferences>true</OptimizeReferences> | |||
| + <AdditionalDependencies>opencv_core247.lib;opencv_imgproc247.lib;opencv_highgui247.lib;opencv_ml247.lib;opencv_video247.lib;opencv_features2d247.lib;opencv_calib3d247.lib;opencv_objdetect247.lib;opencv_contrib247.lib;opencv_legacy247.lib;opencv_flann247.lib;opencv_photo247.lib;tbb.lib;%(AdditionalDependencies)</AdditionalDependencies> | |||
| + <AdditionalLibraryDirectories>C:\opencv\build\x86\vc11\lib;C:\tbb\tbb42_20131118oss\lib\ia32\vc11</AdditionalLibraryDirectories> | |||
| + </Link> | |||
| + </ItemDefinitionGroup> | |||
| + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | |||
| + <ClCompile> | |||
| + <WarningLevel>Level3</WarningLevel> | |||
| + <PrecompiledHeader>Use</PrecompiledHeader> | |||
| + <Optimization>MaxSpeed</Optimization> | |||
| + <FunctionLevelLinking>true</FunctionLevelLinking> | |||
| + <IntrinsicFunctions>true</IntrinsicFunctions> | |||
| + <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |||
| + <SDLCheck>true</SDLCheck> | |||
| + <AdditionalIncludeDirectories>C:\opencv\build\include;C:\tbb\tbb42_20131118oss\include;C:\eigen\eigen-eigen-ffa86ffb5570;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |||
| + </ClCompile> | |||
| + <Link> | |||
| + <SubSystem>Console</SubSystem> | |||
| + <GenerateDebugInformation>true</GenerateDebugInformation> | |||
| + <EnableCOMDATFolding>true</EnableCOMDATFolding> | |||
| + <OptimizeReferences>true</OptimizeReferences> | |||
| + <AdditionalDependencies>opencv_core247.lib;opencv_imgproc247.lib;opencv_highgui247.lib;opencv_ml247.lib;opencv_video247.lib;opencv_features2d247.lib;opencv_calib3d247.lib;opencv_objdetect247.lib;opencv_contrib247.lib;opencv_legacy247.lib;opencv_flann247.lib;opencv_photo247.lib;tbb.lib;%(AdditionalDependencies)</AdditionalDependencies> | |||
| + <AdditionalLibraryDirectories>C:\opencv\build\x64\vc11\lib;C:\tbb\tbb42_20131118oss\lib\intel64\vc11</AdditionalLibraryDirectories> | |||
| + </Link> | |||
| + </ItemDefinitionGroup> | |||
| + <ItemGroup> | |||
| + <Text Include="ReadMe.txt" /> | |||
| + </ItemGroup> | |||
| + <ItemGroup> | |||
| + <ClInclude Include="ConicSection.h" /> | |||
| + <ClInclude Include="erase_specular.h" /> | |||
| + <ClInclude Include="eye_center.h" /> | |||
| + <ClInclude Include="fit_ellipse.h" /> | |||
| + <ClInclude Include="gaze_geometry.h" /> | |||
| + <ClInclude Include="gaze_smoothing.h" /> | |||
| + <ClInclude Include="gaze_system.h" /> | |||
| + <ClInclude Include="get_eyelids.h" /> | |||
| + <ClInclude Include="get_poss_limb_pts.h" /> | |||
| + <ClInclude Include="stdafx.h" /> | |||
| + <ClInclude Include="targetver.h" /> | |||
| + <ClInclude Include="utils.h" /> | |||
| + </ItemGroup> | |||
| + <ItemGroup> | |||
| + <ClCompile Include="erase_specular.cpp" /> | |||
| + <ClCompile Include="EyeTab.cpp" /> | |||
| + <ClCompile Include="eye_center.cpp" /> | |||
| + <ClCompile Include="fit_ellipse.cpp" /> | |||
| + <ClCompile Include="gaze_geometry.cpp" /> | |||
| + <ClCompile Include="gaze_smoothing.cpp" /> | |||
| + <ClCompile Include="gaze_system.cpp" /> | |||
| + <ClCompile Include="get_eyelids.cpp" /> | |||
| + <ClCompile Include="get_poss_limb_pts.cpp" /> | |||
| + <ClCompile Include="stdafx.cpp"> | |||
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> | |||
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> | |||
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> | |||
| + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> | |||
| + </ClCompile> | |||
| + <ClCompile Include="utils.cpp" /> | |||
| + </ItemGroup> | |||
| + <ItemGroup> | |||
| + <Image Include="images\andreas1_r.png" /> | |||
| + <Image Include="images\erroll1_l.png" /> | |||
| + <Image Include="images\phil1_l.png" /> | |||
| + <Image Include="images\poppy.jpg" /> | |||
| + <Image Include="images\SS_0.jpg" /> | |||
| + <Image Include="images\SS_1.jpg" /> | |||
| + <Image Include="images\SS_2.jpg" /> | |||
| + <Image Include="images\SS_3.jpg" /> | |||
| + <Image Include="images\SS_4.jpg" /> | |||
| + <Image Include="images\SS_5.jpg" /> | |||
| + <Image Include="images\SS_6.jpg" /> | |||
| + </ItemGroup> | |||
| + <ItemGroup> | |||
| + <Xml Include="haarcascade_mcs_eyepair_big.xml" /> | |||
| + </ItemGroup> | |||
| + <ItemGroup> | |||
| + <Media Include="videos\sample_video.MP4" /> | |||
| + </ItemGroup> | |||
| + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |||
| + <ImportGroup Label="ExtensionTargets"> | |||
| + </ImportGroup> | |||
| +</Project> | |||
| @@ -1,40 +0,0 @@ | |||
| -======================================================================== | |||
| - CONSOLE APPLICATION : EyeTab Project Overview | |||
| -======================================================================== | |||
| - | |||
| -AppWizard has created this EyeTab application for you. | |||
| - | |||
| -This file contains a summary of what you will find in each of the files that | |||
| -make up your EyeTab application. | |||
| - | |||
| - | |||
| -EyeTab.vcxproj | |||
| - This is the main project file for VC++ projects generated using an Application Wizard. | |||
| - It contains information about the version of Visual C++ that generated the file, and | |||
| - information about the platforms, configurations, and project features selected with the | |||
| - Application Wizard. | |||
| - | |||
| -EyeTab.vcxproj.filters | |||
| - This is the filters file for VC++ projects generated using an Application Wizard. | |||
| - It contains information about the association between the files in your project | |||
| - and the filters. This association is used in the IDE to show grouping of files with | |||
| - similar extensions under a specific node (for e.g. ".cpp" files are associated with the | |||
| - "Source Files" filter). | |||
| - | |||
| -EyeTab.cpp | |||
| - This is the main application source file. | |||
| - | |||
| -///////////////////////////////////////////////////////////////////////////// | |||
| -Other standard files: | |||
| - | |||
| -StdAfx.h, StdAfx.cpp | |||
| - These files are used to build a precompiled header (PCH) file | |||
| - named EyeTab.pch and a precompiled types file named StdAfx.obj. | |||
| - | |||
| -///////////////////////////////////////////////////////////////////////////// | |||
| -Other notes: | |||
| - | |||
| -AppWizard uses "TODO:" comments to indicate parts of the source code you | |||
| -should add to or customize. | |||
| - | |||
| -///////////////////////////////////////////////////////////////////////////// | |||
Oops, something went wrong.
0 comments on commit
afddfc0