Changeset 32515
- Timestamp:
- 04/17/09 07:49:09 (4 years ago)
- Location:
- lang/cpluspluscli/OpenCvSharp2/trunk
- Files:
-
- 8 modified
-
. (modified) (1 prop)
-
OpenCvSharp.Blob/OpenCvSharp.Blob.vcproj (modified) (3 diffs)
-
OpenCvSharp.Extern/OpenCvSharp.Extern.vcproj (modified) (6 diffs)
-
OpenCvSharp.Test/OpenCvSharp.Test.csproj (modified) (2 diffs)
-
OpenCvSharp.Test/Samples/CaptureCamera.cs (modified) (1 diff)
-
OpenCvSharp/ReadMe.txt (modified) (1 diff)
-
OpenCvSharp_EN.shfbproj (modified) (1 diff)
-
OpenCvSharp_JP.shfbproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/cpluspluscli/OpenCvSharp2/trunk
- Property svn:ignore
-
old new 13 13 Matt H 14 14 _ReSharper.OpenCvSharp 15 Help JP
-
- Property svn:ignore
-
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp.Blob/OpenCvSharp.Blob.vcproj
r32110 r32515 65 65 LinkIncremental="2" 66 66 AdditionalLibraryDirectories=""D:\logiciels\OpenCV\lib"" 67 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 67 68 GenerateDebugInformation="true" 68 69 AssemblyDebug="1" … … 139 140 LinkIncremental="1" 140 141 AdditionalLibraryDirectories=""C:\Program Files\OpenCV\lib"" 142 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 141 143 GenerateDebugInformation="true" 142 144 TargetMachine="1" … … 212 214 LinkIncremental="2" 213 215 AdditionalLibraryDirectories=""D:\logiciels\OpenCV\lib"" 216 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 214 217 GenerateDebugInformation="true" 215 218 AssemblyDebug="1" -
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp.Extern/OpenCvSharp.Extern.vcproj
r32511 r32515 65 65 LinkIncremental="2" 66 66 AdditionalLibraryDirectories="" 67 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 67 68 GenerateDebugInformation="true" 68 69 AssemblyDebug="1" … … 138 139 LinkIncremental="1" 139 140 AdditionalLibraryDirectories=""C:\Program Files\OpenCV\lib"" 141 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 140 142 GenerateDebugInformation="true" 141 143 TargetMachine="1" … … 211 213 LinkIncremental="2" 212 214 AdditionalLibraryDirectories=""D:\logiciels\OpenCV\lib"" 215 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 213 216 GenerateDebugInformation="true" 214 217 AssemblyDebug="1" … … 284 287 LinkIncremental="1" 285 288 AdditionalLibraryDirectories=""C:\Program Files\OpenCV\lib"" 289 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 286 290 GenerateDebugInformation="true" 287 291 TargetMachine="1" … … 356 360 LinkIncremental="1" 357 361 AdditionalLibraryDirectories=""C:\Program Files\OpenCV\lib"" 362 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 358 363 GenerateDebugInformation="true" 359 364 TargetMachine="1" … … 428 433 LinkIncremental="1" 429 434 AdditionalLibraryDirectories=""C:\Program Files\OpenCV\lib"" 435 AdditionalManifestDependencies="type='win32' name='Microsoft.VC90.CRT' version='9.0.21022.8' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b'" 430 436 GenerateDebugInformation="true" 431 437 TargetMachine="1" -
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp.Test/OpenCvSharp.Test.csproj
r32359 r32515 153 153 <Compile Include="Samples\CalibrateCamera.cs" /> 154 154 <Compile Include="Samples\CaptureAVI.cs" /> 155 <Compile Include="Samples\CaptureCamera.cs" /> 155 <Compile Include="Samples\CaptureCamera.cs"> 156 </Compile> 156 157 <Compile Include="Samples\Contour.cs" /> 157 158 <Compile Include="Samples\ContourScanner.cs" /> … … 312 313 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 313 314 </Content> 315 <Content Include="msvcm90.dll"> 316 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 317 </Content> 318 <Content Include="msvcp90.dll"> 319 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 320 </Content> 321 <Content Include="msvcr90.dll"> 322 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 323 </Content> 314 324 </ItemGroup> 315 325 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp.Test/Samples/CaptureCamera.cs
r32427 r32515 10 10 /// </summary> 11 11 class CaptureCamera 12 { 12 { 13 13 public CaptureCamera() 14 14 { -
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp/ReadMe.txt
r32414 r32515 1 ===== Usage ===== 2 Essential files : OpenCvSharp.dll 3 OpenCvSharp.Extern.dll 4 Optional files : OpenCvSharp.MachineLearning.dll 5 OpenCvSharp.Blob.dll 6 7 Add reference to these dll files. 8 9 These files needs VC++9.0 runtime, so you should add reference to msvcr90.dll, msvcp90.dll, .... 10 1 11 ===== Version ===== 2 12 1.1pre 3 13 4 14 ===== Description ===== 15 This is a wrapper in order to use OpenCV on .NET Framework. 16 5 17 OpenCV (http://opencv.jp/opencv_org/docs/index.htm) ��T Framework���痘�p���邽�߂̃��b�p�[�ł��B 6 18 OpenCV�̃o�[�W�����́AOpenCvSharp�Ɠ����ԍ��̃o�[�W�������K�v�ł��B -
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp_EN.shfbproj
r31827 r32515 23 23 <Language>en-US</Language> 24 24 <DocumentationSources> 25 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.dll" /> 26 <DocumentationSource sourceFile="Release\OpenCvSharp.Extern.dll" /> 27 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.MachineLearning.dll" /> 28 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.MachineLearning.xml" /> 29 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.xml" /> 30 </DocumentationSources> 25 <DocumentationSource sourceFile="Release\OpenCvSharp.Blob.dll" /> 26 <DocumentationSource sourceFile="Release\OpenCvSharp.Blob.xml" /> 27 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.dll" /> 28 <DocumentationSource sourceFile="Release\OpenCvSharp.Extern.dll" /> 29 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.MachineLearning.dll" /> 30 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.MachineLearning.xml" /> 31 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release\OpenCvSharp.xml" /></DocumentationSources> 31 32 </PropertyGroup> 32 33 <!-- There are no properties for these two groups but they need to appear in -
lang/cpluspluscli/OpenCvSharp2/trunk/OpenCvSharp_JP.shfbproj
r31945 r32515 18 18 <HtmlHelpName>Documentation</HtmlHelpName> 19 19 <FrameworkVersion>3.5</FrameworkVersion> 20 <HelpFileFormat>H tmlHelp1x</HelpFileFormat>20 <HelpFileFormat>Help1xAndWebsite</HelpFileFormat> 21 21 <ProjectSummary>A wrapper of OpenCV for .NET Framework</ProjectSummary> 22 22 <HelpTitle>OpenCvSharp Class Library</HelpTitle> 23 23 <Language>ja-JP</Language> 24 24 <DocumentationSources> 25 <DocumentationSource sourceFile="OpenCvSharp\bin\Release JA\OpenCvSharp.dll" xmlns="" /> 26 <DocumentationSource sourceFile="Release JA\OpenCvSharp.Extern.dll" xmlns="" /> 27 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release JA\OpenCvSharp.MachineLearning.dll" xmlns="" /> 28 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release JA\OpenCvSharp.MachineLearning.xml" xmlns="" /> 29 <DocumentationSource sourceFile="OpenCvSharp\bin\Release JA\OpenCvSharp.xml" xmlns="" /> 30 </DocumentationSources> 25 <DocumentationSource sourceFile="Release\OpenCvSharp.Blob.dll" /> 26 <DocumentationSource sourceFile="Release\OpenCvSharp.Blob.xml" /> 27 <DocumentationSource sourceFile="OpenCvSharp\bin\Release JP\OpenCvSharp.dll" /> 28 <DocumentationSource sourceFile="Release JP\OpenCvSharp.Extern.dll" /> 29 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release JA\OpenCvSharp.MachineLearning.dll" /> 30 <DocumentationSource sourceFile="OpenCvSharp.MachineLearning\bin\Release JA\OpenCvSharp.MachineLearning.xml" /> 31 <DocumentationSource sourceFile="OpenCvSharp\bin\Release JP\OpenCvSharp.XML" /></DocumentationSources> 31 32 </PropertyGroup> 32 33 <!-- There are no properties for these two groups but they need to appear in
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)