在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → 视频采集控件源码

视频采集控件源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:21.47M
  • 下载次数:15
  • 浏览次数:296
  • 发布时间:2022-05-24
  • 实例类别:C#语言基础
  • 发 布 人:赵维
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 控件 视频 采集

实例介绍

【实例简介】视频采集控件源码

【实例截图】

from clipboard

【核心代码】

.
├── AForge.NET-master
│   ├── Copyright.txt
│   ├── Externals
│   │   ├── GhostAPI
│   │   │   ├── AForge ReadMe.txt
│   │   │   ├── GhostAPI.dll
│   │   │   ├── PbkComm32.dll
│   │   │   ├── PbkUsbPort.dll
│   │   │   └── relnotes.txt
│   │   ├── TeRK
│   │   │   ├── AForge ReadMe.txt
│   │   │   └── TeRK.dll
│   │   ├── ffmpeg
│   │   │   ├── AForge ReadMe.txt
│   │   │   ├── README.txt
│   │   │   ├── bin
│   │   │   │   ├── avcodec-53.dll
│   │   │   │   ├── avdevice-53.dll
│   │   │   │   ├── avfilter-2.dll
│   │   │   │   ├── avformat-53.dll
│   │   │   │   ├── avutil-51.dll
│   │   │   │   ├── postproc-52.dll
│   │   │   │   ├── swresample-0.dll
│   │   │   │   └── swscale-2.dll
│   │   │   ├── include
│   │   │   │   ├── libavcodec
│   │   │   │   │   ├── avcodec.h
│   │   │   │   │   ├── avfft.h
│   │   │   │   │   ├── dxva2.h
│   │   │   │   │   ├── opt.h
│   │   │   │   │   ├── vaapi.h
│   │   │   │   │   ├── vda.h
│   │   │   │   │   ├── vdpau.h
│   │   │   │   │   ├── version.h
│   │   │   │   │   └── xvmc.h
│   │   │   │   ├── libavdevice
│   │   │   │   │   └── avdevice.h
│   │   │   │   ├── libavfilter
│   │   │   │   │   ├── avcodec.h
│   │   │   │   │   ├── avfilter.h
│   │   │   │   │   ├── avfiltergraph.h
│   │   │   │   │   ├── buffersink.h
│   │   │   │   │   ├── version.h
│   │   │   │   │   └── vsrc_buffer.h
│   │   │   │   ├── libavformat
│   │   │   │   │   ├── avformat.h
│   │   │   │   │   ├── avio.h
│   │   │   │   │   └── version.h
│   │   │   │   ├── libavutil
│   │   │   │   │   ├── adler32.h
│   │   │   │   │   ├── aes.h
│   │   │   │   │   ├── attributes.h
│   │   │   │   │   ├── audioconvert.h
│   │   │   │   │   ├── avassert.h
│   │   │   │   │   ├── avconfig.h
│   │   │   │   │   ├── avstring.h
│   │   │   │   │   ├── avutil.h
│   │   │   │   │   ├── base64.h
│   │   │   │   │   ├── bswap.h
│   │   │   │   │   ├── common.h
│   │   │   │   │   ├── cpu.h
│   │   │   │   │   ├── crc.h
│   │   │   │   │   ├── dict.h
│   │   │   │   │   ├── error.h
│   │   │   │   │   ├── eval.h
│   │   │   │   │   ├── fifo.h
│   │   │   │   │   ├── file.h
│   │   │   │   │   ├── imgutils.h
│   │   │   │   │   ├── intfloat_readwrite.h
│   │   │   │   │   ├── intreadwrite.h
│   │   │   │   │   ├── lfg.h
│   │   │   │   │   ├── log.h
│   │   │   │   │   ├── lzo.h
│   │   │   │   │   ├── mathematics.h
│   │   │   │   │   ├── md5.h
│   │   │   │   │   ├── mem.h
│   │   │   │   │   ├── opt.h
│   │   │   │   │   ├── parseutils.h
│   │   │   │   │   ├── pixdesc.h
│   │   │   │   │   ├── pixfmt.h
│   │   │   │   │   ├── random_seed.h
│   │   │   │   │   ├── rational.h
│   │   │   │   │   ├── samplefmt.h
│   │   │   │   │   └── sha.h
│   │   │   │   ├── libpostproc
│   │   │   │   │   └── postprocess.h
│   │   │   │   ├── libswresample
│   │   │   │   │   └── swresample.h
│   │   │   │   └── libswscale
│   │   │   │       └── swscale.h
│   │   │   ├── lib
│   │   │   │   ├── avcodec.lib
│   │   │   │   ├── avdevice.lib
│   │   │   │   ├── avfilter.lib
│   │   │   │   ├── avformat.lib
│   │   │   │   ├── avutil.lib
│   │   │   │   ├── postproc.lib
│   │   │   │   ├── swresample.lib
│   │   │   │   └── swscale.lib
│   │   │   └── licenses
│   │   │       ├── bzip2.txt
│   │   │       ├── ffmpeg.txt
│   │   │       ├── freetype.txt
│   │   │       ├── frei0r.txt
│   │   │       ├── gsm.txt
│   │   │       ├── lame.txt
│   │   │       ├── libvpx.txt
│   │   │       ├── opencore-amr.txt
│   │   │       ├── openjpeg.txt
│   │   │       ├── rtmp.txt
│   │   │       ├── schroedinger.txt
│   │   │       ├── sdl.txt
│   │   │       ├── speex.txt
│   │   │       ├── theora.txt
│   │   │       ├── vo-aacenc.txt
│   │   │       ├── vo-amrwbenc.txt
│   │   │       ├── vorbis.txt
│   │   │       ├── x264.txt
│   │   │       ├── xavs.txt
│   │   │       ├── xvid.txt
│   │   │       └── zlib.txt
│   │   ├── libfreenect
│   │   │   ├── AForge ReadMe.txt
│   │   │   ├── APACHE20
│   │   │   └── freenect.dll
│   │   └── msinttypes
│   │       ├── AForge ReadMe.txt
│   │       ├── changelog.txt
│   │       ├── inttypes.h
│   │       └── stdint.h
│   ├── LICENSE
│   ├── License.txt
│   ├── README.md
│   ├── Release notes.txt
│   ├── Samples
│   │   ├── Core
│   │   │   └── ParallelTest
│   │   │       ├── ParallelTest (mono).csproj
│   │   │       ├── ParallelTest (mono).sln
│   │   │       ├── ParallelTest.csproj
│   │   │       ├── ParallelTest.sln
│   │   │       ├── Program.cs
│   │   │       └── Properties
│   │   │           └── AssemblyInfo.cs
│   │   ├── Fuzzy
│   │   │   ├── Fuzzy Set Sample
│   │   │   │   ├── FuzzySetSample.csproj
│   │   │   │   ├── FuzzySetSample.sln
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Sample.Designer.cs
│   │   │   │   ├── Sample.cs
│   │   │   │   └── Sample.resx
│   │   │   └── FuzzyAGV
│   │   │       ├── AboutForm.Designer.cs
│   │   │       ├── AboutForm.cs
│   │   │       ├── AboutForm.resx
│   │   │       ├── AssemblyInfo.cs
│   │   │       ├── FuzzyAGV.csproj
│   │   │       ├── FuzzyAGV.sln
│   │   │       ├── MainForm.cs
│   │   │       ├── MainForm.resx
│   │   │       └── Properties
│   │   │           ├── Resources.Designer.cs
│   │   │           ├── Resources.resx
│   │   │           └── app.manifest
│   │   ├── Genetic
│   │   │   ├── Approximation
│   │   │   │   ├── App.ico
│   │   │   │   ├── Approximation.csproj
│   │   │   │   ├── Approximation.sln
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Data Samples
│   │   │   │   │   ├── sample1.csv
│   │   │   │   │   └── sample2.csv
│   │   │   │   ├── MainForm.cs
│   │   │   │   └── MainForm.resx
│   │   │   ├── Optimization1D
│   │   │   │   ├── App.ico
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Optimization1D.csproj
│   │   │   │   └── Optimization1D.sln
│   │   │   ├── TSP
│   │   │   │   ├── App.ico
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── TSP.csproj
│   │   │   │   ├── TSP.sln
│   │   │   │   ├── TSPChromosome.cs
│   │   │   │   └── TSPFitnessFunction.cs
│   │   │   └── TimeSeries
│   │   │       ├── App.ico
│   │   │       ├── AssemblyInfo.cs
│   │   │       ├── Data Samples
│   │   │       │   ├── exponent.csv
│   │   │       │   ├── growing sinusoid.csv
│   │   │       │   ├── parabola.csv
│   │   │       │   ├── sigmoid.csv
│   │   │       │   └── sinusoid.csv
│   │   │       ├── ExSettingsDialog.cs
│   │   │       ├── ExSettingsDialog.resx
│   │   │       ├── MainForm.cs
│   │   │       ├── MainForm.resx
│   │   │       ├── TimeSeries.csproj
│   │   │       └── TimeSeries.sln
│   │   ├── Imaging
│   │   │   ├── BlobsExplorer
│   │   │   │   ├── AboutForm.Designer.cs
│   │   │   │   ├── AboutForm.cs
│   │   │   │   ├── AboutForm.resx
│   │   │   │   ├── BlobsBrowser.Designer.cs
│   │   │   │   ├── BlobsBrowser.cs
│   │   │   │   ├── BlobsBrowser.resx
│   │   │   │   ├── BlobsExplorer.csproj
│   │   │   │   ├── BlobsExplorer.sln
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   └── demo.png
│   │   │   ├── FiltersDemo
│   │   │   │   ├── App.ico
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── FiltersDemo.csproj
│   │   │   │   ├── FiltersDemo.sln
│   │   │   │   ├── MainForm.cs
│   │   │   │   └── MainForm.resx
│   │   │   ├── HoughTransformation
│   │   │   │   ├── HoughTransformation.csproj
│   │   │   │   ├── HoughTransformation.sln
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   └── Sample Images
│   │   │   │       └── sample.bmp
│   │   │   ├── IPPrototyper Sample
│   │   │   │   ├── CoinsFinder.cs
│   │   │   │   ├── IPPrototyper Sample.csproj
│   │   │   │   ├── IPPrototyper Sample.csproj.user
│   │   │   │   ├── IPPrototyper Sample.sln
│   │   │   │   ├── Images
│   │   │   │   │   ├── coins-01.jpg
│   │   │   │   │   ├── coins-02.jpg
│   │   │   │   │   ├── coins-03.jpg
│   │   │   │   │   ├── coins-04.jpg
│   │   │   │   │   ├── coins-05.jpg
│   │   │   │   │   ├── coins-06.jpg
│   │   │   │   │   └── coins-07.jpg
│   │   │   │   ├── Properties
│   │   │   │   │   └── AssemblyInfo.cs
│   │   │   │   └── Read Me.txt
│   │   │   ├── ImageViewer
│   │   │   │   ├── ImageViewer.csproj
│   │   │   │   ├── ImageViewer.sln
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── ShapeChecker
│   │   │   │   ├── AboutForm.Designer.cs
│   │   │   │   ├── AboutForm.cs
│   │   │   │   ├── AboutForm.resx
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── ShapeChecker.csproj
│   │   │   │   ├── ShapeChecker.sln
│   │   │   │   ├── coins.jpg
│   │   │   │   ├── demo.png
│   │   │   │   ├── demo1.png
│   │   │   │   └── demo2.png
│   │   │   └── TexturesDemo
│   │   │       ├── MainForm.Designer.cs
│   │   │       ├── MainForm.cs
│   │   │       ├── MainForm.resx
│   │   │       ├── Program.cs
│   │   │       ├── Properties
│   │   │       │   ├── AssemblyInfo.cs
│   │   │       │   ├── Resources.Designer.cs
│   │   │       │   ├── Resources.resx
│   │   │       │   ├── Settings.Designer.cs
│   │   │       │   └── Settings.settings
│   │   │       ├── TexturesDemo.csproj
│   │   │       └── TexturesDemo.sln
│   │   ├── MachineLearning
│   │   │   └── Animat
│   │   │       ├── Animat.csproj
│   │   │       ├── Animat.sln
│   │   │       ├── CellWorld.Designer.cs
│   │   │       ├── CellWorld.cs
│   │   │       ├── CellWorld.resx
│   │   │       ├── Data files
│   │   │       │   ├── sample1.map
│   │   │       │   ├── sample2.map
│   │   │       │   ├── test1.map
│   │   │       │   ├── test2.map
│   │   │       │   └── test3.map
│   │   │       ├── MainForm.Designer.cs
│   │   │       ├── MainForm.cs
│   │   │       ├── MainForm.resx
│   │   │       ├── Program.cs
│   │   │       └── Properties
│   │   │           ├── AssemblyInfo.cs
│   │   │           ├── Resources.Designer.cs
│   │   │           ├── Resources.resx
│   │   │           ├── Settings.Designer.cs
│   │   │           └── Settings.settings
│   │   ├── Math
│   │   │   ├── Pose Estimation
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── MatrixControl.Designer.cs
│   │   │   │   ├── MatrixControl.cs
│   │   │   │   ├── MatrixControl.resx
│   │   │   │   ├── Pose Estimation.csproj
│   │   │   │   ├── Pose Estimation.sln
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── WorldRendererControl.Designer.cs
│   │   │   │   ├── WorldRendererControl.cs
│   │   │   │   └── WorldRendererControl.resx
│   │   │   └── Pose Estimation 2
│   │   │       ├── MainForm.Designer.cs
│   │   │       ├── MainForm.cs
│   │   │       ├── MainForm.resx
│   │   │       ├── MatrixControl.Designer.cs
│   │   │       ├── MatrixControl.cs
│   │   │       ├── MatrixControl.resx
│   │   │       ├── Pose Estimation.csproj
│   │   │       ├── Pose Estimation.sln
│   │   │       ├── Program.cs
│   │   │       ├── Properties
│   │   │       │   ├── AssemblyInfo.cs
│   │   │       │   ├── Resources.Designer.cs
│   │   │       │   ├── Resources.resx
│   │   │       │   ├── Settings.Designer.cs
│   │   │       │   └── Settings.settings
│   │   │       └── Samples
│   │   │           ├── sample1.jpg
│   │   │           ├── sample2.jpg
│   │   │           ├── sample3.jpg
│   │   │           ├── sample4.jpg
│   │   │           └── sample5.jpg
│   │   ├── Neuro
│   │   │   ├── Back Propagation
│   │   │   │   ├── Approximation
│   │   │   │   │   ├── App.ico
│   │   │   │   │   ├── Approximation.csproj
│   │   │   │   │   ├── Approximation.sln
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Data Samples
│   │   │   │   │   │   ├── sample1.csv
│   │   │   │   │   │   └── sample2.csv
│   │   │   │   │   ├── MainForm.cs
│   │   │   │   │   └── MainForm.resx
│   │   │   │   ├── TimeSeries
│   │   │   │   │   ├── App.ico
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Data Samples
│   │   │   │   │   │   ├── exponent.csv
│   │   │   │   │   │   ├── growing sinusoid.csv
│   │   │   │   │   │   ├── parabola.csv
│   │   │   │   │   │   ├── sigmoid.csv
│   │   │   │   │   │   └── sinusoid.csv
│   │   │   │   │   ├── MainForm.cs
│   │   │   │   │   ├── MainForm.resx
│   │   │   │   │   ├── TimeSeries.csproj
│   │   │   │   │   └── TimeSeries.sln
│   │   │   │   └── XORProblem
│   │   │   │       ├── App.ico
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── MainForm.cs
│   │   │   │       ├── MainForm.resx
│   │   │   │       ├── XORProblem.csproj
│   │   │   │       └── XORProblem.sln
│   │   │   ├── SOM
│   │   │   │   ├── 2DOrganizing
│   │   │   │   │   ├── 2DOrganizing.csproj
│   │   │   │   │   ├── 2DOrganizing.sln
│   │   │   │   │   ├── App.ico
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── BufferedPanel.cs
│   │   │   │   │   ├── MainForm.cs
│   │   │   │   │   └── MainForm.resx
│   │   │   │   ├── Color
│   │   │   │   │   ├── App.ico
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── BufferedPanel.cs
│   │   │   │   │   ├── Color.csproj
│   │   │   │   │   ├── Color.sln
│   │   │   │   │   ├── MainForm.cs
│   │   │   │   │   └── MainForm.resx
│   │   │   │   └── TSP
│   │   │   │       ├── App.ico
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── MainForm.cs
│   │   │   │       ├── MainForm.resx
│   │   │   │       ├── TSP.csproj
│   │   │   │       └── TSP.sln
│   │   │   └── Simple
│   │   │       ├── Delta Rule Learning
│   │   │       │   ├── App.ico
│   │   │       │   ├── AssemblyInfo.cs
│   │   │       │   ├── Classifier.csproj
│   │   │       │   ├── Classifier.sln
│   │   │       │   ├── Data Samples
│   │   │       │   │   ├── and.csv
│   │   │       │   │   ├── cube.csv
│   │   │       │   │   ├── or.csv
│   │   │       │   │   ├── sample1.csv
│   │   │       │   │   └── sample2.csv
│   │   │       │   ├── MainForm.cs
│   │   │       │   └── MainForm.resx
│   │   │       ├── One-Layer Perceptron Classifier
│   │   │       │   ├── App.ico
│   │   │       │   ├── AssemblyInfo.cs
│   │   │       │   ├── Classifier.csproj
│   │   │       │   ├── Classifier.sln
│   │   │       │   ├── Data Samples
│   │   │       │   │   ├── sample1.csv
│   │   │       │   │   └── sample2.csv
│   │   │       │   ├── MainForm.cs
│   │   │       │   └── MainForm.resx
│   │   │       └── Perceptron Classifier
│   │   │           ├── App.ico
│   │   │           ├── AssemblyInfo.cs
│   │   │           ├── Classifier.csproj
│   │   │           ├── Classifier.sln
│   │   │           ├── Data Samples
│   │   │           │   ├── and.csv
│   │   │           │   ├── cube.csv
│   │   │           │   └── or.csv
│   │   │           ├── MainForm.cs
│   │   │           └── MainForm.resx
│   │   ├── Robotics
│   │   │   ├── Lego
│   │   │   │   ├── NXTTest
│   │   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   │   ├── MainForm.cs
│   │   │   │   │   ├── MainForm.resx
│   │   │   │   │   ├── NXTTest.csproj
│   │   │   │   │   ├── NXTTest.sln
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   └── Properties
│   │   │   │   │       ├── AssemblyInfo.cs
│   │   │   │   │       ├── Resources.Designer.cs
│   │   │   │   │       ├── Resources.resx
│   │   │   │   │       ├── Settings.Designer.cs
│   │   │   │   │       └── Settings.settings
│   │   │   │   └── RCXTest
│   │   │   │       ├── MainForm.Designer.cs
│   │   │   │       ├── MainForm.cs
│   │   │   │       ├── MainForm.resx
│   │   │   │       ├── Program.cs
│   │   │   │       ├── Properties
│   │   │   │       │   ├── AssemblyInfo.cs
│   │   │   │       │   ├── Resources.Designer.cs
│   │   │   │       │   ├── Resources.resx
│   │   │   │       │   ├── Settings.Designer.cs
│   │   │   │       │   └── Settings.settings
│   │   │   │       ├── RCXTest.csproj
│   │   │   │       └── RCXTest.sln
│   │   │   ├── Surveyor
│   │   │   │   ├── SRVTest
│   │   │   │   │   ├── AboutForm.Designer.cs
│   │   │   │   │   ├── AboutForm.cs
│   │   │   │   │   ├── AboutForm.resx
│   │   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   │   ├── MainForm.cs
│   │   │   │   │   ├── MainForm.resx
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── Resources
│   │   │   │   │   │   └── srv.png
│   │   │   │   │   ├── SRVTest.csproj
│   │   │   │   │   ├── SRVTest.sln
│   │   │   │   │   ├── SrvDriverControl.Designer.cs
│   │   │   │   │   ├── SrvDriverControl.cs
│   │   │   │   │   └── SrvDriverControl.resx
│   │   │   │   └── SVSTest
│   │   │   │       ├── AboutForm.Designer.cs
│   │   │   │       ├── AboutForm.cs
│   │   │   │       ├── AboutForm.resx
│   │   │   │       ├── MainForm.Designer.cs
│   │   │   │       ├── MainForm.cs
│   │   │   │       ├── MainForm.resx
│   │   │   │       ├── Program.cs
│   │   │   │       ├── Properties
│   │   │   │       │   ├── AssemblyInfo.cs
│   │   │   │       │   ├── Resources.Designer.cs
│   │   │   │       │   ├── Resources.resx
│   │   │   │       │   ├── Settings.Designer.cs
│   │   │   │       │   └── Settings.settings
│   │   │   │       ├── Resources
│   │   │   │       │   └── svs.png
│   │   │   │       ├── SVSTest.csproj
│   │   │   │       ├── SVSTest.sln
│   │   │   │       ├── SrvDriverControl.Designer.cs
│   │   │   │       ├── SrvDriverControl.cs
│   │   │   │       ├── SrvDriverControl.resx
│   │   │   │       ├── StereoViewForm.Designer.cs
│   │   │   │       ├── StereoViewForm.cs
│   │   │   │       └── StereoViewForm.resx
│   │   │   └── TeRK
│   │   │       └── QwerkStart
│   │   │           ├── MainForm.Designer.cs
│   │   │           ├── MainForm.cs
│   │   │           ├── MainForm.resx
│   │   │           ├── Program.cs
│   │   │           ├── Properties
│   │   │           │   ├── AssemblyInfo.cs
│   │   │           │   ├── Resources.Designer.cs
│   │   │           │   ├── Resources.resx
│   │   │           │   ├── Settings.Designer.cs
│   │   │           │   └── Settings.settings
│   │   │           ├── QwerkStart.csproj
│   │   │           └── QwerkStart.sln
│   │   ├── Video
│   │   │   ├── Kinect Capture
│   │   │   │   ├── Kinect Capture.csproj
│   │   │   │   ├── Kinect Capture.sln
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │       ├── AssemblyInfo.cs
│   │   │   │       ├── Resources.Designer.cs
│   │   │   │       ├── Resources.resx
│   │   │   │       ├── Settings.Designer.cs
│   │   │   │       └── Settings.settings
│   │   │   ├── Player
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Player.csproj
│   │   │   │   ├── Player.sln
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── URLForm.Designer.cs
│   │   │   │   ├── URLForm.cs
│   │   │   │   └── URLForm.resx
│   │   │   ├── Snapshot Maker
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Snapshot Maker.csproj
│   │   │   │   ├── Snapshot Maker.sln
│   │   │   │   ├── SnapshotForm.Designer.cs
│   │   │   │   ├── SnapshotForm.cs
│   │   │   │   └── SnapshotForm.resx
│   │   │   ├── Two Cameras Test
│   │   │   │   ├── MainForm.Designer.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── MainForm.resx
│   │   │   │   ├── Program.cs
│   │   │   │   ├── Properties
│   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   ├── Resources.resx
│   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   └── Settings.settings
│   │   │   │   ├── Two Cameras Test.csproj
│   │   │   │   └── Two Cameras Test.sln
│   │   │   └── Ximea Sample
│   │   │       ├── MainForm.Designer.cs
│   │   │       ├── MainForm.cs
│   │   │       ├── MainForm.resx
│   │   │       ├── Program.cs
│   │   │       ├── Properties
│   │   │       │   ├── AssemblyInfo.cs
│   │   │       │   ├── Resources.Designer.cs
│   │   │       │   ├── Resources.resx
│   │   │       │   ├── Settings.Designer.cs
│   │   │       │   └── Settings.settings
│   │   │       ├── Ximea Sample.csproj
│   │   │       └── Ximea Sample.sln
│   │   └── Vision
│   │       └── MotionDetector
│   │           ├── AboutForm.Designer.cs
│   │           ├── AboutForm.cs
│   │           ├── AboutForm.resx
│   │           ├── App.ico
│   │           ├── DefineRegionsControl.Designer.cs
│   │           ├── DefineRegionsControl.cs
│   │           ├── Images
│   │           │   ├── clear.png
│   │           │   └── rectangle.png
│   │           ├── MainForm.Designer.cs
│   │           ├── MainForm.cs
│   │           ├── MainForm.resx
│   │           ├── MotionDetector.csproj
│   │           ├── MotionDetector.exe.config
│   │           ├── MotionDetector.sln
│   │           ├── MotionRegionsForm.Designer.cs
│   │           ├── MotionRegionsForm.cs
│   │           ├── MotionRegionsForm.resx
│   │           ├── Program.cs
│   │           ├── Properties
│   │           │   ├── AssemblyInfo.cs
│   │           │   ├── Resources.Designer.cs
│   │           │   ├── Resources.resx
│   │           │   ├── Settings.Designer.cs
│   │           │   └── Settings.settings
│   │           ├── URLForm.Designer.cs
│   │           ├── URLForm.cs
│   │           ├── URLForm.resx
│   │           ├── VideoCaptureDeviceForm.Designer.cs
│   │           ├── VideoCaptureDeviceForm.cs
│   │           └── VideoCaptureDeviceForm.resx
│   ├── Setup
│   │   ├── Docs Projects
│   │   │   └── AForge.NET.shfb
│   │   ├── Installer
│   │   │   ├── aforge.iss
│   │   │   └── license.txt
│   │   └── NuGet
│   │       ├── AForge.Controls.nuspec
│   │       ├── AForge.Genetic.nuspec
│   │       ├── AForge.Imaging.nuspec
│   │       ├── AForge.Math.nuspec
│   │       ├── AForge.Neuro.nuspec
│   │       ├── AForge.Video.DirectShow.nuspec
│   │       ├── AForge.Video.nuspec
│   │       ├── AForge.Vision.nuspec
│   │       └── AForge.nuspec
│   ├── Sources
│   │   ├── Build All.sln
│   │   ├── Building.txt
│   │   ├── Controls
│   │   │   ├── AForge.Controls.snk
│   │   │   ├── Chart.cs
│   │   │   ├── Chart.resx
│   │   │   ├── ColorSlider.cs
│   │   │   ├── ColorSlider.resx
│   │   │   ├── Controls.csproj
│   │   │   ├── Controls.sln
│   │   │   ├── Histogram.cs
│   │   │   ├── Histogram.resx
│   │   │   ├── HuePicker.cs
│   │   │   ├── HuePicker.resx
│   │   │   ├── Images
│   │   │   │   ├── histogram.jpg
│   │   │   │   ├── hue_picker1.png
│   │   │   │   ├── hue_picker2.png
│   │   │   │   ├── manipulator_round.png
│   │   │   │   ├── manipulator_square.png
│   │   │   │   ├── slider_control.png
│   │   │   │   ├── slider_gradient.png
│   │   │   │   ├── slider_inner_gradient.png
│   │   │   │   ├── slider_outer_gradient.png
│   │   │   │   └── slider_threshold.png
│   │   │   ├── Joystick.cs
│   │   │   ├── JoystickAPI.cs
│   │   │   ├── ManipulatorControl.Designer.cs
│   │   │   ├── ManipulatorControl.cs
│   │   │   ├── ManipulatorControl.resx
│   │   │   ├── PictureBox.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Resources
│   │   │   │   └── arrow.bmp
│   │   │   ├── SliderControl.Designer.cs
│   │   │   ├── SliderControl.cs
│   │   │   ├── SliderControl.resx
│   │   │   ├── VideoSourcePlayer.Designer.cs
│   │   │   ├── VideoSourcePlayer.cs
│   │   │   └── VideoSourcePlayer.resx
│   │   ├── Core
│   │   │   ├── AForge.snk
│   │   │   ├── Core (mono).csproj
│   │   │   ├── Core (mono).sln
│   │   │   ├── Core.csproj
│   │   │   ├── Core.sln
│   │   │   ├── Delegates.cs
│   │   │   ├── DoublePoint.cs
│   │   │   ├── DoubleRange.cs
│   │   │   ├── EventArgs.cs
│   │   │   ├── Exceptions.cs
│   │   │   ├── IntPoint.cs
│   │   │   ├── IntRange.cs
│   │   │   ├── Parallel.cs
│   │   │   ├── Point.cs
│   │   │   ├── PolishExpression.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Range.cs
│   │   │   ├── SystemTools.cs
│   │   │   └── ThreadSafeRandom.cs
│   │   ├── Fuzzy
│   │   │   ├── AForge.Fuzzy.snk
│   │   │   ├── Clause.cs
│   │   │   ├── Database.cs
│   │   │   ├── Defuzzification
│   │   │   │   ├── CentroidDefuzzifier.cs
│   │   │   │   └── IDefuzzifier.cs
│   │   │   ├── Fuzzy (mono).csproj
│   │   │   ├── Fuzzy (mono).sln
│   │   │   ├── Fuzzy.csproj
│   │   │   ├── Fuzzy.sln
│   │   │   ├── FuzzyOutput.cs
│   │   │   ├── FuzzySet.cs
│   │   │   ├── InferenceSystem.cs
│   │   │   ├── LinguisticVariable.cs
│   │   │   ├── Membership Functions
│   │   │   │   ├── IMembershipFunction.cs
│   │   │   │   ├── PiecewiseLinearFunction.cs
│   │   │   │   ├── SingletonFunction.cs
│   │   │   │   └── TrapezoidalFunction.cs
│   │   │   ├── Operators
│   │   │   │   ├── ICoNorm.cs
│   │   │   │   ├── INorm.cs
│   │   │   │   ├── IUnaryOperator.cs
│   │   │   │   ├── MaximumCoNorm.cs
│   │   │   │   ├── MinimumNorm.cs
│   │   │   │   ├── NotOperator.cs
│   │   │   │   └── ProductNorm.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Rule.cs
│   │   │   └── Rulebase.cs
│   │   ├── Genetic
│   │   │   ├── AForge.Genetic.snk
│   │   │   ├── Chromosomes
│   │   │   │   ├── BinaryChromosome.cs
│   │   │   │   ├── ChromosomeBase.cs
│   │   │   │   ├── DoubleArrayChromosome.cs
│   │   │   │   ├── GP
│   │   │   │   │   ├── ExtendedGeneFunction.cs
│   │   │   │   │   ├── GEPChromosome.cs
│   │   │   │   │   ├── GPTreeChromosome.cs
│   │   │   │   │   ├── GPTreeNode.cs
│   │   │   │   │   ├── IGPGene.cs
│   │   │   │   │   └── SimpleGeneFunction.cs
│   │   │   │   ├── IChromosome.cs
│   │   │   │   ├── PermutationChromosome.cs
│   │   │   │   └── ShortArrayChromosome.cs
│   │   │   ├── Fitness Functions
│   │   │   │   ├── IFitnessFunction.cs
│   │   │   │   ├── OptimizationFunction1D.cs
│   │   │   │   ├── OptimizationFunction2D.cs
│   │   │   │   ├── SymbolicRegressionFitness.cs
│   │   │   │   └── TimeSeriesPredictionFitness.cs
│   │   │   ├── Genetic (mono).csproj
│   │   │   ├── Genetic (mono).sln
│   │   │   ├── Genetic.csproj
│   │   │   ├── Genetic.sln
│   │   │   ├── Population.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── Selection Algorithms
│   │   │       ├── EliteSelection.cs
│   │   │       ├── ISelectionMethod.cs
│   │   │       ├── RankSelection.cs
│   │   │       └── RouletteWheelSelection.cs
│   │   ├── Imaging
│   │   │   ├── AForge.Imaging.snk
│   │   │   ├── Blob.cs
│   │   │   ├── BlobCounter.cs
│   │   │   ├── BlobCounterBase.cs
│   │   │   ├── BlockMatch.cs
│   │   │   ├── Color Reduction
│   │   │   │   ├── BurkesColorDithering.cs
│   │   │   │   ├── ColorErrorDiffusionToAdjacentNeighbors.cs
│   │   │   │   ├── ColorImageQuantizer.cs
│   │   │   │   ├── ErrorDiffusionColorDithering.cs
│   │   │   │   ├── FloydSteinbergColorDithering.cs
│   │   │   │   ├── IColorQuantizer.cs
│   │   │   │   ├── JarvisJudiceNinkeColorDithering.cs
│   │   │   │   ├── MedianCutCube.cs
│   │   │   │   ├── MedianCutQuantizer.cs
│   │   │   │   ├── OrderedColorDithering.cs
│   │   │   │   ├── SierraColorDithering.cs
│   │   │   │   └── StuckiColorDithering.cs
│   │   │   ├── ColorConverter.cs
│   │   │   ├── Complex Filters
│   │   │   │   ├── FrequencyFilter.cs
│   │   │   │   └── IComplexFilter.cs
│   │   │   ├── ComplexImage.cs
│   │   │   ├── DocumentSkewChecker.cs
│   │   │   ├── Drawing.cs
│   │   │   ├── Exceptions.cs
│   │   │   ├── ExhaustiveBlockMatching.cs
│   │   │   ├── ExhaustiveTemplateMatching.cs
│   │   │   ├── Filters
│   │   │   │   ├── 2 Source filters
│   │   │   │   │   ├── Add.cs
│   │   │   │   │   ├── Difference.cs
│   │   │   │   │   ├── Intersect.cs
│   │   │   │   │   ├── Merge.cs
│   │   │   │   │   ├── Morph.cs
│   │   │   │   │   ├── MoveTowards.cs
│   │   │   │   │   ├── StereoAnaglyph.cs
│   │   │   │   │   ├── Subtract.cs
│   │   │   │   │   ├── ThresholdedDifference.cs
│   │   │   │   │   └── ThresholdedEuclideanDifference.cs
│   │   │   │   ├── Adaptive Binarization
│   │   │   │   │   ├── BradleyLocalThresholding.cs
│   │   │   │   │   ├── IterativeThreshold.cs
│   │   │   │   │   ├── OtsuThreshold.cs
│   │   │   │   │   └── SISThreshold.cs
│   │   │   │   ├── Base classes
│   │   │   │   │   ├── BaseFilter.cs
│   │   │   │   │   ├── BaseFilter2.cs
│   │   │   │   │   ├── BaseInPlaceFilter.cs
│   │   │   │   │   ├── BaseInPlaceFilter2.cs
│   │   │   │   │   ├── BaseInPlacePartialFilter.cs
│   │   │   │   │   ├── BaseResizeFilter.cs
│   │   │   │   │   ├── BaseRotateFilter.cs
│   │   │   │   │   ├── BaseTransformationFilter.cs
│   │   │   │   │   └── BaseUsingCopyPartialFilter.cs
│   │   │   │   ├── Binarization
│   │   │   │   │   ├── BayerDithering.cs
│   │   │   │   │   ├── BurkesDithering.cs
│   │   │   │   │   ├── ErrorDiffusionDithering.cs
│   │   │   │   │   ├── ErrorDiffusionToAdjacentNeighbors.cs
│   │   │   │   │   ├── FloydSteinbergDithering.cs
│   │   │   │   │   ├── JarvisJudiceNinkeDithering.cs
│   │   │   │   │   ├── OrderedDithering.cs
│   │   │   │   │   ├── SierraDithering.cs
│   │   │   │   │   ├── StuckiDithering.cs
│   │   │   │   │   ├── Threshold.cs
│   │   │   │   │   └── ThresholdWithCarry.cs
│   │   │   │   ├── Color Filters
│   │   │   │   │   ├── BayerFilter.cs
│   │   │   │   │   ├── BayerFilterOptimized.cs
│   │   │   │   │   ├── BrightnessCorrection.cs
│   │   │   │   │   ├── ChannelFiltering.cs
│   │   │   │   │   ├── ColorFiltering.cs
│   │   │   │   │   ├── ColorRemapping.cs
│   │   │   │   │   ├── ContrastCorrection.cs
│   │   │   │   │   ├── ContrastStretch.cs
│   │   │   │   │   ├── EuclideanColorFiltering.cs
│   │   │   │   │   ├── ExtractChannel.cs
│   │   │   │   │   ├── GammaCorrection.cs
│   │   │   │   │   ├── Grayscale.cs
│   │   │   │   │   ├── GrayscaleBT709.cs
│   │   │   │   │   ├── GrayscaleRMY.cs
│   │   │   │   │   ├── GrayscaleToRGB.cs
│   │   │   │   │   ├── GrayscaleY.cs
│   │   │   │   │   ├── HistogramEqualization.cs
│   │   │   │   │   ├── Invert.cs
│   │   │   │   │   ├── LevelsLinear.cs
│   │   │   │   │   ├── LevelsLinear16bpp.cs
│   │   │   │   │   ├── ReplaceChannel.cs
│   │   │   │   │   ├── RotateChannels.cs
│   │   │   │   │   └── Sepia.cs
│   │   │   │   ├── Color Segmentation
│   │   │   │   │   └── SimplePosterization.cs
│   │   │   │   ├── Convolution
│   │   │   │   │   ├── Blur.cs
│   │   │   │   │   ├── Convolution.cs
│   │   │   │   │   ├── Edges.cs
│   │   │   │   │   ├── GaussianBlur.cs
│   │   │   │   │   ├── Mean.cs
│   │   │   │   │   ├── Sharpen.cs
│   │   │   │   │   └── SharpenEx.cs
│   │   │   │   ├── Edge Detectors
│   │   │   │   │   ├── CannyEdgeDetector.cs
│   │   │   │   │   ├── DifferenceEdgeDetector.cs
│   │   │   │   │   ├── HomogenityEdgeDetector.cs
│   │   │   │   │   └── SobelEdgeDetector.cs
│   │   │   │   ├── FilterIterator.cs
│   │   │   │   ├── FiltersSequence.cs
│   │   │   │   ├── Flood Fillers
│   │   │   │   │   ├── PointedColorFloodFill.cs
│   │   │   │   │   └── PointedMeanFloodFill.cs
│   │   │   │   ├── HSL Filters
│   │   │   │   │   ├── HSLFiltering.cs
│   │   │   │   │   ├── HSLLinear.cs
│   │   │   │   │   ├── HueModifier.cs
│   │   │   │   │   └── SaturationCorrection.cs
│   │   │   │   ├── IFilter.cs
│   │   │   │   ├── IFilterInformation.cs
│   │   │   │   ├── IInPlaceFilter.cs
│   │   │   │   ├── IInPlacePartialFilter.cs
│   │   │   │   ├── IlluminationCorrection
│   │   │   │   │   └── FlatFieldCorrection.cs
│   │   │   │   ├── Morphology
│   │   │   │   │   ├── BottomHat.cs
│   │   │   │   │   ├── Closing.cs
│   │   │   │   │   ├── Dilatation.cs
│   │   │   │   │   ├── Erosion.cs
│   │   │   │   │   ├── HitAndMiss.cs
│   │   │   │   │   ├── Opening.cs
│   │   │   │   │   ├── Specific Optimizations
│   │   │   │   │   │   ├── BinaryDilatation3x3.cs
│   │   │   │   │   │   ├── BinaryErosion3x3.cs
│   │   │   │   │   │   ├── Dilatation3x3.cs
│   │   │   │   │   │   └── Erosion3.x3.cs
│   │   │   │   │   └── TopHat.cs
│   │   │   │   ├── Noise generation
│   │   │   │   │   ├── AdditiveNoise.cs
│   │   │   │   │   └── SaltAndPepperNoise.cs
│   │   │   │   ├── Normalized RGB
│   │   │   │   │   └── ExtractNormalizedRGBChannel.cs
│   │   │   │   ├── Other
│   │   │   │   │   ├── ApplyMask.cs
│   │   │   │   │   ├── BlobsFiltering.cs
│   │   │   │   │   ├── CanvasCrop.cs
│   │   │   │   │   ├── CanvasFill.cs
│   │   │   │   │   ├── CanvasMove.cs
│   │   │   │   │   ├── ConnectedComponentsLabeling.cs
│   │   │   │   │   ├── CornersMarker.cs
│   │   │   │   │   ├── ExtractBiggestBlob.cs
│   │   │   │   │   ├── FillHoles.cs
│   │   │   │   │   ├── HorizontalRunLengthSmoothing.cs
│   │   │   │   │   ├── ImageWarp.cs
│   │   │   │   │   ├── Jitter.cs
│   │   │   │   │   ├── MaskedFilter.cs
│   │   │   │   │   ├── Mirror.cs
│   │   │   │   │   ├── OilPainting.cs
│   │   │   │   │   ├── Pixellate.cs
│   │   │   │   │   ├── SimpleSkeletonization.cs
│   │   │   │   │   ├── TexturedFilter.cs
│   │   │   │   │   ├── TexturedMerge.cs
│   │   │   │   │   ├── Texturer.cs
│   │   │   │   │   ├── VerticalRunLengthSmoothing.cs
│   │   │   │   │   └── WaterWave.cs
│   │   │   │   ├── Smooting
│   │   │   │   │   ├── AdaptiveSmooth.cs
│   │   │   │   │   ├── BilateralSmoothing.cs
│   │   │   │   │   ├── ConservativeSmoothing.cs
│   │   │   │   │   └── Median.cs
│   │   │   │   ├── Transform
│   │   │   │   │   ├── BackwardQuadrilateralTransformation.cs
│   │   │   │   │   ├── Crop.cs
│   │   │   │   │   ├── Quad.cs
│   │   │   │   │   ├── QuadrilateralTransformation.cs
│   │   │   │   │   ├── QuadrilateralTransformationBilinear.cs
│   │   │   │   │   ├── QuadrilateralTransformationNearestNeighbor.cs
│   │   │   │   │   ├── ResizeBicubic.cs
│   │   │   │   │   ├── ResizeBilinear.cs
│   │   │   │   │   ├── ResizeNearestNeighbor.cs
│   │   │   │   │   ├── RotateBicubic.cs
│   │   │   │   │   ├── RotateBilinear.cs
│   │   │   │   │   ├── RotateNearestNeighbor.cs
│   │   │   │   │   ├── Shrink.cs
│   │   │   │   │   ├── SimpleQuadrilateralTransformation.cs
│   │   │   │   │   ├── TransformFromPolar.cs
│   │   │   │   │   └── TransformToPolar.cs
│   │   │   │   └── YCbCr Filters
│   │   │   │       ├── YCbCrExtractChannel.cs
│   │   │   │       ├── YCbCrFiltering.cs
│   │   │   │       ├── YCbCrLinear.cs
│   │   │   │       └── YCbCrReplaceChannel.cs
│   │   │   ├── HorizontalIntensityStatistics.cs
│   │   │   ├── HoughCircleTransformation.cs
│   │   │   ├── HoughLineTransformation.cs
│   │   │   ├── IBlobsFilter.cs
│   │   │   ├── IBlockMatching.cs
│   │   │   ├── ICornersDetector.cs
│   │   │   ├── ITemplateMatching.cs
│   │   │   ├── Image.cs
│   │   │   ├── ImageStatistics.cs
│   │   │   ├── ImageStatisticsHSL.cs
│   │   │   ├── ImageStatisticsYCbCr.cs
│   │   │   ├── Images
│   │   │   │   ├── adaptive_smooth.png
│   │   │   │   ├── add.png
│   │   │   │   ├── additive_noise.jpg
│   │   │   │   ├── anaglyph.png
│   │   │   │   ├── anaglyph_glasses.png
│   │   │   │   ├── background.jpg
│   │   │   │   ├── backward_quadrilateral.jpg
│   │   │   │   ├── bayer_dithering.jpg
│   │   │   │   ├── bayer_filter.jpg
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── biggest_blob.jpg
│   │   │   │   ├── bilateral.jpg
│   │   │   │   ├── blobs_filtering.jpg
│   │   │   │   ├── blur.jpg
│   │   │   │   ├── bottomhat.png
│   │   │   │   ├── bradley_local_thresholding.png
│   │   │   │   ├── brightness_correction.jpg
│   │   │   │   ├── burkes.jpg
│   │   │   │   ├── canny_edges.png
│   │   │   │   ├── canvas_crop.jpg
│   │   │   │   ├── canvas_move.jpg
│   │   │   │   ├── channel_filtering.jpg
│   │   │   │   ├── closing.png
│   │   │   │   ├── clouds_texture.jpg
│   │   │   │   ├── color_burkes.png
│   │   │   │   ├── color_filtering.jpg
│   │   │   │   ├── color_floyd_steinberg.png
│   │   │   │   ├── color_jarvis_judice_ninke.png
│   │   │   │   ├── color_remapping.jpg
│   │   │   │   ├── color_sierra.png
│   │   │   │   ├── color_stucki.png
│   │   │   │   ├── conservative_smoothing.png
│   │   │   │   ├── contrast_correction.jpg
│   │   │   │   ├── contrast_stretch.jpg
│   │   │   │   ├── crop.jpg
│   │   │   │   ├── deskew.png
│   │   │   │   ├── difference.png
│   │   │   │   ├── difference_edges.png
│   │   │   │   ├── dilatation.png
│   │   │   │   ├── ebm_result.png
│   │   │   │   ├── ebm_sample1.png
│   │   │   │   ├── ebm_sample2.png
│   │   │   │   ├── edges.png
│   │   │   │   ├── emboss.jpg
│   │   │   │   ├── equalized.jpg
│   │   │   │   ├── erosion.png
│   │   │   │   ├── euclidean_filtering.jpg
│   │   │   │   ├── extract_channel.jpg
│   │   │   │   ├── filled_holes.png
│   │   │   │   ├── flat_field.jpg
│   │   │   │   ├── floyd_steinberg.jpg
│   │   │   │   ├── fourier.jpg
│   │   │   │   ├── frequency_filter.jpg
│   │   │   │   ├── from_polar.png
│   │   │   │   ├── gamma.jpg
│   │   │   │   ├── gaussian_blur.jpg
│   │   │   │   ├── gaussian_sharpen.jpg
│   │   │   │   ├── grayscale.jpg
│   │   │   │   ├── hit-and-miss.png
│   │   │   │   ├── homogenity_edges.png
│   │   │   │   ├── hor_histogram.jpg
│   │   │   │   ├── hough_circles.jpg
│   │   │   │   ├── hough_lines.jpg
│   │   │   │   ├── hrls.png
│   │   │   │   ├── hsl_filtering.jpg
│   │   │   │   ├── hsl_filtering2.jpg
│   │   │   │   ├── hsl_linear.jpg
│   │   │   │   ├── hue_modifier.jpg
│   │   │   │   ├── icon.png
│   │   │   │   ├── image_warp.png
│   │   │   │   ├── intersect.png
│   │   │   │   ├── invert.jpg
│   │   │   │   ├── iterative_threshold.png
│   │   │   │   ├── jarvis_judice_ninke.jpg
│   │   │   │   ├── jitter.jpg
│   │   │   │   ├── labeling.jpg
│   │   │   │   ├── labyrinth_texture.jpg
│   │   │   │   ├── levels_linear.jpg
│   │   │   │   ├── marble_texture.jpg
│   │   │   │   ├── mask.png
│   │   │   │   ├── masked_image.jpg
│   │   │   │   ├── mean.png
│   │   │   │   ├── median.png
│   │   │   │   ├── merge.png
│   │   │   │   ├── mirror.jpg
│   │   │   │   ├── morph.png
│   │   │   │   ├── move_towards.png
│   │   │   │   ├── object.jpg
│   │   │   │   ├── oil_painting.jpg
│   │   │   │   ├── opening.png
│   │   │   │   ├── ordered_color_dithering.png
│   │   │   │   ├── ordered_dithering.jpg
│   │   │   │   ├── otsu_threshold.png
│   │   │   │   ├── pixellate.jpg
│   │   │   │   ├── pointed_color_fill.jpg
│   │   │   │   ├── pointed_mean_fill.jpg
│   │   │   │   ├── polar.png
│   │   │   │   ├── posterization.png
│   │   │   │   ├── quadrilateral_bilinear.png
│   │   │   │   ├── quadrilateral_ex_bilinear.png
│   │   │   │   ├── quadrilateral_finder.png
│   │   │   │   ├── quadrilateral_nearest.png
│   │   │   │   ├── reduced_colors.png
│   │   │   │   ├── replace_channel.jpg
│   │   │   │   ├── resize_bicubic.png
│   │   │   │   ├── resize_bilinear.png
│   │   │   │   ├── resize_nearest.png
│   │   │   │   ├── rotate_bicubic.png
│   │   │   │   ├── rotate_bilinear.png
│   │   │   │   ├── rotate_channels.jpg
│   │   │   │   ├── rotate_nearest.png
│   │   │   │   ├── salt_noise.jpg
│   │   │   │   ├── sample1.jpg
│   │   │   │   ├── sample10.png
│   │   │   │   ├── sample11.png
│   │   │   │   ├── sample12.png
│   │   │   │   ├── sample13.png
│   │   │   │   ├── sample14.png
│   │   │   │   ├── sample15.png
│   │   │   │   ├── sample16_left.png
│   │   │   │   ├── sample16_right.png
│   │   │   │   ├── sample17.png
│   │   │   │   ├── sample18.jpg
│   │   │   │   ├── sample19.png
│   │   │   │   ├── sample2.jpg
│   │   │   │   ├── sample20.png
│   │   │   │   ├── sample21.png
│   │   │   │   ├── sample22.png
│   │   │   │   ├── sample23.png
│   │   │   │   ├── sample24.png
│   │   │   │   ├── sample3.jpg
│   │   │   │   ├── sample4.jpg
│   │   │   │   ├── sample5.jpg
│   │   │   │   ├── sample6.png
│   │   │   │   ├── sample7.png
│   │   │   │   ├── sample8.jpg
│   │   │   │   ├── sample9.png
│   │   │   │   ├── saturation_correction.jpg
│   │   │   │   ├── sepia.jpg
│   │   │   │   ├── sharpen.jpg
│   │   │   │   ├── shrink.jpg
│   │   │   │   ├── sierra.jpg
│   │   │   │   ├── simple_skeletonization.png
│   │   │   │   ├── sis_threshold.png
│   │   │   │   ├── sobel_edges.png
│   │   │   │   ├── stucki.jpg
│   │   │   │   ├── subtract.png
│   │   │   │   ├── susan_corners.png
│   │   │   │   ├── textile_texture.jpg
│   │   │   │   ├── textured_filter1.jpg
│   │   │   │   ├── textured_filter2.jpg
│   │   │   │   ├── textured_merge1.jpg
│   │   │   │   ├── textured_merge2.jpg
│   │   │   │   ├── texturer.jpg
│   │   │   │   ├── thinning.png
│   │   │   │   ├── threshold.jpg
│   │   │   │   ├── threshold_carry.jpg
│   │   │   │   ├── thresholded_difference.png
│   │   │   │   ├── thresholded_euclidean_difference.png
│   │   │   │   ├── tophat.png
│   │   │   │   ├── ver_histogram.jpg
│   │   │   │   ├── vrls.png
│   │   │   │   ├── water_wave.jpg
│   │   │   │   ├── wood_texture.jpg
│   │   │   │   ├── ycbcr_filtering.jpg
│   │   │   │   ├── ycbcr_linear.jpg
│   │   │   │   └── ycbcr_replace_channel.jpg
│   │   │   ├── Imaging (mono).csproj
│   │   │   ├── Imaging (mono).sln
│   │   │   ├── Imaging.csproj
│   │   │   ├── Imaging.sln
│   │   │   ├── IntegralImage.cs
│   │   │   ├── Interpolation.cs
│   │   │   ├── MemoryManager.cs
│   │   │   ├── MoravecCornersDetector.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── QuadrilateralFinder.cs
│   │   │   ├── RecursiveBlobCounter.cs
│   │   │   ├── SusanCornersDetector.cs
│   │   │   ├── TemplateMatch.cs
│   │   │   ├── Textures
│   │   │   │   ├── CloudsTexture.cs
│   │   │   │   ├── ITextureGenerator.cs
│   │   │   │   ├── LabyrinthTexture.cs
│   │   │   │   ├── MarbleTexture.cs
│   │   │   │   ├── TextileTexture.cs
│   │   │   │   ├── Texture.cs
│   │   │   │   └── WoodTexture.cs
│   │   │   ├── UnmanagedImage.cs
│   │   │   └── VerticalIntensityStatistics.cs
│   │   ├── Imaging.Formats
│   │   │   ├── AForge.Imaging.Formats.snk
│   │   │   ├── FITSCodec.cs
│   │   │   ├── IImageDecoder.cs
│   │   │   ├── ImageDecoder.cs
│   │   │   ├── Imaging.Formats (mono).csproj
│   │   │   ├── Imaging.Formats (mono).sln
│   │   │   ├── Imaging.Formats.csproj
│   │   │   ├── Imaging.Formats.sln
│   │   │   ├── PNMCodec.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Sample Images
│   │   │   │   ├── FITS
│   │   │   │   │   ├── FOCx38i0101t_c0f.fits
│   │   │   │   │   ├── good.fit
│   │   │   │   │   ├── ngc1316o.fit
│   │   │   │   │   └── ngc1316r.fit
│   │   │   │   └── PNM
│   │   │   │       ├── hsk.tmp.ppm
│   │   │   │       ├── im1.pgm
│   │   │   │       ├── im8.ppm
│   │   │   │       ├── rays2.pnm
│   │   │   │       └── yaleB01_P00A 000E 00.pgm
│   │   │   └── Tools.cs
│   │   ├── MachineLearning
│   │   │   ├── AForge.MachineLearning.snk
│   │   │   ├── Exploration Policy
│   │   │   │   ├── BoltzmannExploration.cs
│   │   │   │   ├── EpsilonGreedyExploration.cs
│   │   │   │   ├── IExplorationPolicy.cs
│   │   │   │   ├── RouletteWheelExploration.cs
│   │   │   │   └── TabuSearchExploration.cs
│   │   │   ├── MachineLearning (mono).csproj
│   │   │   ├── MachineLearning (mono).sln
│   │   │   ├── MachineLearning.csproj
│   │   │   ├── MachineLearning.sln
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── QLearning.cs
│   │   │   └── Sarsa.cs
│   │   ├── Math
│   │   │   ├── AForge.Math.snk
│   │   │   ├── Complex.cs
│   │   │   ├── ContinuousHistogram.cs
│   │   │   ├── FourierTransform.cs
│   │   │   ├── Gaussian.cs
│   │   │   ├── Geometry
│   │   │   │   ├── ClosePointsMergingOptimizer.cs
│   │   │   │   ├── CoplanarPosit.cs
│   │   │   │   ├── FlatAnglesOptimizer.cs
│   │   │   │   ├── GeometryTools.cs
│   │   │   │   ├── GrahamConvexHull.cs
│   │   │   │   ├── IConvexHullAlgorithm.cs
│   │   │   │   ├── IShapeOptimizer.cs
│   │   │   │   ├── Line.cs
│   │   │   │   ├── LineSegment.cs
│   │   │   │   ├── LineStraighteningOptimizer.cs
│   │   │   │   ├── POSIT.cs
│   │   │   │   ├── PointsCloud.cs
│   │   │   │   ├── ShapeType.cs
│   │   │   │   └── SimpleShapeChecker.cs
│   │   │   ├── Histogram.cs
│   │   │   ├── Images
│   │   │   │   ├── close_points_merging_optimizer.png
│   │   │   │   ├── flat_angles_optimizer.png
│   │   │   │   ├── line_straightening_optimizer.png
│   │   │   │   └── potential_corners.png
│   │   │   ├── Math (mono).csproj
│   │   │   ├── Math (mono).sln
│   │   │   ├── Math.csproj
│   │   │   ├── Math.sln
│   │   │   ├── Matrix3x3.cs
│   │   │   ├── Matrix4x4.cs
│   │   │   ├── Metrics
│   │   │   │   ├── CosineDistance.cs
│   │   │   │   ├── CosineSimilarity.cs
│   │   │   │   ├── EuclideanDistance.cs
│   │   │   │   ├── EuclideanSimilarity.cs
│   │   │   │   ├── HammingDistance.cs
│   │   │   │   ├── IDistance.cs
│   │   │   │   ├── ISimilarity.cs
│   │   │   │   ├── JaccardDistance.cs
│   │   │   │   ├── ManhattanDistance.cs
│   │   │   │   └── PearsonCorrelation.cs
│   │   │   ├── PerlinNoise.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Random
│   │   │   │   ├── ExponentialGenerator.cs
│   │   │   │   ├── GaussianGenerator.cs
│   │   │   │   ├── IRandomNumberGenerator.cs
│   │   │   │   ├── StandardGenerator.cs
│   │   │   │   ├── UniformGenerator.cs
│   │   │   │   └── UniformOneGenerator.cs
│   │   │   ├── SVD.cs
│   │   │   ├── Statistics.cs
│   │   │   ├── Tools.cs
│   │   │   ├── Vector3.cs
│   │   │   └── Vector4.cs
│   │   ├── Neuro
│   │   │   ├── AForge.Neuro.snk
│   │   │   ├── Activation Functions
│   │   │   │   ├── BipolarSigmoidFunction.cs
│   │   │   │   ├── IActivationFunction.cs
│   │   │   │   ├── SigmoidFunction.cs
│   │   │   │   └── ThresholdFunction.cs
│   │   │   ├── Images
│   │   │   │   ├── sigmoid.bmp
│   │   │   │   ├── sigmoid_bipolar.bmp
│   │   │   │   └── threshold.bmp
│   │   │   ├── Layers
│   │   │   │   ├── ActivationLayer.cs
│   │   │   │   ├── DistanceLayer.cs
│   │   │   │   └── Layer.cs
│   │   │   ├── Learning
│   │   │   │   ├── BackPropagationLearning.cs
│   │   │   │   ├── DeltaRuleLearning.cs
│   │   │   │   ├── ElasticNetworkLearning.cs
│   │   │   │   ├── EvolutionaryFitness.cs
│   │   │   │   ├── EvolutionaryLearning.cs
│   │   │   │   ├── ISupervisedLearning.cs
│   │   │   │   ├── IUnsupervisedLearning.cs
│   │   │   │   ├── PerceptronLearning.cs
│   │   │   │   ├── ResilientBackPropagationLearning.cs
│   │   │   │   └── SOMLearning.cs
│   │   │   ├── Networks
│   │   │   │   ├── ActivationNetwork.cs
│   │   │   │   ├── DistanceNetwork.cs
│   │   │   │   └── Network.cs
│   │   │   ├── Neuro (mono).csproj
│   │   │   ├── Neuro (mono).sln
│   │   │   ├── Neuro.csproj
│   │   │   ├── Neuro.sln
│   │   │   ├── Neurons
│   │   │   │   ├── ActivationNeuron.cs
│   │   │   │   ├── DistanceNeuron.cs
│   │   │   │   └── Neuron.cs
│   │   │   └── Properties
│   │   │       └── AssemblyInfo.cs
│   │   ├── Robotics.Lego
│   │   │   ├── AForge.Robotics.Lego.snk
│   │   │   ├── Images
│   │   │   │   ├── nxt.jpg
│   │   │   │   └── rcx.jpg
│   │   │   ├── Internals
│   │   │   │   ├── GhostAPI.cs
│   │   │   │   ├── INXTCommunicationInterface.cs
│   │   │   │   ├── NXTCommands.cs
│   │   │   │   ├── RCXCommands.cs
│   │   │   │   └── SerialCommunication.cs
│   │   │   ├── Lego.csproj
│   │   │   ├── Lego.sln
│   │   │   ├── NXTBrick.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── RCXBrick.cs
│   │   ├── Robotics.Surveyor
│   │   │   ├── AForge.Robotics.Surveyor.snk
│   │   │   ├── Images
│   │   │   │   ├── srv1-robot.jpg
│   │   │   │   └── svs.jpg
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Robotics.Surveyor.csproj
│   │   │   ├── Robotics.Surveyor.sln
│   │   │   ├── SRV1.cs
│   │   │   ├── SRV1Camera.cs
│   │   │   └── SVS.cs
│   │   ├── Robotics.TeRK
│   │   │   ├── AForge.Robotics.TeRK.snk
│   │   │   ├── Exceptions.cs
│   │   │   ├── Images
│   │   │   │   └── qwerk_board.jpg
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Qwerk.AnalogIn.cs
│   │   │   ├── Qwerk.DigitalIn.cs
│   │   │   ├── Qwerk.DigitalOut.cs
│   │   │   ├── Qwerk.Leds.cs
│   │   │   ├── Qwerk.Motors.cs
│   │   │   ├── Qwerk.Servos.cs
│   │   │   ├── Qwerk.Video.cs
│   │   │   ├── Qwerk.cs
│   │   │   ├── Robotics.TeRK.csproj
│   │   │   └── Robotics.TeRK.sln
│   │   ├── Video
│   │   │   ├── AForge.Video.snk
│   │   │   ├── AsyncVideoSource.cs
│   │   │   ├── ByteArrayUtils.cs
│   │   │   ├── Exceptions.cs
│   │   │   ├── IVideoSource.cs
│   │   │   ├── JPEGStream.cs
│   │   │   ├── MJPEGStream.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── ScreenCaptureStream.cs
│   │   │   ├── Video (mono).csproj
│   │   │   ├── Video (mono).sln
│   │   │   ├── Video.csproj
│   │   │   ├── Video.sln
│   │   │   └── VideoEvents.cs
│   │   ├── Video.DirectShow
│   │   │   ├── AForge.Video.DirectShow.snk
│   │   │   ├── CameraControlProperty.cs
│   │   │   ├── FileVideoSource.cs
│   │   │   ├── FilterInfo.cs
│   │   │   ├── FilterInfoCollection.cs
│   │   │   ├── Icons
│   │   │   │   └── camera.png
│   │   │   ├── Images
│   │   │   │   └── VideoCaptureDeviceForm.png
│   │   │   ├── Internals
│   │   │   │   ├── IAMCameraControl.cs
│   │   │   │   ├── IAMCrossbar.cs
│   │   │   │   ├── IAMStreamConfig.cs
│   │   │   │   ├── IAMVideoControl.cs
│   │   │   │   ├── IBaseFilter.cs
│   │   │   │   ├── ICaptureGraphBuilder2.cs
│   │   │   │   ├── ICreateDevEnum.cs
│   │   │   │   ├── IEnumFilters.cs
│   │   │   │   ├── IEnumPins.cs
│   │   │   │   ├── IFileSourceFilter.cs
│   │   │   │   ├── IFilterGraph.cs
│   │   │   │   ├── IFilterGraph2.cs
│   │   │   │   ├── IGraphBuilder.cs
│   │   │   │   ├── IMediaControl.cs
│   │   │   │   ├── IMediaEventEx.cs
│   │   │   │   ├── IMediaFilter.cs
│   │   │   │   ├── IPersist.cs
│   │   │   │   ├── IPin.cs
│   │   │   │   ├── IPropertyBag.cs
│   │   │   │   ├── IReferenceClock.cs
│   │   │   │   ├── ISampleGrabber.cs
│   │   │   │   ├── ISampleGrabberCB.cs
│   │   │   │   ├── ISpecifyPropertyPages.cs
│   │   │   │   ├── IVideoWindow.cs
│   │   │   │   ├── Structures.cs
│   │   │   │   ├── Tools.cs
│   │   │   │   ├── Uuids.cs
│   │   │   │   └── Win32.cs
│   │   │   ├── PhysicalConnectorType.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   └── Resources.resx
│   │   │   ├── Uuids.cs
│   │   │   ├── Video.DirectShow.csproj
│   │   │   ├── Video.DirectShow.sln
│   │   │   ├── VideoCapabilities.cs
│   │   │   ├── VideoCaptureDevice.cs
│   │   │   ├── VideoCaptureDeviceForm.Designer.cs
│   │   │   ├── VideoCaptureDeviceForm.cs
│   │   │   ├── VideoCaptureDeviceForm.resx
│   │   │   └── VideoInput.cs
│   │   ├── Video.FFMPEG
│   │   │   ├── AForge.Video.FFMPEG.snk
│   │   │   ├── AssemblyInfo.cpp
│   │   │   ├── Stdafx.cpp
│   │   │   ├── Stdafx.h
│   │   │   ├── Video.FFMPEG.sln
│   │   │   ├── Video.FFMPEG.vcxproj
│   │   │   ├── Video.FFMPEG.vcxproj.filters
│   │   │   ├── VideoCodec.cpp
│   │   │   ├── VideoCodec.h
│   │   │   ├── VideoFileReader.cpp
│   │   │   ├── VideoFileReader.h
│   │   │   ├── VideoFileSource.cpp
│   │   │   ├── VideoFileSource.h
│   │   │   ├── VideoFileWriter.cpp
│   │   │   └── VideoFileWriter.h
│   │   ├── Video.Kinect
│   │   │   ├── AForge.Video.Kinect.snk
│   │   │   ├── Images
│   │   │   │   └── kinect.jpg
│   │   │   ├── Kinect.cs
│   │   │   ├── KinectDepthCamera.cs
│   │   │   ├── KinectNative.cs
│   │   │   ├── KinectVideoCamera.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Video.Kinect.csproj
│   │   │   └── Video.Kinect.sln
│   │   ├── Video.VFW
│   │   │   ├── AForge.Video.VFW.snk
│   │   │   ├── AVIFileVideoSource.cs
│   │   │   ├── AVIReader.cs
│   │   │   ├── AVIWriter.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── Video.VFW.csproj
│   │   │   ├── Video.VFW.sln
│   │   │   └── Win32.cs
│   │   ├── Video.Ximea
│   │   │   ├── AForge.Video.Ximea.snk
│   │   │   ├── CameraParameter.cs
│   │   │   ├── GpiMode.cs
│   │   │   ├── GpoMode.cs
│   │   │   ├── ImageFormat.cs
│   │   │   ├── Images
│   │   │   │   └── HW_SW_buffers.png
│   │   │   ├── Internal
│   │   │   │   ├── ParameterType.cs
│   │   │   │   ├── XimeaAPI.cs
│   │   │   │   └── XimeaImage.cs
│   │   │   ├── LedMode.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── TriggerSource.cs
│   │   │   ├── Video.Ximea.csproj
│   │   │   ├── Video.Ximea.sln
│   │   │   ├── XimeaCamera.cs
│   │   │   └── XimeaVideoSource.cs
│   │   └── Vision
│   │       ├── AForge.Vision.snk
│   │       ├── Motion
│   │       │   ├── BlobCountingObjectsProcessing.cs
│   │       │   ├── CustomFrameDifferenceDetector.cs
│   │       │   ├── GridMotionAreaProcessing.cs
│   │       │   ├── IMotionDetector.cs
│   │       │   ├── IMotionProcessing.cs
│   │       │   ├── MotionAreaHighlighting.cs
│   │       │   ├── MotionBorderHighlighting.cs
│   │       │   ├── MotionDetector.cs
│   │       │   ├── SimpleBackgroundModelingDetector.cs
│   │       │   └── TwoFramesDifferenceDetector.cs
│   │       ├── Properties
│   │       │   └── AssemblyInfo.cs
│   │       ├── Tools.cs
│   │       ├── Vision (mono).csproj
│   │       ├── Vision (mono).sln
│   │       ├── Vision.csproj
│   │       └── Vision.sln
│   ├── Tools
│   │   ├── DebuggerVisualizers
│   │   │   ├── AForge.DebuggerVisualizers.snk
│   │   │   ├── BitmapDataVisualizer.cs
│   │   │   ├── DebuggerVisualizers (2008).csproj
│   │   │   ├── DebuggerVisualizers (2008).sln
│   │   │   ├── DebuggerVisualizers (2010).csproj
│   │   │   ├── DebuggerVisualizers (2010).sln
│   │   │   ├── HistogramView.Designer.cs
│   │   │   ├── HistogramView.cs
│   │   │   ├── HistogramView.resx
│   │   │   ├── HistogramVisualizer.cs
│   │   │   ├── ImageView.Designer.cs
│   │   │   ├── ImageView.cs
│   │   │   ├── ImageView.resx
│   │   │   ├── ImageVisualizer.cs
│   │   │   ├── Images
│   │   │   │   ├── histogram.ico
│   │   │   │   └── image.ico
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── UnmanagedImageVisualizer.cs
│   │   ├── IPPrototyper
│   │   │   ├── AForge.IPPrototyper.snk
│   │   │   ├── AboutForm.Designer.cs
│   │   │   ├── AboutForm.cs
│   │   │   ├── AboutForm.resx
│   │   │   ├── Configuration.cs
│   │   │   ├── HistogramForm.Designer.cs
│   │   │   ├── HistogramForm.cs
│   │   │   ├── HistogramForm.resx
│   │   │   ├── Interfaces
│   │   │   │   ├── AForge.Imaging.IPPrototyper.snk
│   │   │   │   ├── IImageProcessingLog.cs
│   │   │   │   ├── IImageProcessingRoutine.cs
│   │   │   │   ├── ImageProcessingLog.cs
│   │   │   │   ├── Interfaces.csproj
│   │   │   │   └── Properties
│   │   │   │       └── AssemblyInfo.cs
│   │   │   ├── MainForm.Designer.cs
│   │   │   ├── MainForm.cs
│   │   │   ├── MainForm.resx
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── ipprototyper.csproj
│   │   │   └── ipprototyper.sln
│   │   └── Read Me.txt
│   ├── Unit Tests
│   │   ├── AForge.Imaging.Tests
│   │   │   ├── AForge.Imaging.Tests.csproj
│   │   │   ├── IntegralImageTest.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── UnmanagedImageTest.cs
│   │   ├── AForge.Math.Tests
│   │   │   ├── AForge.Math.Tests.csproj
│   │   │   ├── Geometry
│   │   │   │   ├── ClosePointsMergingOptimizerTest.cs
│   │   │   │   ├── FlatAnglesOptimizerTest.cs
│   │   │   │   ├── GeometryToolsTest.cs
│   │   │   │   ├── GrahamConvexHullTest.cs
│   │   │   │   ├── LineSegmentTest.cs
│   │   │   │   ├── LineStraighteningOptimizerTest.cs
│   │   │   │   ├── LineTest.cs
│   │   │   │   ├── ShapeOptimizerTestBase.cs
│   │   │   │   └── SimpleShapeCheckerTest.cs
│   │   │   ├── Matrix3x3Test.cs
│   │   │   ├── Matrix4x4Test.cs
│   │   │   ├── Metrics
│   │   │   │   └── MetricsTest.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   ├── StatisticsTest.cs
│   │   │   ├── ToolsTest.cs
│   │   │   └── Vector3Test.cs
│   │   ├── AForge.Tests
│   │   │   ├── AForge.Tests.csproj
│   │   │   ├── IntPointTest.cs
│   │   │   ├── IntRangeTest.cs
│   │   │   ├── PointTest.cs
│   │   │   ├── Properties
│   │   │   │   └── AssemblyInfo.cs
│   │   │   └── RangeTest.cs
│   │   ├── All Tests.gallio
│   │   ├── Build All Tests.sln
│   │   └── Read Me.txt
│   ├── gpl-3.0.txt
│   └── lgpl-3.0.txt
└── 视频采集控件_AForge.NET-master.zip

227 directories, 1406 files



标签: 控件 视频 采集

实例下载地址

视频采集控件源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警