基本信息
源码名称:免费的C# 图像处理、神经网络、遗传算法集.rar )
源码大小:0.44M
文件格式:.rar
开发语言:C#
更新时间:2023-06-27
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
免费的C# 图像处理、神经网络、遗传算法集.rar )
本源代码内容包括图像处理,神经网络,遗传算法等。 本源代码内容包括图像处理,神经网络,遗传算法等。 本源代码内容包括图像处理,神经网络,遗传算法等。


文件清单
├── Samples
│   ├── 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
│   │   ├── 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
│   │   └── TSP
│   │       ├── App.ico
│   │       ├── AssemblyInfo.cs
│   │       ├── MainForm.cs
│   │       ├── MainForm.resx
│   │       ├── TSPChromosome.cs
│   │       ├── TSP.csproj
│   │       ├── TSPFitnessFunction.cs
│   │       └── TSP.sln
│   ├── Imaging
│   │   ├── FiltersDemo
│   │   │   ├── App.ico
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── FiltersDemo.csproj
│   │   │   ├── FiltersDemo.sln
│   │   │   ├── MainForm.cs
│   │   │   └── MainForm.resx
│   │   └── TexturesDemo
│   │       ├── MainForm.cs
│   │       ├── MainForm.Designer.cs
│   │       ├── MainForm.resx
│   │       ├── Program.cs
│   │       ├── Properties
│   │       │   ├── AssemblyInfo.cs
│   │       │   ├── Resources.Designer.cs
│   │       │   ├── Resources.resx
│   │       │   └── Settings.Designer.cs
│   │       ├── TexturesDemo.csproj
│   │       └── TexturesDemo.sln
│   └── 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
│       ├── 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
│       └── 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
└── Sources
    ├── AForge.sln
    ├── Controls
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   ├── Chart.cs
    │   ├── Chart.resx
    │   ├── Controls.csproj
    │   ├── Controls.sln
    │   ├── Copyright.txt
    │   └── obj
    │       └── Debug
    │           └── TempPE
    ├── Core
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   ├── Copyright.txt
    │   ├── Core.csproj
    │   ├── Core.sln
    │   ├── DoubleRange.cs
    │   ├── IntRange.cs
    │   ├── obj
    │   │   └── Debug
    │   │       └── TempPE
    │   ├── PolishExpression.cs
    │   └── Win32.cs
    ├── Docs Projects
    │   ├── AForge.Controls.shfb
    │   ├── AForge.Core.shfb
    │   ├── AForge.Genetic.shfb
    │   ├── AForge.Imaging.shfb
    │   ├── AForge.Math.shfb
    │   └── AForge.Neuro.shfb
    ├── Genetic
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   ├── Chromosomes
    │   │   ├── BinaryChromosome.cs
    │   │   ├── GP
    │   │   │   ├── ExtendedGeneFunction.cs
    │   │   │   ├── GEPChromosome.cs
    │   │   │   ├── GPTreeChromosome.cs
    │   │   │   ├── GPTreeNode.cs
    │   │   │   ├── IGPGene.cs
    │   │   │   └── SimpleGeneFunction.cs
    │   │   ├── IChromosome.cs
    │   │   ├── PermutationChromosome.cs
    │   │   └── ShortArrayChromosome.cs
    │   ├── Copyright.txt
    │   ├── Fitness Functions
    │   │   ├── IFitnessFunction.cs
    │   │   ├── OptimizationFunction1D.cs
    │   │   ├── OptimizationFunction2D.cs
    │   │   ├── SymbolicRegressionFitness.cs
    │   │   └── TimeSeriesPredictionFitness.cs
    │   ├── Genetic.csproj
    │   ├── Genetic.sln
    │   ├── obj
    │   │   └── Debug
    │   │       └── TempPE
    │   ├── Population.cs
    │   └── Selection Algorithms
    │       ├── EliteSelection.cs
    │       ├── ISelectionMethod.cs
    │       ├── RankSelection.cs
    │       └── RouletteWheelSelection.cs
    ├── Imaging
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   ├── BlobCounter.cs
    │   ├── Blob.cs
    │   ├── ColorConverter.cs
    │   ├── ComplexImage.cs
    │   ├── Copyright.txt
    │   ├── Filters
    │   │   ├── 2 Source filters
    │   │   │   ├── Add.cs
    │   │   │   ├── Difference.cs
    │   │   │   ├── Intersect.cs
    │   │   │   ├── Merge.cs
    │   │   │   ├── Morph.cs
    │   │   │   ├── MoveTowards.cs
    │   │   │   └── Subtract.cs
    │   │   ├── Adaptive Binarization
    │   │   │   └── SISThreshold.cs
    │   │   ├── Base classes
    │   │   │   ├── FilterAnyToAny.cs
    │   │   │   ├── FilterAnyToAnyNew.cs
    │   │   │   ├── FilterAnyToAnyNewSameSize.cs
    │   │   │   ├── FilterAnyToGray.cs
    │   │   │   ├── FilterColorToColor.cs
    │   │   │   ├── FilterColorToGray.cs
    │   │   │   ├── FilterGrayToColor.cs
    │   │   │   ├── FilterGrayToGrayNewSameSize.cs
    │   │   │   ├── FilterResize.cs
    │   │   │   └── FilterRotate.cs
    │   │   ├── Binarization
    │   │   │   ├── BayerDithering.cs
    │   │   │   ├── BurkesDithering.cs
    │   │   │   ├── ErrorDiffusionDithering.cs
    │   │   │   ├── FloydSteinbergDithering.cs
    │   │   │   ├── JarvisJudiceNinkeDithering.cs
    │   │   │   ├── OrderedDithering.cs
    │   │   │   ├── SierraDithering.cs
    │   │   │   ├── StevensonArceDithering.cs
    │   │   │   ├── StuckiDithering.cs
    │   │   │   ├── ThresholdCarry.cs
    │   │   │   └── Threshold.cs
    │   │   ├── Color Filters
    │   │   │   ├── ChannelFiltering.cs
    │   │   │   ├── ColorFiltering.cs
    │   │   │   ├── EuclideanColorFiltering.cs
    │   │   │   ├── ExtractChannel.cs
    │   │   │   ├── GammaCorrection.cs
    │   │   │   ├── GrayscaleBT709.cs
    │   │   │   ├── Grayscale.cs
    │   │   │   ├── GrayscaleRMY.cs
    │   │   │   ├── GrayscaleToRGB.cs
    │   │   │   ├── GrayscaleY.cs
    │   │   │   ├── Invert.cs
    │   │   │   ├── LevelsLinear.cs
    │   │   │   ├── ReplaceChannel.cs
    │   │   │   ├── RotateChannels.cs
    │   │   │   └── Sepia.cs
    │   │   ├── Convolution
    │   │   │   ├── Blur.cs
    │   │   │   ├── Convolution.cs
    │   │   │   ├── Correlation.cs
    │   │   │   ├── Edges.cs
    │   │   │   ├── GaussianBlur.cs
    │   │   │   ├── Mean.cs
    │   │   │   ├── Sharpen.cs
    │   │   │   └── SharpenEx.cs
    │   │   ├── Crop.cs
    │   │   ├── Edge Detectors
    │   │   │   ├── CannyEdgeDetector.cs
    │   │   │   ├── DifferenceEdgeDetector.cs
    │   │   │   ├── HomogenityEdgeDetector.cs
    │   │   │   └── SobelEdgeDetector.cs
    │   │   ├── FilterIterator.cs
    │   │   ├── FiltersSequence.cs
    │   │   ├── HSL Filters
    │   │   │   ├── BrightnessCorrection.cs
    │   │   │   ├── ContrastCorrection.cs
    │   │   │   ├── HSLFiltering.cs
    │   │   │   ├── HSLLinear.cs
    │   │   │   ├── HueModifier.cs
    │   │   │   └── SaturationCorrection.cs
    │   │   ├── IFilter.cs
    │   │   ├── IInPlaceFilter.cs
    │   │   ├── MaskedFilter.cs
    │   │   ├── Median.cs
    │   │   ├── Morphology
    │   │   │   ├── Closing.cs
    │   │   │   ├── Dilatation.cs
    │   │   │   ├── Erosion.cs
    │   │   │   ├── HitAndMiss.cs
    │   │   │   └── Opening.cs
    │   │   ├── Other
    │   │   │   ├── AdaptiveSmooth.cs
    │   │   │   ├── ConnectedComponentsLabeling.cs
    │   │   │   ├── ConservativeSmoothing.cs
    │   │   │   ├── Jitter.cs
    │   │   │   ├── OilPainting.cs
    │   │   │   ├── Pixellate.cs
    │   │   │   ├── Shrink.cs
    │   │   │   ├── SimpleSkeletonization.cs
    │   │   │   ├── TexturedFilter.cs
    │   │   │   ├── TexturedMerge.cs
    │   │   │   └── Texturer.cs
    │   │   ├── Transform
    │   │   │   ├── ResizeBicubic.cs
    │   │   │   ├── ResizeBilinear.cs
    │   │   │   ├── ResizeNearestNeighbor.cs
    │   │   │   ├── RotateBicubic.cs
    │   │   │   ├── RotateBilinear.cs
    │   │   │   └── RotateNearestNeighbor.cs
    │   │   └── YCbCr Filters
    │   │       ├── YCbCrExtractChannel.cs
    │   │       ├── YCbCrFiltering.cs
    │   │       ├── YCbCrLinear.cs
    │   │       └── YCbCrReplaceChannel.cs
    │   ├── Image.cs
    │   ├── Images
    │   │   ├── sample1.jpg
    │   │   └── sepia.jpg
    │   ├── ImageStatistics.cs
    │   ├── ImageStatisticsHSL.cs
    │   ├── ImageStatisticsYCbCr.cs
    │   ├── Imaging.csproj
    │   ├── Imaging.sln
    │   ├── Interpolation.cs
    │   ├── obj
    │   │   └── Debug
    │   │       └── TempPE
    │   └── Textures
    │       ├── CloudsTexture.cs
    │       ├── ITextureGenerator.cs
    │       ├── LabyrinthTexture.cs
    │       ├── MarbleTexture.cs
    │       ├── TextileTexture.cs
    │       └── WoodTexture.cs
    ├── Math
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   ├── Complex.cs
    │   ├── ContinuousHistogram.cs
    │   ├── Copyright.txt
    │   ├── FourierTransform.cs
    │   ├── Gaussian.cs
    │   ├── Histogram.cs
    │   ├── Math.csproj
    │   ├── Math.sln
    │   ├── obj
    │   │   └── Debug
    │   │       └── TempPE
    │   ├── PerlinNoise.cs
    │   ├── Statistics.cs
    │   └── Tools.cs
    ├── Neuro
    │   ├── Activation Functions
    │   │   ├── BipolarSigmoidFunction.cs
    │   │   ├── IActivationFunction.cs
    │   │   ├── SigmoidFunction.cs
    │   │   └── ThresholdFunction.cs
    │   ├── AssemblyInfo.cs
    │   ├── bin
    │   │   └── Debug
    │   ├── Copyright.txt
    │   ├── Images
    │   │   ├── sigmoid_bipolar.bmp
    │   │   ├── sigmoid.bmp
    │   │   └── threshold.bmp
    │   ├── Layers
    │   │   ├── ActivationLayer.cs
    │   │   ├── DistanceLayer.cs
    │   │   └── Layer.cs
    │   ├── Learning
    │   │   ├── BackPropagationLearning.cs
    │   │   ├── DeltaRuleLearning.cs
    │   │   ├── ElasticNetworkLearning.cs
    │   │   ├── ISupervisedLearning.cs
    │   │   ├── IUnsupervisedLearning.cs
    │   │   ├── PerceptronLearning.cs
    │   │   └── SOMLearning.cs
    │   ├── Networks
    │   │   ├── ActivationNetwork.cs
    │   │   ├── DistanceNetwork.cs
    │   │   └── Network.cs
    │   ├── Neuro.csproj
    │   ├── Neurons
    │   │   ├── ActivationNeuron.cs
    │   │   ├── DistanceNeuron.cs
    │   │   └── Neuron.cs
    │   ├── Neuro.sln
    │   └── obj
    │       └── Debug
    │           └── TempPE
    └── Tools.sln

93 directories, 325 files