嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#WPF 调用系统摄像头 也可rtsp协议
.
├── OpenCVSharp
│ ├── OpenCVSharp.sln
│ ├── Test1
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Test1.csproj
│ │ ├── WriteableBitmapHelper.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── OpenCvSharp.Blob.dll
│ │ │ │ ├── OpenCvSharp.Blob.pdb
│ │ │ │ ├── OpenCvSharp.Blob.xml
│ │ │ │ ├── OpenCvSharp.Extensions.dll
│ │ │ │ ├── OpenCvSharp.Extensions.pdb
│ │ │ │ ├── OpenCvSharp.Extensions.xml
│ │ │ │ ├── OpenCvSharp.UserInterface.dll
│ │ │ │ ├── OpenCvSharp.UserInterface.pdb
│ │ │ │ ├── OpenCvSharp.UserInterface.xml
│ │ │ │ ├── OpenCvSharp.dll
│ │ │ │ ├── OpenCvSharp.pdb
│ │ │ │ ├── OpenCvSharp.xml
│ │ │ │ ├── Test1.exe
│ │ │ │ ├── Test1.exe.config
│ │ │ │ ├── Test1.pdb
│ │ │ │ └── dll
│ │ │ │ ├── x64
│ │ │ │ │ ├── OpenCvSharpExtern.dll
│ │ │ │ │ └── opencv_ffmpeg400_64.dll
│ │ │ │ └── x86
│ │ │ │ ├── OpenCvSharpExtern.dll
│ │ │ │ └── opencv_ffmpeg400.dll
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── TempPE
│ │ │ ├── Test1.Properties.Resources.resources
│ │ │ ├── Test1.csproj.AssemblyReference.cache
│ │ │ ├── Test1.csproj.CopyComplete
│ │ │ ├── Test1.csproj.CoreCompileInputs.cache
│ │ │ ├── Test1.csproj.FileListAbsolute.txt
│ │ │ ├── Test1.csproj.GenerateResource.cache
│ │ │ ├── Test1.csproj.SuggestedBindingRedirects.cache
│ │ │ ├── Test1.exe
│ │ │ ├── Test1.g.resources
│ │ │ ├── Test1.pdb
│ │ │ ├── Test1_Content.g.i.cs
│ │ │ ├── Test1_MarkupCompile.cache
│ │ │ ├── Test1_MarkupCompile.i.cache
│ │ │ ├── Test1_MarkupCompile.i.lref
│ │ │ └── Test1_MarkupCompile.lref
│ │ └── packages.config
│ ├── Test2_rtsp
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Test2_rtsp.csproj
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── OpenCvSharp.Blob.dll
│ │ │ ├── OpenCvSharp.Blob.pdb
│ │ │ ├── OpenCvSharp.Blob.xml
│ │ │ ├── OpenCvSharp.Extensions.dll
│ │ │ ├── OpenCvSharp.Extensions.pdb
│ │ │ ├── OpenCvSharp.Extensions.xml
│ │ │ ├── OpenCvSharp.UserInterface.dll
│ │ │ ├── OpenCvSharp.UserInterface.pdb
│ │ │ ├── OpenCvSharp.UserInterface.xml
│ │ │ ├── OpenCvSharp.dll
│ │ │ ├── OpenCvSharp.pdb
│ │ │ ├── OpenCvSharp.xml
│ │ │ ├── Test2_rtsp.exe
│ │ │ ├── Test2_rtsp.exe.config
│ │ │ ├── Test2_rtsp.pdb
│ │ │ └── dll
│ │ │ ├── x64
│ │ │ │ ├── OpenCvSharpExtern.dll
│ │ │ │ └── opencv_ffmpeg400_64.dll
│ │ │ └── x86
│ │ │ ├── OpenCvSharpExtern.dll
│ │ │ └── opencv_ffmpeg400.dll
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── MainWindow.baml
│ │ │ ├── MainWindow.g.cs
│ │ │ ├── MainWindow.g.i.cs
│ │ │ ├── TempPE
│ │ │ ├── Test2_rtsp.Properties.Resources.resources
│ │ │ ├── Test2_rtsp.csproj.AssemblyReference.cache
│ │ │ ├── Test2_rtsp.csproj.CopyComplete
│ │ │ ├── Test2_rtsp.csproj.CoreCompileInputs.cache
│ │ │ ├── Test2_rtsp.csproj.FileListAbsolute.txt
│ │ │ ├── Test2_rtsp.csproj.GenerateResource.cache
│ │ │ ├── Test2_rtsp.csproj.SuggestedBindingRedirects.cache
│ │ │ ├── Test2_rtsp.exe
│ │ │ ├── Test2_rtsp.g.resources
│ │ │ ├── Test2_rtsp.pdb
│ │ │ ├── Test2_rtsp_MarkupCompile.cache
│ │ │ ├── Test2_rtsp_MarkupCompile.i.cache
│ │ │ ├── Test2_rtsp_MarkupCompile.i.lref
│ │ │ └── Test2_rtsp_MarkupCompile.lref
│ │ └── packages.config
│ └── packages
│ └── OpenCvSharp3-AnyCPU.4.0.0.20181129
│ ├── OpenCvSharp3-AnyCPU.4.0.0.20181129.nupkg
│ ├── build
│ │ └── OpenCvSharp3-AnyCPU.props
│ ├── lib
│ │ ├── net20
│ │ │ ├── OpenCvSharp.Blob.dll
│ │ │ ├── OpenCvSharp.Blob.pdb
│ │ │ ├── OpenCvSharp.Blob.xml
│ │ │ ├── OpenCvSharp.dll
│ │ │ ├── OpenCvSharp.pdb
│ │ │ └── OpenCvSharp.xml
│ │ ├── net40
│ │ │ ├── OpenCvSharp.Blob.dll
│ │ │ ├── OpenCvSharp.Blob.pdb
│ │ │ ├── OpenCvSharp.Blob.xml
│ │ │ ├── OpenCvSharp.Extensions.dll
│ │ │ ├── OpenCvSharp.Extensions.pdb
│ │ │ ├── OpenCvSharp.Extensions.xml
│ │ │ ├── OpenCvSharp.UserInterface.dll
│ │ │ ├── OpenCvSharp.UserInterface.pdb
│ │ │ ├── OpenCvSharp.UserInterface.xml
│ │ │ ├── OpenCvSharp.dll
│ │ │ ├── OpenCvSharp.pdb
│ │ │ └── OpenCvSharp.xml
│ │ ├── net461
│ │ │ ├── OpenCvSharp.Blob.dll
│ │ │ ├── OpenCvSharp.Blob.pdb
│ │ │ ├── OpenCvSharp.Blob.xml
│ │ │ ├── OpenCvSharp.Extensions.dll
│ │ │ ├── OpenCvSharp.Extensions.pdb
│ │ │ ├── OpenCvSharp.Extensions.xml
│ │ │ ├── OpenCvSharp.UserInterface.dll
│ │ │ ├── OpenCvSharp.UserInterface.pdb
│ │ │ ├── OpenCvSharp.UserInterface.xml
│ │ │ ├── OpenCvSharp.dll
│ │ │ ├── OpenCvSharp.pdb
│ │ │ └── OpenCvSharp.xml
│ │ └── netstandard2.0
│ │ ├── OpenCvSharp.Blob.dll
│ │ ├── OpenCvSharp.Blob.pdb
│ │ ├── OpenCvSharp.Blob.xml
│ │ ├── OpenCvSharp.Extensions.dll
│ │ ├── OpenCvSharp.Extensions.pdb
│ │ ├── OpenCvSharp.Extensions.xml
│ │ ├── OpenCvSharp.dll
│ │ ├── OpenCvSharp.pdb
│ │ └── OpenCvSharp.xml
│ └── runtimes
│ ├── win10-x64
│ │ └── native
│ │ ├── OpenCvSharpExtern.dll
│ │ └── opencv_ffmpeg400_64.dll
│ └── win10-x86
│ └── native
│ ├── OpenCvSharpExtern.dll
│ └── opencv_ffmpeg400.dll
└── WPF 调用系统摄像头 也可rtsp协议.rar
35 directories, 150 files