├── .gitignore
├── 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.txt
├── 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 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
│ └── 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
├── 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
├── .nuget
│ ├── NuGet.Config
│ ├── NuGet.exe
│ └── NuGet.targets
├── AForge.NET.sln
├── Building.txt
├── Controls
│ ├── AForge.Controls.snk
│ ├── Chart.cs
│ ├── Chart.resx
│ ├── ColorSlider.cs
│ ├── ColorSlider.resx
│ ├── Controls.csproj
│ ├── 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.csproj
│ ├── 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.csproj
│ ├── 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.csproj
│ ├── Population.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Selection Algorithms
│ │ ├── EliteSelection.cs
│ │ ├── ISelectionMethod.cs
│ │ ├── RankSelection.cs
│ │ └── RouletteWheelSelection.cs
├── Imaging.Formats
│ ├── AForge.Imaging.Formats.snk
│ ├── FITSCodec.cs
│ ├── IImageDecoder.cs
│ ├── ImageDecoder.cs
│ ├── Imaging.Formats.csproj
│ ├── 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
├── 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.csproj
│ ├── 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
├── MachineLearning
│ ├── AForge.MachineLearning.snk
│ ├── Exploration Policy
│ │ ├── BoltzmannExploration.cs
│ │ ├── EpsilonGreedyExploration.cs
│ │ ├── IExplorationPolicy.cs
│ │ ├── RouletteWheelExploration.cs
│ │ └── TabuSearchExploration.cs
│ ├── MachineLearning.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QLearning.cs
│ └── Sarsa.cs
├── Math
│ ├── AForge.Math.snk
│ ├── 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.csproj
│ ├── 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.csproj
│ ├── Neurons
│ │ ├── ActivationNeuron.cs
│ │ ├── DistanceNeuron.cs
│ │ └── Neuron.cs
│ └── Properties
│ │ └── AssemblyInfo.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
│ ├── 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.VFW
│ ├── AForge.Video.VFW.snk
│ ├── AVIFileVideoSource.cs
│ ├── AVIReader.cs
│ ├── AVIWriter.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Video.VFW.csproj
│ └── 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
│ ├── XimeaCamera.cs
│ └── XimeaVideoSource.cs
├── Video
│ ├── AForge.Video.snk
│ ├── AsyncVideoSource.cs
│ ├── ByteArrayUtils.cs
│ ├── Exceptions.cs
│ ├── IVideoSource.cs
│ ├── JPEGStream.cs
│ ├── MJPEGStream.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ScreenCaptureStream.cs
│ ├── Video.csproj
│ └── VideoEvents.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.csproj
├── 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
│ └── packages.config
├── 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
│ └── packages.config
├── AForge.Tests
│ ├── AForge.Tests.csproj
│ ├── IntPointTest.cs
│ ├── IntRangeTest.cs
│ ├── PointTest.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RangeTest.cs
│ └── packages.config
├── All Tests.nunit
├── Build All Tests.sln
├── Read Me.txt
└── packages
│ └── repositories.config
├── gpl-3.0.txt
└── lgpl-3.0.txt
/Copyright.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Copyright.txt
--------------------------------------------------------------------------------
/Externals/GhostAPI/AForge ReadMe.txt:
--------------------------------------------------------------------------------
1 | The folder contains GhostAPI files, which is the API provided by Lego for communication with RCX brick.
--------------------------------------------------------------------------------
/Externals/GhostAPI/GhostAPI.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/GhostAPI/GhostAPI.dll
--------------------------------------------------------------------------------
/Externals/GhostAPI/PbkComm32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/GhostAPI/PbkComm32.dll
--------------------------------------------------------------------------------
/Externals/GhostAPI/PbkUsbPort.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/GhostAPI/PbkUsbPort.dll
--------------------------------------------------------------------------------
/Externals/TeRK/AForge ReadMe.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/TeRK/AForge ReadMe.txt
--------------------------------------------------------------------------------
/Externals/TeRK/TeRK.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/TeRK/TeRK.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/AForge ReadMe.txt:
--------------------------------------------------------------------------------
1 | The folder contains files from Sared and Dev packages of FFMPEG 32-bit build taken from
2 | http://ffmpeg.zeranoe.com/builds/
3 | Note: few files which are not used by AForge.NET were removed to save space.
4 |
5 | Please, refer to README.txt file for details about FFMPEG build.
6 |
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/avcodec-53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/avcodec-53.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/avdevice-53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/avdevice-53.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/avfilter-2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/avfilter-2.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/avformat-53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/avformat-53.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/avutil-51.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/avutil-51.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/postproc-52.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/postproc-52.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/swresample-0.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/swresample-0.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/bin/swscale-2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/bin/swscale-2.dll
--------------------------------------------------------------------------------
/Externals/ffmpeg/include/libavutil/avconfig.h:
--------------------------------------------------------------------------------
1 | /* Generated by ffconf */
2 | #ifndef AVUTIL_AVCONFIG_H
3 | #define AVUTIL_AVCONFIG_H
4 | #define AV_HAVE_BIGENDIAN 0
5 | #define AV_HAVE_FAST_UNALIGNED 1
6 | #endif /* AVUTIL_AVCONFIG_H */
7 |
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/avcodec.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/avcodec.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/avdevice.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/avdevice.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/avfilter.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/avfilter.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/avformat.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/avformat.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/avutil.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/avutil.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/postproc.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/postproc.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/swresample.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/swresample.lib
--------------------------------------------------------------------------------
/Externals/ffmpeg/lib/swscale.lib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/ffmpeg/lib/swscale.lib
--------------------------------------------------------------------------------
/Externals/libfreenect/AForge ReadMe.txt:
--------------------------------------------------------------------------------
1 | Libraries in this folder are part of the OpenKinect project and were built from its sources:
2 | http://openkinect.org/
3 | Sources from git's master branch was used. Last updated and built on February 20, 2012.
4 |
5 | The libraries were built using VS.NET 2010. Configuration done with CMake.
6 |
7 | See installation/build notes here:
8 | http://openkinect.org/wiki/Getting_Started#Windows
9 |
10 |
--------------------------------------------------------------------------------
/Externals/libfreenect/freenect.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/libfreenect/freenect.dll
--------------------------------------------------------------------------------
/Externals/msinttypes/AForge ReadMe.txt:
--------------------------------------------------------------------------------
1 | The folder contains files from "msinttypes" project, which allow compiling C99 compliant projects in MSVC.
2 | http://code.google.com/p/msinttypes/
3 |
--------------------------------------------------------------------------------
/Externals/msinttypes/changelog.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Externals/msinttypes/changelog.txt
--------------------------------------------------------------------------------
/License.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/License.txt
--------------------------------------------------------------------------------
/Release notes.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Release notes.txt
--------------------------------------------------------------------------------
/Samples/Fuzzy/Fuzzy Set Sample/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace FuzzySetSample
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new Sample( ) );
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Samples/Fuzzy/Fuzzy Set Sample/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Fuzzy/Fuzzy Set Sample/Sample.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Fuzzy/Fuzzy Set Sample/Sample.cs
--------------------------------------------------------------------------------
/Samples/Fuzzy/FuzzyAGV/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Fuzzy/FuzzyAGV/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Fuzzy/FuzzyAGV/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Fuzzy/FuzzyAGV/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Genetic/Approximation/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/Approximation/App.ico
--------------------------------------------------------------------------------
/Samples/Genetic/Approximation/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/Approximation/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Genetic/Approximation/Data Samples/sample1.csv:
--------------------------------------------------------------------------------
1 | 1,1
2 | 2,1.5
3 | 3,2.5
4 | 4,4
5 | 5,6
6 | 6,8.5
7 | 7,11.5
8 | 8,15
9 |
--------------------------------------------------------------------------------
/Samples/Genetic/Approximation/Data Samples/sample2.csv:
--------------------------------------------------------------------------------
1 | 1,0
2 | 2,4
3 | 3,7
4 | 4,9
5 | 5,10
6 | 6,9
7 | 7,7
8 | 8,4
9 | 9,0
10 |
--------------------------------------------------------------------------------
/Samples/Genetic/Approximation/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/Approximation/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Genetic/Optimization1D/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/Optimization1D/App.ico
--------------------------------------------------------------------------------
/Samples/Genetic/Optimization1D/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/Optimization1D/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Genetic/Optimization1D/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/Optimization1D/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TSP/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TSP/App.ico
--------------------------------------------------------------------------------
/Samples/Genetic/TSP/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TSP/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TSP/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TSP/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TSP/TSPChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TSP/TSPChromosome.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TSP/TSPFitnessFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TSP/TSPFitnessFunction.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TimeSeries/App.ico
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TimeSeries/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/Data Samples/parabola.csv:
--------------------------------------------------------------------------------
1 | 101
2 | 93.16
3 | 85.64
4 | 78.44
5 | 71.56
6 | 65
7 | 58.76
8 | 52.84
9 | 47.24
10 | 41.96
11 | 37
12 | 32.36
13 | 28.04
14 | 24.04
15 | 20.36
16 | 17
17 | 13.96
18 | 11.24
19 | 8.84
20 | 6.76
21 | 5
22 | 3.56
23 | 2.44
24 | 1.64
25 | 1.16
26 | 1
27 | 1.16
28 | 1.64
29 | 2.44
30 | 3.56
31 | 5
32 | 6.76
33 | 8.84
34 | 11.24
35 | 13.96
36 | 17
37 | 20.36
38 | 24.04
39 | 28.04
40 | 32.36
41 | 37
42 | 41.96
43 | 47.24
44 | 52.84
45 | 58.76
46 | 65
47 | 71.56
48 | 78.44
49 | 85.64
50 | 93.16
51 |
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/Data Samples/sigmoid.csv:
--------------------------------------------------------------------------------
1 | 2.018
2 | 2.021
3 | 2.025
4 | 2.029
5 | 2.034
6 | 2.039
7 | 2.046
8 | 2.053
9 | 2.062
10 | 2.072
11 | 2.083
12 | 2.096
13 | 2.111
14 | 2.128
15 | 2.147
16 | 2.168
17 | 2.192
18 | 2.218
19 | 2.246
20 | 2.277
21 | 2.31
22 | 2.345
23 | 2.382
24 | 2.421
25 | 2.46
26 | 2.5
27 | 2.54
28 | 2.579
29 | 2.618
30 | 2.655
31 | 2.69
32 | 2.723
33 | 2.754
34 | 2.782
35 | 2.808
36 | 2.832
37 | 2.853
38 | 2.872
39 | 2.889
40 | 2.904
41 | 2.917
42 | 2.928
43 | 2.938
44 | 2.947
45 | 2.954
46 | 2.961
47 | 2.966
48 | 2.971
49 | 2.975
50 | 2.979
51 |
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/Data Samples/sinusoid.csv:
--------------------------------------------------------------------------------
1 | 2
2 | 2.327
3 | 2.618
4 | 2.841
5 | 2.972
6 | 2.995
7 | 2.909
8 | 2.723
9 | 2.457
10 | 2.141
11 | 1.809
12 | 1.499
13 | 1.243
14 | 1.071
15 | 1.001
16 | 1.041
17 | 1.187
18 | 1.422
19 | 1.721
20 | 2.05
21 | 2.374
22 | 2.657
23 | 2.867
24 | 2.983
25 | 2.989
26 | 2.887
27 | 2.688
28 | 2.412
29 | 2.091
30 | 1.76
31 | 1.456
32 | 1.211
33 | 1.054
34 | 1
35 | 1.057
36 | 1.217
37 | 1.463
38 | 1.769
39 | 2.1
40 | 2.42
41 | 2.694
42 | 2.891
43 | 2.991
44 | 2.981
45 | 2.863
46 | 2.65
47 | 2.366
48 | 2.041
49 | 1.712
50 | 1.415
51 |
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/ExSettingsDialog.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TimeSeries/ExSettingsDialog.cs
--------------------------------------------------------------------------------
/Samples/Genetic/TimeSeries/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Genetic/TimeSeries/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Imaging/BlobsExplorer/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Imaging/BlobsExplorer/demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/BlobsExplorer/demo.png
--------------------------------------------------------------------------------
/Samples/Imaging/FiltersDemo/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/FiltersDemo/App.ico
--------------------------------------------------------------------------------
/Samples/Imaging/FiltersDemo/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/FiltersDemo/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Imaging/FiltersDemo/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/FiltersDemo/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Imaging/HoughTransformation/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/HoughTransformation/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Imaging/HoughTransformation/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/HoughTransformation/Program.cs
--------------------------------------------------------------------------------
/Samples/Imaging/HoughTransformation/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Imaging/HoughTransformation/Sample Images/sample.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/HoughTransformation/Sample Images/sample.bmp
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-01.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-02.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-03.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-04.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-05.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-06.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Images/coins-07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/IPPrototyper Sample/Images/coins-07.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/IPPrototyper Sample/Read Me.txt:
--------------------------------------------------------------------------------
1 | 1) Open solution file in VS.NET (C# Express Edition 2008 is fine).
2 |
3 | 2) Run solution hitting F5.
4 |
5 | 3) When application started, use "File->Open folder" menu option and
6 | navigate to "Images" folder provided with the solution.
--------------------------------------------------------------------------------
/Samples/Imaging/ImageViewer/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace ImageViewer
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Samples/Imaging/ImageViewer/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Imaging/ShapeChecker/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace ShapeChecker
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Samples/Imaging/ShapeChecker/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Imaging/ShapeChecker/coins.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/ShapeChecker/coins.jpg
--------------------------------------------------------------------------------
/Samples/Imaging/ShapeChecker/demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/ShapeChecker/demo.png
--------------------------------------------------------------------------------
/Samples/Imaging/ShapeChecker/demo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/ShapeChecker/demo1.png
--------------------------------------------------------------------------------
/Samples/Imaging/ShapeChecker/demo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/ShapeChecker/demo2.png
--------------------------------------------------------------------------------
/Samples/Imaging/TexturesDemo/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/TexturesDemo/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Imaging/TexturesDemo/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Imaging/TexturesDemo/Program.cs
--------------------------------------------------------------------------------
/Samples/Imaging/TexturesDemo/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/MachineLearning/Animat/CellWorld.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/MachineLearning/Animat/CellWorld.cs
--------------------------------------------------------------------------------
/Samples/MachineLearning/Animat/Data files/sample1.map:
--------------------------------------------------------------------------------
1 | ; Map file
2 | ;
3 | ; 1st line - 2 numbers: map size (width and height)
4 | ; 2st line - number of agents (n)
5 | ; next n lines - two pairs of (x, y) coordinates of agent's start and stop positions
6 | ; next (height) lines - map
7 | ;
8 | ; 0 - free space available for motion
9 | ; 1 - wall
10 | ;
11 | 6 6
12 | 1
13 | 1 1 4 4
14 |
15 | 1 1 1 1 1 1
16 | 1 0 0 0 0 1
17 | 1 0 0 0 0 1
18 | 1 0 0 0 0 1
19 | 1 0 0 0 0 1
20 | 1 1 1 1 1 1
21 |
--------------------------------------------------------------------------------
/Samples/MachineLearning/Animat/Data files/test1.map:
--------------------------------------------------------------------------------
1 | ; Map file
2 | ;
3 | ; 1st line - 2 numbers: map size (width and height)
4 | ; 2st line - number of agents (n)
5 | ; next n lines - two pairs of (x, y) coordinates of agent's start and stop positions
6 | ; next (height) lines - map
7 | ;
8 | ; 0 - free space available for motion
9 | ; 1 - wall
10 | ;
11 | 9 9
12 | 1
13 | 1 4 7 4
14 |
15 | 1 1 1 1 1 1 1 1 1
16 | 1 1 0 0 0 0 0 0 1
17 | 1 1 0 0 0 1 1 0 1
18 | 1 0 0 1 0 0 0 0 1
19 | 1 0 0 1 1 1 1 0 1
20 | 1 0 0 1 1 0 0 0 1
21 | 1 1 0 1 0 0 0 0 1
22 | 1 1 0 1 0 1 1 0 1
23 | 1 1 1 1 1 1 1 1 1
24 |
--------------------------------------------------------------------------------
/Samples/MachineLearning/Animat/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/MachineLearning/Animat/MainForm.cs
--------------------------------------------------------------------------------
/Samples/MachineLearning/Animat/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace Animat
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Samples/MachineLearning/Animat/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation 2/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation 2/Samples/sample1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Math/Pose Estimation 2/Samples/sample1.jpg
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation 2/Samples/sample2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Math/Pose Estimation 2/Samples/sample2.jpg
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation 2/Samples/sample3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Math/Pose Estimation 2/Samples/sample3.jpg
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation 2/Samples/sample4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Math/Pose Estimation 2/Samples/sample4.jpg
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation 2/Samples/sample5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Math/Pose Estimation 2/Samples/sample5.jpg
--------------------------------------------------------------------------------
/Samples/Math/Pose Estimation/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/Approximation/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/Approximation/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/Approximation/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/Approximation/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/Approximation/Data Samples/sample1.csv:
--------------------------------------------------------------------------------
1 | 1,1
2 | 2,1.5
3 | 3,2.5
4 | 4,4
5 | 5,6
6 | 6,8.5
7 | 7,11.5
8 | 8,15
9 |
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/Approximation/Data Samples/sample2.csv:
--------------------------------------------------------------------------------
1 | 1,0
2 | 2,4
3 | 3,7
4 | 4,9
5 | 5,10
6 | 6,9
7 | 7,7
8 | 8,4
9 | 9,0
10 |
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/Approximation/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/Approximation/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/TimeSeries/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/TimeSeries/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/TimeSeries/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/TimeSeries/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/TimeSeries/Data Samples/parabola.csv:
--------------------------------------------------------------------------------
1 | 101
2 | 93.16
3 | 85.64
4 | 78.44
5 | 71.56
6 | 65
7 | 58.76
8 | 52.84
9 | 47.24
10 | 41.96
11 | 37
12 | 32.36
13 | 28.04
14 | 24.04
15 | 20.36
16 | 17
17 | 13.96
18 | 11.24
19 | 8.84
20 | 6.76
21 | 5
22 | 3.56
23 | 2.44
24 | 1.64
25 | 1.16
26 | 1
27 | 1.16
28 | 1.64
29 | 2.44
30 | 3.56
31 | 5
32 | 6.76
33 | 8.84
34 | 11.24
35 | 13.96
36 | 17
37 | 20.36
38 | 24.04
39 | 28.04
40 | 32.36
41 | 37
42 | 41.96
43 | 47.24
44 | 52.84
45 | 58.76
46 | 65
47 | 71.56
48 | 78.44
49 | 85.64
50 | 93.16
51 |
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/TimeSeries/Data Samples/sinusoid.csv:
--------------------------------------------------------------------------------
1 | 2
2 | 2.327
3 | 2.618
4 | 2.841
5 | 2.972
6 | 2.995
7 | 2.909
8 | 2.723
9 | 2.457
10 | 2.141
11 | 1.809
12 | 1.499
13 | 1.243
14 | 1.071
15 | 1.001
16 | 1.041
17 | 1.187
18 | 1.422
19 | 1.721
20 | 2.05
21 | 2.374
22 | 2.657
23 | 2.867
24 | 2.983
25 | 2.989
26 | 2.887
27 | 2.688
28 | 2.412
29 | 2.091
30 | 1.76
31 | 1.456
32 | 1.211
33 | 1.054
34 | 1
35 | 1.057
36 | 1.217
37 | 1.463
38 | 1.769
39 | 2.1
40 | 2.42
41 | 2.694
42 | 2.891
43 | 2.991
44 | 2.981
45 | 2.863
46 | 2.65
47 | 2.366
48 | 2.041
49 | 1.712
50 | 1.415
51 |
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/TimeSeries/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/TimeSeries/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/XORProblem/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/XORProblem/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/XORProblem/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/XORProblem/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Back Propagation/XORProblem/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Back Propagation/XORProblem/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/2DOrganizing/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/2DOrganizing/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/2DOrganizing/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/2DOrganizing/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/2DOrganizing/BufferedPanel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Windows.Forms;
3 |
4 | namespace SOMOrganizing
5 | {
6 | ///
7 | /// Dummy class to enable doble buffering in Panel
8 | ///
9 | public class BufferedPanel : System.Windows.Forms.Panel
10 | {
11 | // Construcor
12 | public BufferedPanel( )
13 | {
14 | // Update control style
15 | SetStyle( ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw |
16 | ControlStyles.DoubleBuffer | ControlStyles.UserPaint, true );
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/2DOrganizing/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/2DOrganizing/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/Color/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/Color/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/Color/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/Color/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/Color/BufferedPanel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Windows.Forms;
3 |
4 | namespace Color
5 | {
6 | ///
7 | /// Dummy class to enable doble buffering in Panel
8 | ///
9 | public class BufferedPanel : System.Windows.Forms.Panel
10 | {
11 | // Construcor
12 | public BufferedPanel( )
13 | {
14 | // Update control style
15 | SetStyle( ControlStyles.AllPaintingInWmPaint | ControlStyles.ResizeRedraw |
16 | ControlStyles.DoubleBuffer | ControlStyles.UserPaint, true );
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/Color/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/Color/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/TSP/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/TSP/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/TSP/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/TSP/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/SOM/TSP/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/SOM/TSP/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/Delta Rule Learning/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/Delta Rule Learning/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/Data Samples/and.csv:
--------------------------------------------------------------------------------
1 | 0,0,0
2 | 0,1,0
3 | 1,0,0
4 | 1,1,1
5 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/Data Samples/cube.csv:
--------------------------------------------------------------------------------
1 | 0,0,0,0
2 | 0,0,1,0
3 | 0,1,0,0
4 | 0,1,1,0
5 | 1,0,0,1
6 | 1,0,1,1
7 | 1,1,0,1
8 | 1,1,1,1
9 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/Data Samples/or.csv:
--------------------------------------------------------------------------------
1 | 0,0,0
2 | 0,1,1
3 | 1,0,1
4 | 1,1,1
5 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/Data Samples/sample1.csv:
--------------------------------------------------------------------------------
1 | 0.1,0.1,0
2 | 0.2,0.3,0
3 | 0.3,0.4,0
4 | 0.1,0.3,0
5 | 0.2,0.5,0
6 | 0.1,1,1
7 | 0.2,1.1,1
8 | 0.3,0.9,1
9 | 0.4,0.8,1
10 | 0.2,0.9,1
11 | 1,0.4,2
12 | 0.9,0.5,2
13 | 0.8,0.6,2
14 | 0.9,0.4,2
15 | 1,0.5,2
16 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/Data Samples/sample2.csv:
--------------------------------------------------------------------------------
1 | 0.1,0.4,0
2 | 0.2,0.2,0
3 | 0.3,0.1,0
4 | 0.1,0.2,0
5 | 0.2,0.5,0
6 | 0.7,0.2,1
7 | 0.8,0.3,1
8 | 0.9,0.4,1
9 | 0.7,0.1,1
10 | 0.8,0.2,1
11 | 0.1,0.6,2
12 | 0.2,0.7,2
13 | 0.3,0.8,2
14 | 0.3,0.9,2
15 | 0.1,0.6,2
16 | 0.7,0.9,3
17 | 0.8,0.9,3
18 | 0.7,0.8,3
19 | 0.8,0.7,3
20 | 0.9,0.7,3
21 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Delta Rule Learning/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/Delta Rule Learning/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/One-Layer Perceptron Classifier/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/One-Layer Perceptron Classifier/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/One-Layer Perceptron Classifier/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/One-Layer Perceptron Classifier/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/One-Layer Perceptron Classifier/Data Samples/sample1.csv:
--------------------------------------------------------------------------------
1 | 0.1,0.1,0
2 | 0.2,0.3,0
3 | 0.3,0.4,0
4 | 0.1,0.3,0
5 | 0.2,0.5,0
6 | 0.1,1,1
7 | 0.2,1.1,1
8 | 0.3,0.9,1
9 | 0.4,0.8,1
10 | 0.2,0.9,1
11 | 1,0.4,2
12 | 0.9,0.5,2
13 | 0.8,0.6,2
14 | 0.9,0.4,2
15 | 1,0.5,2
16 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/One-Layer Perceptron Classifier/Data Samples/sample2.csv:
--------------------------------------------------------------------------------
1 | 0.1,0.4,0
2 | 0.2,0.2,0
3 | 0.3,0.1,0
4 | 0.1,0.2,0
5 | 0.2,0.5,0
6 | 0.7,0.2,1
7 | 0.8,0.3,1
8 | 0.9,0.4,1
9 | 0.7,0.1,1
10 | 0.8,0.2,1
11 | 0.1,0.6,2
12 | 0.2,0.7,2
13 | 0.3,0.8,2
14 | 0.3,0.9,2
15 | 0.1,0.6,2
16 | 0.7,0.9,3
17 | 0.8,0.9,3
18 | 0.7,0.8,3
19 | 0.8,0.7,3
20 | 0.9,0.7,3
21 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/One-Layer Perceptron Classifier/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/One-Layer Perceptron Classifier/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Perceptron Classifier/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/Perceptron Classifier/App.ico
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Perceptron Classifier/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/Perceptron Classifier/AssemblyInfo.cs
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Perceptron Classifier/Data Samples/and.csv:
--------------------------------------------------------------------------------
1 | 0,0,0
2 | 0,1,0
3 | 1,0,0
4 | 1,1,1
5 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Perceptron Classifier/Data Samples/cube.csv:
--------------------------------------------------------------------------------
1 | 0,0,0,0
2 | 0,0,1,0
3 | 0,1,0,0
4 | 0,1,1,0
5 | 1,0,0,1
6 | 1,0,1,1
7 | 1,1,0,1
8 | 1,1,1,1
9 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Perceptron Classifier/Data Samples/or.csv:
--------------------------------------------------------------------------------
1 | 0,0,0
2 | 0,1,1
3 | 1,0,1
4 | 1,1,1
5 |
--------------------------------------------------------------------------------
/Samples/Neuro/Simple/Perceptron Classifier/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Neuro/Simple/Perceptron Classifier/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/NXTTest/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Robotics/Lego/NXTTest/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/NXTTest/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace NXTTest
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/NXTTest/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/RCXTest/MainForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Robotics/Lego/RCXTest/MainForm.Designer.cs
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/RCXTest/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Robotics/Lego/RCXTest/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/RCXTest/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace RCXTest
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Samples/Robotics/Lego/RCXTest/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Robotics/Surveyor/SRVTest/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Robotics/Surveyor/SRVTest/Resources/srv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Robotics/Surveyor/SRVTest/Resources/srv.png
--------------------------------------------------------------------------------
/Samples/Robotics/Surveyor/SVSTest/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Robotics/Surveyor/SVSTest/Resources/svs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Robotics/Surveyor/SVSTest/Resources/svs.png
--------------------------------------------------------------------------------
/Samples/Robotics/TeRK/QwerkStart/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Video/Kinect Capture/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Video/Player/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace Player
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Samples/Video/Player/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Video/Snapshot Maker/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Video/Two Cameras Test/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Video/Ximea Sample/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/AboutForm.Designer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/AboutForm.Designer.cs
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/App.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/App.ico
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/DefineRegionsControl.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/DefineRegionsControl.cs
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/Images/clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/Images/clear.png
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/Images/rectangle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/Images/rectangle.png
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/MainForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/MainForm.cs
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/MotionDetector.exe.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/MotionRegionsForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/MotionRegionsForm.cs
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/URLForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/URLForm.cs
--------------------------------------------------------------------------------
/Samples/Vision/MotionDetector/VideoCaptureDeviceForm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Samples/Vision/MotionDetector/VideoCaptureDeviceForm.cs
--------------------------------------------------------------------------------
/Sources/.nuget/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Sources/.nuget/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/.nuget/NuGet.exe
--------------------------------------------------------------------------------
/Sources/Building.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Building.txt
--------------------------------------------------------------------------------
/Sources/Controls/AForge.Controls.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/AForge.Controls.snk
--------------------------------------------------------------------------------
/Sources/Controls/Chart.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Chart.cs
--------------------------------------------------------------------------------
/Sources/Controls/ColorSlider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/ColorSlider.cs
--------------------------------------------------------------------------------
/Sources/Controls/Histogram.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Histogram.cs
--------------------------------------------------------------------------------
/Sources/Controls/HuePicker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/HuePicker.cs
--------------------------------------------------------------------------------
/Sources/Controls/Images/histogram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/histogram.jpg
--------------------------------------------------------------------------------
/Sources/Controls/Images/hue_picker1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/hue_picker1.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/hue_picker2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/hue_picker2.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/manipulator_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/manipulator_round.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/manipulator_square.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/manipulator_square.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/slider_control.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/slider_control.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/slider_gradient.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/slider_gradient.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/slider_inner_gradient.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/slider_inner_gradient.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/slider_outer_gradient.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/slider_outer_gradient.png
--------------------------------------------------------------------------------
/Sources/Controls/Images/slider_threshold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Images/slider_threshold.png
--------------------------------------------------------------------------------
/Sources/Controls/Resources/arrow.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Controls/Resources/arrow.bmp
--------------------------------------------------------------------------------
/Sources/Core/AForge.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/AForge.snk
--------------------------------------------------------------------------------
/Sources/Core/DoublePoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/DoublePoint.cs
--------------------------------------------------------------------------------
/Sources/Core/DoubleRange.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/DoubleRange.cs
--------------------------------------------------------------------------------
/Sources/Core/IntRange.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/IntRange.cs
--------------------------------------------------------------------------------
/Sources/Core/Point.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/Point.cs
--------------------------------------------------------------------------------
/Sources/Core/PolishExpression.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/PolishExpression.cs
--------------------------------------------------------------------------------
/Sources/Core/Range.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Core/Range.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/AForge.Fuzzy.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/AForge.Fuzzy.snk
--------------------------------------------------------------------------------
/Sources/Fuzzy/FuzzySet.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/FuzzySet.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/LinguisticVariable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/LinguisticVariable.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Membership Functions/IMembershipFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Membership Functions/IMembershipFunction.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Membership Functions/PiecewiseLinearFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Membership Functions/PiecewiseLinearFunction.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Membership Functions/SingletonFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Membership Functions/SingletonFunction.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Membership Functions/TrapezoidalFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Membership Functions/TrapezoidalFunction.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Operators/ICoNorm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Operators/ICoNorm.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Operators/INorm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Operators/INorm.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Operators/IUnaryOperator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Operators/IUnaryOperator.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Operators/MinimumNorm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Operators/MinimumNorm.cs
--------------------------------------------------------------------------------
/Sources/Fuzzy/Operators/ProductNorm.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Fuzzy/Operators/ProductNorm.cs
--------------------------------------------------------------------------------
/Sources/Genetic/AForge.Genetic.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/AForge.Genetic.snk
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/BinaryChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/BinaryChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/DoubleArrayChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/DoubleArrayChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/GP/ExtendedGeneFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/GP/ExtendedGeneFunction.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/GP/GEPChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/GP/GEPChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/GP/GPTreeChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/GP/GPTreeChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/GP/GPTreeNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/GP/GPTreeNode.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/GP/IGPGene.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/GP/IGPGene.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/GP/SimpleGeneFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/GP/SimpleGeneFunction.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/IChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/IChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/PermutationChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/PermutationChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Chromosomes/ShortArrayChromosome.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Chromosomes/ShortArrayChromosome.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Fitness Functions/IFitnessFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Fitness Functions/IFitnessFunction.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Fitness Functions/OptimizationFunction1D.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Fitness Functions/OptimizationFunction1D.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Fitness Functions/OptimizationFunction2D.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Fitness Functions/OptimizationFunction2D.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Fitness Functions/SymbolicRegressionFitness.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Fitness Functions/SymbolicRegressionFitness.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Fitness Functions/TimeSeriesPredictionFitness.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Fitness Functions/TimeSeriesPredictionFitness.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Population.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Population.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Selection Algorithms/EliteSelection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Selection Algorithms/EliteSelection.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Selection Algorithms/ISelectionMethod.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Selection Algorithms/ISelectionMethod.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Selection Algorithms/RankSelection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Selection Algorithms/RankSelection.cs
--------------------------------------------------------------------------------
/Sources/Genetic/Selection Algorithms/RouletteWheelSelection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Genetic/Selection Algorithms/RouletteWheelSelection.cs
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/AForge.Imaging.Formats.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/AForge.Imaging.Formats.snk
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/FITS/FOCx38i0101t_c0f.fits:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/FITS/FOCx38i0101t_c0f.fits
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/FITS/good.fit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/FITS/good.fit
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/FITS/ngc1316o.fit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/FITS/ngc1316o.fit
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/FITS/ngc1316r.fit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/FITS/ngc1316r.fit
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/PNM/hsk.tmp.ppm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/PNM/hsk.tmp.ppm
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/PNM/im1.pgm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/PNM/im1.pgm
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/PNM/im8.ppm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/PNM/im8.ppm
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/PNM/rays2.pnm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/PNM/rays2.pnm
--------------------------------------------------------------------------------
/Sources/Imaging.Formats/Sample Images/PNM/yaleB01_P00A+000E+00.pgm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging.Formats/Sample Images/PNM/yaleB01_P00A+000E+00.pgm
--------------------------------------------------------------------------------
/Sources/Imaging/AForge.Imaging.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/AForge.Imaging.snk
--------------------------------------------------------------------------------
/Sources/Imaging/Blob.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Blob.cs
--------------------------------------------------------------------------------
/Sources/Imaging/BlobCounter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/BlobCounter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/BlobCounterBase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/BlobCounterBase.cs
--------------------------------------------------------------------------------
/Sources/Imaging/BlockMatch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/BlockMatch.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/BurkesColorDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/BurkesColorDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/ColorErrorDiffusionToAdjacentNeighbors.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/ColorErrorDiffusionToAdjacentNeighbors.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/ErrorDiffusionColorDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/ErrorDiffusionColorDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/FloydSteinbergColorDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/FloydSteinbergColorDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/JarvisJudiceNinkeColorDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/JarvisJudiceNinkeColorDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/SierraColorDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/SierraColorDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Color Reduction/StuckiColorDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Color Reduction/StuckiColorDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ColorConverter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ColorConverter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Complex Filters/FrequencyFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Complex Filters/FrequencyFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Complex Filters/IComplexFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Complex Filters/IComplexFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ComplexImage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ComplexImage.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Drawing.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Drawing.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ExhaustiveBlockMatching.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ExhaustiveBlockMatching.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ExhaustiveTemplateMatching.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ExhaustiveTemplateMatching.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/Add.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/Add.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/Difference.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/Difference.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/Intersect.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/Intersect.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/Merge.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/Merge.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/Morph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/Morph.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/MoveTowards.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/MoveTowards.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/2 Source filters/Subtract.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/2 Source filters/Subtract.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Adaptive Binarization/IterativeThreshold.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Adaptive Binarization/IterativeThreshold.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Adaptive Binarization/OtsuThreshold.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Adaptive Binarization/OtsuThreshold.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Adaptive Binarization/SISThreshold.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Adaptive Binarization/SISThreshold.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Base classes/BaseResizeFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Base classes/BaseResizeFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Base classes/BaseRotateFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Base classes/BaseRotateFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/BayerDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/BayerDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/BurkesDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/BurkesDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/ErrorDiffusionDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/ErrorDiffusionDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/ErrorDiffusionToAdjacentNeighbors.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/ErrorDiffusionToAdjacentNeighbors.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/FloydSteinbergDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/FloydSteinbergDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/JarvisJudiceNinkeDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/JarvisJudiceNinkeDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/OrderedDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/OrderedDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/SierraDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/SierraDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/StuckiDithering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/StuckiDithering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/Threshold.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/Threshold.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Binarization/ThresholdWithCarry.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Binarization/ThresholdWithCarry.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/BrightnessCorrection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/BrightnessCorrection.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ChannelFiltering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ChannelFiltering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ColorFiltering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ColorFiltering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ColorRemapping.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ColorRemapping.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ContrastCorrection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ContrastCorrection.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ContrastStretch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ContrastStretch.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/EuclideanColorFiltering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/EuclideanColorFiltering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ExtractChannel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ExtractChannel.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/GammaCorrection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/GammaCorrection.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/Grayscale.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/Grayscale.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/GrayscaleBT709.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/GrayscaleBT709.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/GrayscaleRMY.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/GrayscaleRMY.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/GrayscaleToRGB.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/GrayscaleToRGB.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/GrayscaleY.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/GrayscaleY.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/HistogramEqualization.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/HistogramEqualization.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/Invert.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/Invert.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/LevelsLinear.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/LevelsLinear.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/LevelsLinear16bpp.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/LevelsLinear16bpp.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/ReplaceChannel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/ReplaceChannel.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/RotateChannels.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/RotateChannels.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Color Filters/Sepia.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Color Filters/Sepia.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/Blur.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/Blur.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/Convolution.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/Convolution.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/Edges.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/Edges.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/GaussianBlur.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/GaussianBlur.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/Mean.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/Mean.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/Sharpen.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/Sharpen.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Convolution/SharpenEx.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Convolution/SharpenEx.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Edge Detectors/CannyEdgeDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Edge Detectors/CannyEdgeDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Edge Detectors/DifferenceEdgeDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Edge Detectors/DifferenceEdgeDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Edge Detectors/HomogenityEdgeDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Edge Detectors/HomogenityEdgeDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Edge Detectors/SobelEdgeDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Edge Detectors/SobelEdgeDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/FilterIterator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/FilterIterator.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/FiltersSequence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/FiltersSequence.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Flood Fillers/PointedColorFloodFill.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Flood Fillers/PointedColorFloodFill.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Flood Fillers/PointedMeanFloodFill.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Flood Fillers/PointedMeanFloodFill.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/HSL Filters/HSLFiltering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/HSL Filters/HSLFiltering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/HSL Filters/HSLLinear.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/HSL Filters/HSLLinear.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/HSL Filters/HueModifier.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/HSL Filters/HueModifier.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/HSL Filters/SaturationCorrection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/HSL Filters/SaturationCorrection.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/IFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/IFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/IInPlaceFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/IInPlaceFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/IInPlacePartialFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/IInPlacePartialFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/IlluminationCorrection/FlatFieldCorrection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/IlluminationCorrection/FlatFieldCorrection.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/BottomHat.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/BottomHat.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/Closing.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/Closing.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/Dilatation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/Dilatation.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/Erosion.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/Erosion.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/HitAndMiss.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/HitAndMiss.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/Opening.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/Opening.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Morphology/TopHat.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Morphology/TopHat.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Noise generation/AdditiveNoise.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Noise generation/AdditiveNoise.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Noise generation/SaltAndPepperNoise.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Noise generation/SaltAndPepperNoise.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Normalized RGB/ExtractNormalizedRGBChannel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Normalized RGB/ExtractNormalizedRGBChannel.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/BlobsFiltering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/BlobsFiltering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/CanvasCrop.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/CanvasCrop.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/CanvasFill.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/CanvasFill.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/CanvasMove.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/CanvasMove.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/ConnectedComponentsLabeling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/ConnectedComponentsLabeling.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/CornersMarker.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/CornersMarker.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/ExtractBiggestBlob.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/ExtractBiggestBlob.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/ImageWarp.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/ImageWarp.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/Jitter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/Jitter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/Mirror.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/Mirror.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/OilPainting.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/OilPainting.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/Pixellate.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/Pixellate.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/SimpleSkeletonization.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/SimpleSkeletonization.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/TexturedFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/TexturedFilter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/TexturedMerge.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/TexturedMerge.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Other/Texturer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Other/Texturer.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Smooting/AdaptiveSmooth.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Smooting/AdaptiveSmooth.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Smooting/ConservativeSmoothing.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Smooting/ConservativeSmoothing.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Smooting/Median.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Smooting/Median.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/Crop.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/Crop.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/ResizeBicubic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/ResizeBicubic.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/ResizeBilinear.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/ResizeBilinear.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/ResizeNearestNeighbor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/ResizeNearestNeighbor.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/RotateBicubic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/RotateBicubic.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/RotateBilinear.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/RotateBilinear.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/RotateNearestNeighbor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/RotateNearestNeighbor.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/Transform/Shrink.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/Transform/Shrink.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/YCbCr Filters/YCbCrExtractChannel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/YCbCr Filters/YCbCrExtractChannel.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/YCbCr Filters/YCbCrFiltering.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/YCbCr Filters/YCbCrFiltering.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/YCbCr Filters/YCbCrLinear.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/YCbCr Filters/YCbCrLinear.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Filters/YCbCr Filters/YCbCrReplaceChannel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Filters/YCbCr Filters/YCbCrReplaceChannel.cs
--------------------------------------------------------------------------------
/Sources/Imaging/HorizontalIntensityStatistics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/HorizontalIntensityStatistics.cs
--------------------------------------------------------------------------------
/Sources/Imaging/HoughCircleTransformation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/HoughCircleTransformation.cs
--------------------------------------------------------------------------------
/Sources/Imaging/IBlockMatching.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/IBlockMatching.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ICornersDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ICornersDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ITemplateMatching.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ITemplateMatching.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Image.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Image.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ImageStatistics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ImageStatistics.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ImageStatisticsHSL.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ImageStatisticsHSL.cs
--------------------------------------------------------------------------------
/Sources/Imaging/ImageStatisticsYCbCr.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/ImageStatisticsYCbCr.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Images/adaptive_smooth.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/adaptive_smooth.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/add.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/additive_noise.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/additive_noise.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/anaglyph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/anaglyph.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/anaglyph_glasses.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/anaglyph_glasses.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/background.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/backward_quadrilateral.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/backward_quadrilateral.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/bayer_dithering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/bayer_dithering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/bayer_filter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/bayer_filter.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/bg.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/biggest_blob.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/biggest_blob.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/bilateral.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/bilateral.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/blobs_filtering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/blobs_filtering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/blur.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/blur.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/bottomhat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/bottomhat.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/bradley_local_thresholding.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/bradley_local_thresholding.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/brightness_correction.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/brightness_correction.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/burkes.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/burkes.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/canny_edges.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/canny_edges.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/canvas_crop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/canvas_crop.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/canvas_move.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/canvas_move.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/channel_filtering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/channel_filtering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/closing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/closing.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/clouds_texture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/clouds_texture.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_burkes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_burkes.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_filtering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_filtering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_floyd_steinberg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_floyd_steinberg.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_jarvis_judice_ninke.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_jarvis_judice_ninke.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_remapping.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_remapping.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_sierra.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_sierra.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/color_stucki.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/color_stucki.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/conservative_smoothing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/conservative_smoothing.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/contrast_correction.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/contrast_correction.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/contrast_stretch.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/contrast_stretch.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/crop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/crop.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/deskew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/deskew.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/difference.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/difference.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/difference_edges.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/difference_edges.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/dilatation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/dilatation.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ebm_result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ebm_result.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ebm_sample1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ebm_sample1.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ebm_sample2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ebm_sample2.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/edges.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/edges.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/emboss.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/emboss.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/equalized.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/equalized.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/erosion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/erosion.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/euclidean_filtering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/euclidean_filtering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/extract_channel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/extract_channel.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/filled_holes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/filled_holes.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/flat_field.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/flat_field.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/floyd_steinberg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/floyd_steinberg.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/fourier.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/fourier.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/frequency_filter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/frequency_filter.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/from_polar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/from_polar.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/gamma.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/gamma.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/gaussian_blur.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/gaussian_blur.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/gaussian_sharpen.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/gaussian_sharpen.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/grayscale.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/grayscale.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hit-and-miss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hit-and-miss.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/homogenity_edges.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/homogenity_edges.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hor_histogram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hor_histogram.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hough_circles.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hough_circles.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hough_lines.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hough_lines.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hrls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hrls.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hsl_filtering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hsl_filtering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hsl_filtering2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hsl_filtering2.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hsl_linear.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hsl_linear.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/hue_modifier.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/hue_modifier.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/icon.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/image_warp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/image_warp.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/intersect.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/intersect.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/invert.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/invert.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/iterative_threshold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/iterative_threshold.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/jarvis_judice_ninke.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/jarvis_judice_ninke.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/jitter.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/jitter.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/labeling.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/labeling.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/labyrinth_texture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/labyrinth_texture.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/levels_linear.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/levels_linear.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/marble_texture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/marble_texture.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/mask.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/masked_image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/masked_image.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/mean.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/mean.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/median.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/median.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/merge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/merge.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/mirror.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/mirror.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/morph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/morph.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/move_towards.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/move_towards.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/object.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/object.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/oil_painting.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/oil_painting.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/opening.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/opening.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ordered_color_dithering.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ordered_color_dithering.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ordered_dithering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ordered_dithering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/otsu_threshold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/otsu_threshold.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/pixellate.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/pixellate.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/pointed_color_fill.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/pointed_color_fill.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/pointed_mean_fill.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/pointed_mean_fill.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/polar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/polar.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/posterization.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/posterization.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/quadrilateral_bilinear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/quadrilateral_bilinear.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/quadrilateral_ex_bilinear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/quadrilateral_ex_bilinear.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/quadrilateral_finder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/quadrilateral_finder.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/quadrilateral_nearest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/quadrilateral_nearest.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/reduced_colors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/reduced_colors.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/replace_channel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/replace_channel.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/resize_bicubic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/resize_bicubic.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/resize_bilinear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/resize_bilinear.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/resize_nearest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/resize_nearest.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/rotate_bicubic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/rotate_bicubic.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/rotate_bilinear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/rotate_bilinear.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/rotate_channels.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/rotate_channels.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/rotate_nearest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/rotate_nearest.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/salt_noise.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/salt_noise.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample1.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample10.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample11.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample12.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample13.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample14.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample15.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample16_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample16_left.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample16_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample16_right.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample17.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample17.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample18.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample19.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample19.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample2.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample20.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample21.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample22.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample23.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample23.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample24.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample3.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample4.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample5.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample6.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample7.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample8.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sample9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sample9.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/saturation_correction.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/saturation_correction.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sepia.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sepia.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sharpen.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sharpen.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/shrink.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/shrink.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sierra.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sierra.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/simple_skeletonization.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/simple_skeletonization.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sis_threshold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sis_threshold.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/sobel_edges.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/sobel_edges.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/stucki.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/stucki.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/subtract.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/subtract.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/susan_corners.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/susan_corners.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/textile_texture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/textile_texture.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/textured_filter1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/textured_filter1.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/textured_filter2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/textured_filter2.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/textured_merge1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/textured_merge1.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/textured_merge2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/textured_merge2.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/texturer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/texturer.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/thinning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/thinning.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/threshold.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/threshold.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/threshold_carry.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/threshold_carry.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/thresholded_difference.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/thresholded_difference.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/thresholded_euclidean_difference.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/thresholded_euclidean_difference.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/tophat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/tophat.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ver_histogram.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ver_histogram.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/vrls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/vrls.png
--------------------------------------------------------------------------------
/Sources/Imaging/Images/water_wave.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/water_wave.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/wood_texture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/wood_texture.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ycbcr_filtering.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ycbcr_filtering.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ycbcr_linear.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ycbcr_linear.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/Images/ycbcr_replace_channel.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Images/ycbcr_replace_channel.jpg
--------------------------------------------------------------------------------
/Sources/Imaging/IntegralImage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/IntegralImage.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Interpolation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Interpolation.cs
--------------------------------------------------------------------------------
/Sources/Imaging/MemoryManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/MemoryManager.cs
--------------------------------------------------------------------------------
/Sources/Imaging/MoravecCornersDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/MoravecCornersDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/RecursiveBlobCounter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/RecursiveBlobCounter.cs
--------------------------------------------------------------------------------
/Sources/Imaging/SusanCornersDetector.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/SusanCornersDetector.cs
--------------------------------------------------------------------------------
/Sources/Imaging/TemplateMatch.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/TemplateMatch.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/CloudsTexture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/CloudsTexture.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/ITextureGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/ITextureGenerator.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/LabyrinthTexture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/LabyrinthTexture.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/MarbleTexture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/MarbleTexture.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/TextileTexture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/TextileTexture.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/Texture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/Texture.cs
--------------------------------------------------------------------------------
/Sources/Imaging/Textures/WoodTexture.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/Textures/WoodTexture.cs
--------------------------------------------------------------------------------
/Sources/Imaging/VerticalIntensityStatistics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Imaging/VerticalIntensityStatistics.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/AForge.MachineLearning.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/AForge.MachineLearning.snk
--------------------------------------------------------------------------------
/Sources/MachineLearning/Exploration Policy/BoltzmannExploration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/Exploration Policy/BoltzmannExploration.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/Exploration Policy/EpsilonGreedyExploration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/Exploration Policy/EpsilonGreedyExploration.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/Exploration Policy/IExplorationPolicy.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/Exploration Policy/IExplorationPolicy.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/Exploration Policy/RouletteWheelExploration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/Exploration Policy/RouletteWheelExploration.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/Exploration Policy/TabuSearchExploration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/Exploration Policy/TabuSearchExploration.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/QLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/QLearning.cs
--------------------------------------------------------------------------------
/Sources/MachineLearning/Sarsa.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/MachineLearning/Sarsa.cs
--------------------------------------------------------------------------------
/Sources/Math/AForge.Math.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/AForge.Math.snk
--------------------------------------------------------------------------------
/Sources/Math/ContinuousHistogram.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/ContinuousHistogram.cs
--------------------------------------------------------------------------------
/Sources/Math/FourierTransform.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/FourierTransform.cs
--------------------------------------------------------------------------------
/Sources/Math/Gaussian.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Gaussian.cs
--------------------------------------------------------------------------------
/Sources/Math/Geometry/LineSegment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Geometry/LineSegment.cs
--------------------------------------------------------------------------------
/Sources/Math/Histogram.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Histogram.cs
--------------------------------------------------------------------------------
/Sources/Math/Images/close_points_merging_optimizer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Images/close_points_merging_optimizer.png
--------------------------------------------------------------------------------
/Sources/Math/Images/flat_angles_optimizer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Images/flat_angles_optimizer.png
--------------------------------------------------------------------------------
/Sources/Math/Images/line_straightening_optimizer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Images/line_straightening_optimizer.png
--------------------------------------------------------------------------------
/Sources/Math/Images/potential_corners.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Images/potential_corners.png
--------------------------------------------------------------------------------
/Sources/Math/PerlinNoise.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/PerlinNoise.cs
--------------------------------------------------------------------------------
/Sources/Math/Random/ExponentialGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Random/ExponentialGenerator.cs
--------------------------------------------------------------------------------
/Sources/Math/Random/GaussianGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Random/GaussianGenerator.cs
--------------------------------------------------------------------------------
/Sources/Math/Random/IRandomNumberGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Random/IRandomNumberGenerator.cs
--------------------------------------------------------------------------------
/Sources/Math/Random/StandardGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Random/StandardGenerator.cs
--------------------------------------------------------------------------------
/Sources/Math/Random/UniformGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Random/UniformGenerator.cs
--------------------------------------------------------------------------------
/Sources/Math/Random/UniformOneGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Random/UniformOneGenerator.cs
--------------------------------------------------------------------------------
/Sources/Math/Statistics.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Statistics.cs
--------------------------------------------------------------------------------
/Sources/Math/Tools.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Math/Tools.cs
--------------------------------------------------------------------------------
/Sources/Neuro/AForge.Neuro.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/AForge.Neuro.snk
--------------------------------------------------------------------------------
/Sources/Neuro/Activation Functions/BipolarSigmoidFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Activation Functions/BipolarSigmoidFunction.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Activation Functions/IActivationFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Activation Functions/IActivationFunction.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Activation Functions/SigmoidFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Activation Functions/SigmoidFunction.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Activation Functions/ThresholdFunction.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Activation Functions/ThresholdFunction.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Images/sigmoid.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Images/sigmoid.bmp
--------------------------------------------------------------------------------
/Sources/Neuro/Images/sigmoid_bipolar.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Images/sigmoid_bipolar.bmp
--------------------------------------------------------------------------------
/Sources/Neuro/Images/threshold.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Images/threshold.bmp
--------------------------------------------------------------------------------
/Sources/Neuro/Layers/ActivationLayer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Layers/ActivationLayer.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Layers/DistanceLayer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Layers/DistanceLayer.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Layers/Layer.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Layers/Layer.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/BackPropagationLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/BackPropagationLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/DeltaRuleLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/DeltaRuleLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/ElasticNetworkLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/ElasticNetworkLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/ISupervisedLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/ISupervisedLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/IUnsupervisedLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/IUnsupervisedLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/PerceptronLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/PerceptronLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Learning/SOMLearning.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Learning/SOMLearning.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Networks/ActivationNetwork.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Networks/ActivationNetwork.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Networks/DistanceNetwork.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Networks/DistanceNetwork.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Networks/Network.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Networks/Network.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Neurons/ActivationNeuron.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Neurons/ActivationNeuron.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Neurons/DistanceNeuron.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Neurons/DistanceNeuron.cs
--------------------------------------------------------------------------------
/Sources/Neuro/Neurons/Neuron.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Neuro/Neurons/Neuron.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/AForge.Video.DirectShow.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/AForge.Video.DirectShow.snk
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/FileVideoSource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/FileVideoSource.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/FilterInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/FilterInfo.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/FilterInfoCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/FilterInfoCollection.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Icons/camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Icons/camera.png
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Images/VideoCaptureDeviceForm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Images/VideoCaptureDeviceForm.png
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IAMStreamConfig.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IAMStreamConfig.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IBaseFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IBaseFilter.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/ICaptureGraphBuilder2.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/ICreateDevEnum.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/ICreateDevEnum.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IEnumFilters.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IEnumFilters.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IEnumPins.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IEnumPins.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IFileSourceFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IFileSourceFilter.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IFilterGraph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IFilterGraph.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IFilterGraph2.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IFilterGraph2.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IGraphBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IGraphBuilder.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IMediaControl.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IMediaControl.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IMediaFilter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IMediaFilter.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IPersist.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IPersist.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IPin.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IPin.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IPropertyBag.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IPropertyBag.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IReferenceClock.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IReferenceClock.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/ISampleGrabber.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/ISampleGrabber.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/ISampleGrabberCB.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/ISampleGrabberCB.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/ISpecifyPropertyPages.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/ISpecifyPropertyPages.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/IVideoWindow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/IVideoWindow.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/Structures.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/Structures.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/Tools.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/Tools.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/Uuids.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/Uuids.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Internals/Win32.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Internals/Win32.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/Uuids.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/Uuids.cs
--------------------------------------------------------------------------------
/Sources/Video.DirectShow/VideoCapabilities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.DirectShow/VideoCapabilities.cs
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/AForge.Video.FFMPEG.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/AForge.Video.FFMPEG.snk
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/AssemblyInfo.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/AssemblyInfo.cpp
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/Stdafx.cpp:
--------------------------------------------------------------------------------
1 | // stdafx.cpp : source file that includes just the standard includes
2 | // Video.FFMPEG.pch will be the pre-compiled header
3 | // stdafx.obj will contain the pre-compiled type information
4 |
5 | #include "stdafx.h"
6 |
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/Stdafx.h:
--------------------------------------------------------------------------------
1 | // stdafx.h : include file for standard system include files,
2 | // or project specific include files that are used frequently,
3 | // but are changed infrequently
4 |
5 | #pragma once
6 |
7 | #include
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoCodec.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoCodec.cpp
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoCodec.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoCodec.h
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoFileReader.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoFileReader.cpp
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoFileReader.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoFileReader.h
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoFileSource.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoFileSource.cpp
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoFileSource.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoFileSource.h
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoFileWriter.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoFileWriter.cpp
--------------------------------------------------------------------------------
/Sources/Video.FFMPEG/VideoFileWriter.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.FFMPEG/VideoFileWriter.h
--------------------------------------------------------------------------------
/Sources/Video.Kinect/AForge.Video.Kinect.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.Kinect/AForge.Video.Kinect.snk
--------------------------------------------------------------------------------
/Sources/Video.Kinect/Images/kinect.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.Kinect/Images/kinect.jpg
--------------------------------------------------------------------------------
/Sources/Video.VFW/AForge.Video.VFW.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.VFW/AForge.Video.VFW.snk
--------------------------------------------------------------------------------
/Sources/Video.VFW/AVIFileVideoSource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.VFW/AVIFileVideoSource.cs
--------------------------------------------------------------------------------
/Sources/Video.VFW/AVIReader.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.VFW/AVIReader.cs
--------------------------------------------------------------------------------
/Sources/Video.VFW/AVIWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.VFW/AVIWriter.cs
--------------------------------------------------------------------------------
/Sources/Video.VFW/Win32.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.VFW/Win32.cs
--------------------------------------------------------------------------------
/Sources/Video.Ximea/AForge.Video.Ximea.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.Ximea/AForge.Video.Ximea.snk
--------------------------------------------------------------------------------
/Sources/Video.Ximea/Images/HW_SW_buffers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video.Ximea/Images/HW_SW_buffers.png
--------------------------------------------------------------------------------
/Sources/Video.Ximea/Internal/ParameterType.cs:
--------------------------------------------------------------------------------
1 | // AForge XIMEA Video Library
2 | // AForge.NET framework
3 | // http://www.aforgenet.com/framework/
4 | //
5 | // Copyright © AForge.NET, 2005-2011
6 | // contacts@aforgenet.com
7 | //
8 |
9 | using System;
10 |
11 | namespace AForge.Video.Ximea.Internal
12 | {
13 | internal enum ParameterType
14 | {
15 | Integer = 0,
16 | Float = 1,
17 | String = 2
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Sources/Video/AForge.Video.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video/AForge.Video.snk
--------------------------------------------------------------------------------
/Sources/Video/ByteArrayUtils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video/ByteArrayUtils.cs
--------------------------------------------------------------------------------
/Sources/Video/IVideoSource.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video/IVideoSource.cs
--------------------------------------------------------------------------------
/Sources/Video/JPEGStream.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video/JPEGStream.cs
--------------------------------------------------------------------------------
/Sources/Video/MJPEGStream.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video/MJPEGStream.cs
--------------------------------------------------------------------------------
/Sources/Video/VideoEvents.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Video/VideoEvents.cs
--------------------------------------------------------------------------------
/Sources/Vision/AForge.Vision.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Sources/Vision/AForge.Vision.snk
--------------------------------------------------------------------------------
/Tools/DebuggerVisualizers/AForge.DebuggerVisualizers.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Tools/DebuggerVisualizers/AForge.DebuggerVisualizers.snk
--------------------------------------------------------------------------------
/Tools/DebuggerVisualizers/Images/histogram.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Tools/DebuggerVisualizers/Images/histogram.ico
--------------------------------------------------------------------------------
/Tools/DebuggerVisualizers/Images/image.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Tools/DebuggerVisualizers/Images/image.ico
--------------------------------------------------------------------------------
/Tools/IPPrototyper/AForge.IPPrototyper.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Tools/IPPrototyper/AForge.IPPrototyper.snk
--------------------------------------------------------------------------------
/Tools/IPPrototyper/Interfaces/AForge.Imaging.IPPrototyper.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Tools/IPPrototyper/Interfaces/AForge.Imaging.IPPrototyper.snk
--------------------------------------------------------------------------------
/Tools/IPPrototyper/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Windows.Forms;
4 |
5 | namespace IPPrototyper
6 | {
7 | static class Program
8 | {
9 | ///
10 | /// The main entry point for the application.
11 | ///
12 | [STAThread]
13 | static void Main( )
14 | {
15 | Application.EnableVisualStyles( );
16 | Application.SetCompatibleTextRenderingDefault( false );
17 | Application.Run( new MainForm( ) );
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Tools/IPPrototyper/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Tools/Read Me.txt:
--------------------------------------------------------------------------------
1 | * IPPrototyper
2 | - Information about the tool:
3 | http://www.aforgenet.com/framework/tools/ipprototyper.html
4 |
5 | - Sample of the tool usage can be found in "Samples/Imaging/IPPrototyper Sample"
6 |
7 |
8 | * Debugger Visualizers
9 | - Information about the tool:
10 | http://www.aforgenet.com/framework/tools/debug_visualizer.html
11 |
--------------------------------------------------------------------------------
/Unit Tests/AForge.Imaging.Tests/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Unit Tests/AForge.Math.Tests/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Unit Tests/AForge.Tests/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Unit Tests/All Tests.nunit:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Unit Tests/Read Me.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/accord-net/base/71151397aa6652040c8696f3a706f9c430229990/Unit Tests/Read Me.txt
--------------------------------------------------------------------------------
/Unit Tests/packages/repositories.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------