How to get into image manipulation programming?

How can I do a simple thing, for example, manipulate the image programmatically? (with C ++ I think ..) jpgs / png / gif .....

+3
source share
4 answers

check out BOOST, it has a simple image processing library called GIL. It also has extensions for importing common formats.

http://www.boost.org/doc/libs/1_39_0/libs/gil/doc/index.html

+6
source

With .NET, you have two options:

  • GDI + from the System.Drawing namespace (Bitmap class)
  • WPF engine that can do a lot

, .

- . :

  • ( )
  • width, height, stride
  • RGB, ARGB,
  • (, , , , , )
  • 3D- RGB
+2

, , OpenCV. , , .

+2
source

Magick ++ is the C ++ API for the excellent ImageMagick library.

The advantage of ImageMagick is that it can be used from the command line and a bunch of popular scripts and compiled languages, and some of them may be more accessible to you than C ++.

+2
source

Source: https://habr.com/ru/post/1709515/


All Articles