-
Notifications
You must be signed in to change notification settings - Fork 15
/
README
68 lines (45 loc) · 2.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
LibVideoGfx - video processing library
Copyright (C) 1999-2014 Dirk Farin
===============================================================================
INTRODUCTION
LibVideoGfx is a C++ library for low-level video processing. It aims at
speeding up the development process for image and video processing
applications by providing high-level classes for commonly required tasks.
The library comprises support for:
- basic image data classes
- color-space convertion for RGB, YUV, HSV
- drawing primitives (lines, circles, ...)
- image manipulation (scaling, pixel-ops, convolution)
- file-IO (ppm, yuv, jpeg, png, mpeg, V4L-grabbing)
- X11 image display (including Xv-extension support)
Furthermore, it includes support for:
- bit-stream reading/writing
- commonly used container classes (dynamic array, heap, queue, ...)
- processor feature detection
LibVideoGfx includes MMX accelerated routines, which are used if an MMX
capable processor is detected. However, the library provides scalar
replacement routines and can thus be compiled on all UNIX platforms
(including CygWin).
JPEG file access requires the libjpeg. If this library cannot be detected
during library configuration, JPEG support is disabled.
The MPEG reader depends on the DVDview MPEG decoding program.
===============================================================================
COPYRIGHT AND AUTHOR
LibVideoGfx
Copyright (C) 1999-2014 Dirk Farin
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
The file `COPYING' contains the full text of the GNU LGPL.
If you would like to negotiate alternate licensing terms, you may do
so by contacting the author.
Send inquiries, comments, bug reports, suggestions, patches, etc. to:
Dirk Farin <dirk.farin@gmail.com>
See also the LibVideoGfx home page on the web:
http://dirk-farin.net/software/libvideogfx/index.html
===============================================================================