bbiwarg.csproj 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{12271049-82D6-436D-A51E-E6614C8E9C50}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>bbiwarg</RootNamespace>
  11. <AssemblyName>bbiwarg</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>x86</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <StartupObject>bbiwarg.MainBBIWARG</StartupObject>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="Emgu.CV, Version=2.4.2.1777, Culture=neutral, PublicKeyToken=7281126722ab4438, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>lib\Emgu.CV.dll</HintPath>
  43. </Reference>
  44. <Reference Include="Emgu.Util, Version=2.4.2.1777, Culture=neutral, PublicKeyToken=7281126722ab4438, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>lib\Emgu.Util.dll</HintPath>
  47. </Reference>
  48. <Reference Include="iisuNet, Version=3.0.0.0, Culture=neutral, processorArchitecture=x86">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>lib\iisuNet.dll</HintPath>
  51. </Reference>
  52. <Reference Include="MathNet.Numerics">
  53. <HintPath>lib\MathNet.Numerics.dll</HintPath>
  54. </Reference>
  55. <Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
  56. <SpecificVersion>False</SpecificVersion>
  57. <HintPath>lib\OpenTK.dll</HintPath>
  58. </Reference>
  59. <Reference Include="System" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.Drawing" />
  62. <Reference Include="System.Xml.Linq" />
  63. <Reference Include="System.Data.DataSetExtensions" />
  64. <Reference Include="Microsoft.CSharp" />
  65. <Reference Include="System.Data" />
  66. <Reference Include="System.Xml" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <Compile Include="Constants.cs" />
  70. <Compile Include="Graphics\OutputWindow.cs" />
  71. <Compile Include="InputHandler.cs" />
  72. <Compile Include="InputProviders\InputFrame.cs" />
  73. <Compile Include="InputProviders\InputProvider.cs" />
  74. <Compile Include="InputProviders\VideoInputProvider.cs" />
  75. <Compile Include="Recognition\FingerRecognition\Finger.cs" />
  76. <Compile Include="Recognition\FingerRecognition\FingerDetector.cs" />
  77. <Compile Include="Recognition\FingerRecognition\FingerSliceTrail.cs" />
  78. <Compile Include="Recognition\FingerRecognition\FingerSlice.cs" />
  79. <Compile Include="Recognition\FingerRecognition\FingerTracker.cs" />
  80. <Compile Include="Recognition\HandRecognition\Hand.cs" />
  81. <Compile Include="Recognition\HandRecognition\HandDetector.cs" />
  82. <Compile Include="Recognition\PalmRecognition\PalmDetector.cs" />
  83. <Compile Include="Recognition\TouchRecognition\PalmTouchEvent.cs" />
  84. <Compile Include="Recognition\TouchRecognition\TouchDetector.cs" />
  85. <Compile Include="Recognition\TouchRecognition\TouchEvent.cs" />
  86. <Compile Include="Recognition\TouchRecognition\TouchTracker.cs" />
  87. <Compile Include="Graphics\TouchEventVisualizer.cs" />
  88. <Compile Include="Images\ConfidenceImage.cs" />
  89. <Compile Include="Images\DepthImage.cs" />
  90. <Compile Include="Images\EdgeImage.cs" />
  91. <Compile Include="Graphics\OutputImage.cs" />
  92. <Compile Include="MainBBWIWARG.cs" />
  93. <Compile Include="Properties\AssemblyInfo.cs" />
  94. <Compile Include="Recognition\Tracking\SimilarityContainer.cs" />
  95. <Compile Include="Recognition\Tracking\TrackableObject.cs" />
  96. <Compile Include="Recognition\Tracking\TrackableObjectHistory.cs" />
  97. <Compile Include="Recognition\Tracking\Tracker.cs" />
  98. <Compile Include="Server\OSC.NET\OSCBundle.cs" />
  99. <Compile Include="Server\OSC.NET\OSCMessage.cs" />
  100. <Compile Include="Server\OSC.NET\OSCPacket.cs" />
  101. <Compile Include="Server\OSC.NET\OSCTransmitter.cs" />
  102. <Compile Include="Server\TuioCommunicator.cs" />
  103. <Compile Include="Server\TUIO\TuioContainer.cs" />
  104. <Compile Include="Server\TUIO\TuioCursor.cs" />
  105. <Compile Include="Server\TUIO\TuioPoint.cs" />
  106. <Compile Include="Server\TUIO\TuioServer.cs" />
  107. <Compile Include="Server\TUIO\TuioTime.cs" />
  108. <Compile Include="Utility\Kalman2DPositionFilter.cs" />
  109. <Compile Include="Utility\Line2D.cs" />
  110. <Compile Include="Utility\LineSegment2D.cs" />
  111. <Compile Include="Utility\Logger.cs" />
  112. <Compile Include="Utility\Quadrangle.cs" />
  113. <Compile Include="Utility\Timer.cs" />
  114. <Compile Include="Utility\Vector2D.cs" />
  115. </ItemGroup>
  116. <ItemGroup>
  117. <None Include="App.config" />
  118. </ItemGroup>
  119. <ItemGroup>
  120. <Content Include="cudart32_55.dll">
  121. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  122. </Content>
  123. <Content Include="opencv_core290.dll">
  124. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  125. </Content>
  126. <Content Include="opencv_imgproc290.dll">
  127. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  128. </Content>
  129. <Content Include="opencv_video290.dll">
  130. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  131. </Content>
  132. </ItemGroup>
  133. <ItemGroup />
  134. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  135. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  136. Other similar extension points exist, see Microsoft.Common.targets.
  137. <Target Name="BeforeBuild">
  138. </Target>
  139. <Target Name="AfterBuild">
  140. </Target>
  141. -->
  142. </Project>