Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image processing libraries in c# [closed]

Tags:

From where can I get image processing libraries in C# .Net?

like image 689
y_zyx Avatar asked May 04 '11 09:05

y_zyx


People also ask

Can we do image processing in C?

It should compile fine using commercially available C/C++ compilers. The software works on 8-bit, gray scale images in TIFF and BMP file formats. Inexpensive programs are available to convert almost any image into one of these formats. Chapter 0 introduces the C Image Processing System.

Can image processing be done in C++?

C or C++ C or C++ language have been used for image processing because it contains native libraries such as EmguCV, OpenGL and OpenCV have built-in intelligent feature, mainly used for image processing.

Is image a library in Python?

The pygame library is an open-source module for the Python programming language specifically intended to help you make games and other multimedia applications. Built on top of the highly portable SDL (Simple DirectMedia Layer) development library, pygame can run across many platforms and operating systems.


2 Answers

edit: Check out the list here https://github.com/quozd/awesome-dotnet/blob/master/README.md#image-processing:

  • ImageResizer - Add commands to image URLs to get altered versions in milliseconds. Resizing, editing etc of images in real-time.
  • ImageProcessor - Open-source .NET library to manipulate images on-the-fly.
  • DynamicImage - High-performance open-source image manipulation library for ASP.NET.
  • MetadataExtractor - Extracts Exif, IPTC, XMP, ICC and other metadata from image files.
  • Emgu CV - Cross-platform .NET wrapper for the OpenCV library.
  • DotImaging - Minimalistic .NET imaging portable platform
  • Magick.NET - .NET wrapper for the ImageMagick library.
  • OpenCvSharp - Cross platform wrapper of OpenCV for .NET Framework.

Check the AForge library. It is a set of libraries in which you'll find an image processing and a vision library.

like image 167
CharlesB Avatar answered Sep 30 '22 22:09

CharlesB


There emguCV (for .NET) that is based on C++ OpenCV, which is very popular.

like image 28
Tony The Lion Avatar answered Sep 30 '22 23:09

Tony The Lion