8000 GitHub - Micke3rd/AForge.NET: AForge.NET Framework is a C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, machine learning, robotics, etc.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AForge.NET Framework is a C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, machine learning, robotics, etc.

License

Notifications You must be signed in to change notification settings

Micke3rd/AForge.NET

 
 

Repository files navigation

It's still the work from https://github.com/andrewkirillov/AForge.NET

main changes:

  • removed build settings from *.csproj files
  • updated references to support .Net5 .. .Net9 (example see below).
  • removed the multiple sub solutions. It's 1 solution now. Especially unit tests are not separated anymore, and can be run immediately.

A couple of (win)Forms are excluded from their projects, if just updating the namespaces didn't solve compile errors. A few "exception expecting" unit tests are disabled for now, until I can check, what's the intension behind the test. Excluded Robotics.Terk & QwerkStart because of not embedded (external) references

How du build:

I use AForge as submodule, and therefore dont wanna separat build settings for it. These settings inherited from Directory.Build.props in my root folder. If you want build AForge as it is here, create file Directory.Build.props beside file AForge.sln, with content:

<?xml version="1.0" encoding="utf-8" ?>
<Project>
  <PropertyGroup>
    <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
	  <TargetFramework>net5.0-windows</TargetFramework>
	  <Platforms>x64</Platforms>
    <LangVersion>latest</LangVersion>
  </PropertyGroup>
</Project>

About

AForge.NET Framework is a C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, machine learning, robotics, etc.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 97.8%
  • C++ 1.7%
  • Other 0.5%
0