实例介绍
c#操作摄像头(带着usb摄像头、mjpeg-streamer的uvc摄像头、网络h264摄像头) win原生的、codeProject的一个框架、AForge的摄像头;mjpeg的linux-uvc摄像头(智能小车那种)、网络摄像头
【实例截图】
【核心代码】
摄像头(usb、mjpeg、网络h264都支持)
├── FrmAForge.Designer.cs
├── FrmAForge.cs
├── FrmAForge.resx
├── FrmCodeProj.Designer.cs
├── FrmCodeProj.cs
├── FrmCodeProj.resx
├── FrmMain.Designer.cs
├── FrmMain.cs
├── FrmMain.resx
├── FrmNetCam.Designer.cs
├── FrmNetCam.cs
├── FrmNetCam.resx
├── FrmOpenWrtUVC.Designer.cs
├── FrmOpenWrtUVC.cs
├── FrmOpenWrtUVC.resx
├── FrmWinNative.Designer.cs
├── FrmWinNative.cs
├── FrmWinNative.resx
├── FrmWinNative2.Designer.cs
├── FrmWinNative2.cs
├── FrmWinNative2.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── app.config
├── iPublic
│ ├── Gs_Class.cs
│ ├── VideoForm.Designer.cs
│ ├── VideoForm.cs
│ ├── VideoForm.resx
│ ├── XMSDK.cs
│ └── iCamera2015.cs
├── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferences.cache
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── 摄像头.Form1.resources
│ ├── 摄像头.FrmAForge.resources
│ ├── 摄像头.FrmCodeProj.resources
│ ├── 摄像头.FrmMain.resources
│ ├── 摄像头.FrmNetCam.resources
│ ├── 摄像头.FrmOpenWrtUVC.resources
│ ├── 摄像头.FrmWinNative.resources
│ ├── 摄像头.FrmWinNative2.resources
│ ├── 摄像头.Properties.Resources.resources
│ ├── 摄像头.csproj.FileListAbsolute.txt
│ ├── 摄像头.csproj.GenerateResource.Cache
│ ├── 摄像头.csprojResolveAssemblyReference.cache
│ ├── 摄像头.exe
│ ├── 摄像头.iPublic.VideoForm.resources
│ └── 摄像头.pdb
├── 原生Camera.cs
├── 摄像头.csproj
├── 摄像头.sln
├── 摄像头.v12.suo
├── 摄像头AForge.cs
└── 第三方组件
├── AForge摄像头
│ ├── AForge.Controls.dll
│ ├── AForge.Imaging.dll
│ ├── AForge.NET Framework-2.2.5-(libs only完整发行包含第三方DLL).zip
│ ├── AForge.Video.DirectShow.dll
│ ├── AForge.Video.FFMPEG.dll
│ ├── AForge.Video.VFW.dll
│ ├── AForge.Video.dll
│ ├── AForge.dll
│ ├── AForge需要的外围DLL.rar
│ └── 说明.txt
├── Camera_Net_Library_and_Samples._Sources.__v1.1.2_fix1
│ ├── Camera_Net
│ │ ├── Camera_NET.csproj
│ │ ├── Camera_NET.sln
│ │ ├── Internal
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Direct3DMixing.cs
│ │ │ ├── DirectXInterfaces.cs
│ │ │ ├── NativeMethodes.cs
│ │ │ └── SampleGrabberHelper.cs
│ │ ├── LGPL
│ │ ├── LICENSE
│ │ ├── Public
│ │ │ ├── Camera.cs
│ │ │ ├── CameraChoice.cs
│ │ │ ├── CameraControl.Designer.cs
│ │ │ ├── CameraControl.cs
│ │ │ ├── CameraControl.resx
│ │ │ ├── Resolution.cs
│ │ │ ├── ResolutionList.cs
│ │ │ └── VideoInput.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Camera_NET.dll
│ │ │ ├── Camera_NET.pdb
│ │ │ ├── DirectShowLib-2010.dll
│ │ │ └── DirectShowLib-2010.pdb
│ │ └── obj
│ │ └── Debug
│ │ ├── Camera_NET.CameraControl.resources
│ │ ├── Camera_NET.csproj.FileListAbsolute.txt
│ │ ├── Camera_NET.csproj.GenerateResource.Cache
│ │ ├── Camera_NET.csprojResolveAssemblyReference.cache
│ │ ├── Camera_NET.dll
│ │ ├── Camera_NET.pdb
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── DirectShowLib
│ │ ├── AXExtend.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── AxCore.cs
│ │ ├── BDAIface.cs
│ │ ├── BDATypes.cs
│ │ ├── Bdatif.cs
│ │ ├── Control.cs
│ │ ├── DES.cs
│ │ ├── DMODShow.cs
│ │ ├── DShowNET.snk
│ │ ├── DVDIf.cs
│ │ ├── DevEnum.cs
│ │ ├── DirectShowLib-2010.csproj
│ │ ├── DsUtils.cs
│ │ ├── DynGraph.cs
│ │ ├── EvCode.cs
│ │ ├── IL21Dec.cs
│ │ ├── MediaObj.cs
│ │ ├── MediaParam.cs
│ │ ├── Misc.cs
│ │ ├── Mixerocx.cs
│ │ ├── Mpeg2Data.cs
│ │ ├── Mpeg2Structs.cs
│ │ ├── PlayList.cs
│ │ ├── QEdit.cs
│ │ ├── README.md
│ │ ├── RegBag.cs
│ │ ├── Sbe.cs
│ │ ├── Tuner.cs
│ │ ├── TvRatings.cs
│ │ ├── Uuids.cs
│ │ ├── VidPort.cs
│ │ ├── Vidcap.cs
│ │ ├── VmRender.cs
│ │ ├── Vmr9.cs
│ │ ├── amstream.cs
│ │ ├── amvideo.cs
│ │ ├── app.config
│ │ ├── atscpsipparser.cs
│ │ ├── austream.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── DirectShowLib-2010.dll
│ │ │ ├── DirectShowLib-2010.dll.config
│ │ │ └── DirectShowLib-2010.pdb
│ │ ├── dsattrib.cs
│ │ ├── dvbsiparser.cs
│ │ ├── encdec.cs
│ │ ├── mmstream.cs
│ │ ├── mpconfig.cs
│ │ ├── mpeg2psiparser.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── DirectShowLib-2010.csproj.FileListAbsolute.txt
│ │ │ ├── DirectShowLib-2010.dll
│ │ │ └── DirectShowLib-2010.pdb
│ │ ├── other.cs
│ │ └── qnetwork.cs
│ ├── LICENSE
│ ├── README.md
│ ├── README.russian.md
│ ├── Releases
│ │ ├── CameraControlSample.exe
│ │ ├── CameraControlTool.exe
│ │ ├── Camera_NET.dll
│ │ ├── DirectShowLib-2010.dll
│ │ └── VerySimple.exe
│ ├── Samples
│ │ ├── CameraControlSample
│ │ │ ├── CameraControlSample.csproj
│ │ │ ├── FormCameraControlSample.Designer.cs
│ │ │ ├── FormCameraControlSample.cs
│ │ │ ├── FormCameraControlSample.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── app.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CameraControlSample.exe
│ │ │ │ ├── CameraControlSample.exe.config
│ │ │ │ ├── CameraControlSample.pdb
│ │ │ │ ├── CameraControlSample.vshost.exe
│ │ │ │ ├── CameraControlSample.vshost.exe.config
│ │ │ │ ├── CameraControlSample.vshost.exe.manifest
│ │ │ │ ├── Camera_NET.dll
│ │ │ │ ├── Camera_NET.pdb
│ │ │ │ ├── DirectShowLib-2010.dll
│ │ │ │ └── DirectShowLib-2010.pdb
│ │ │ ├── icon
│ │ │ │ └── Camera_icon.ico
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── CameraControlSample.FormCameraControlSample.resources
│ │ │ ├── CameraControlSample.Properties.Resources.resources
│ │ │ ├── CameraControlSample.csproj.FileListAbsolute.txt
│ │ │ ├── CameraControlSample.csproj.GenerateResource.Cache
│ │ │ ├── CameraControlSample.csprojResolveAssemblyReference.cache
│ │ │ ├── CameraControlSample.exe
│ │ │ ├── CameraControlSample.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── CameraControlTool
│ │ │ ├── CameraControlTool.csproj
│ │ │ ├── Camera_icon.ico
│ │ │ ├── FormCameraControlTool.Designer.cs
│ │ │ ├── FormCameraControlTool.cs
│ │ │ ├── FormCameraControlTool.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Resources
│ │ │ │ └── unzoom.png
│ │ │ ├── app.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── CameraControlTool.exe
│ │ │ │ ├── CameraControlTool.exe.config
│ │ │ │ ├── CameraControlTool.pdb
│ │ │ │ ├── CameraControlTool.vshost.exe
│ │ │ │ ├── CameraControlTool.vshost.exe.config
│ │ │ │ ├── CameraControlTool.vshost.exe.manifest
│ │ │ │ ├── Camera_NET.dll
│ │ │ │ ├── Camera_NET.pdb
│ │ │ │ ├── DirectShowLib-2010.dll
│ │ │ │ └── DirectShowLib-2010.pdb
│ │ │ ├── icon
│ │ │ │ └── Camera_icon.ico
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── CameraControlTool.FormCameraControlTool.resources
│ │ │ ├── CameraControlTool.Properties.Resources.resources
│ │ │ ├── CameraControlTool.csproj.FileListAbsolute.txt
│ │ │ ├── CameraControlTool.csproj.GenerateResource.Cache
│ │ │ ├── CameraControlTool.csprojResolveAssemblyReference.cache
│ │ │ ├── CameraControlTool.exe
│ │ │ ├── CameraControlTool.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── CameraSamples.sln
│ │ ├── License (for Samples).txt
│ │ └── VerySimple
│ │ ├── FormVerySimple.Designer.cs
│ │ ├── FormVerySimple.cs
│ │ ├── FormVerySimple.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── VerySimple.csproj
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Camera_NET.dll
│ │ │ ├── Camera_NET.pdb
│ │ │ ├── DirectShowLib-2010.dll
│ │ │ ├── DirectShowLib-2010.pdb
│ │ │ ├── VerySimple.exe
│ │ │ ├── VerySimple.exe.config
│ │ │ ├── VerySimple.pdb
│ │ │ ├── VerySimple.vshost.exe
│ │ │ ├── VerySimple.vshost.exe.config
│ │ │ └── VerySimple.vshost.exe.manifest
│ │ └── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── VerySimple.FormVerySimple.resources
│ │ ├── VerySimple.Properties.Resources.resources
│ │ ├── VerySimple.csproj.FileListAbsolute.txt
│ │ ├── VerySimple.csproj.GenerateResource.Cache
│ │ ├── VerySimple.csprojResolveAssemblyReference.cache
│ │ ├── VerySimple.exe
│ │ └── VerySimple.pdb
│ ├── other
│ │ ├── Direct3D surface overlay HowTo.txt
│ │ └── OS Loader Lock exception walkaround.txt
│ └── screenshots
│ ├── CameraControlTool_sample_screenshot.png
│ ├── Simple_sample_screenshot.png
│ └── filter graph
│ ├── graph_simple.png
│ ├── graph_usual.png
│ └── graph_with_mediatype_change.png
├── Camera_Net_Library_and_Samples._Sources.__v1.1.2_fix1.zip
├── Newtonsoft.Json.dll
└── Newtonsoft.Json.xml
49 directories, 268 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论