readme.txt 5.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. This folder contains libraries and headers of a few very popular still image codecs
  2. used by imgcodecs module.
  3. The libraries and headers are preferably to build Win32 and Win64 versions of OpenCV.
  4. On UNIX systems all the libraries are automatically detected by configure script.
  5. In order to use these versions of libraries instead of system ones on UNIX systems you
  6. should use BUILD_<library_name> CMake flags (for example, BUILD_PNG for the libpng library).
  7. ------------------------------------------------------------------------------------
  8. libjpeg (deprecated) The Independent JPEG Group's JPEG software.
  9. Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding.
  10. See IGJ home page http://www.ijg.org
  11. for details and links to the source code
  12. libjpeg-turbo libjpeg-turbo is covered by three compatible BSD-style open source licenses.
  13. Refer to [LICENSE.md](libjpeg-turbo/LICENSE.md) for a roll-up of license terms.
  14. Site: https://github.com/libjpeg-turbo/libjpeg-turbo
  15. API is compatible with original libjpeg.
  16. WITH_JPEG CMake option must be ON to add libjpeg or libjpeg-turbo support to imgcodecs.
  17. BUILD_JPEG=ON selects libjpeg-turbo by default (since OpenCV 3.4.2).
  18. Enable BUILD_JPEG_TURBO_DISABLE=ON to force using of libjpeg (this option is removed in OpenCV 4.0).
  19. ------------------------------------------------------------------------------------
  20. libpng Portable Network Graphics library.
  21. The license and copyright notes can be found in libpng/LICENSE.
  22. See libpng home page http://www.libpng.org
  23. for details and links to the source code
  24. WITH_PNG CMake option must be ON to add libpng support to imgcodecs.
  25. ------------------------------------------------------------------------------------
  26. libtiff Tag Image File Format (TIFF) Software
  27. Copyright (c) 1988-1997 Sam Leffler
  28. Copyright (c) 1991-1997 Silicon Graphics, Inc.
  29. See libtiff home page http://www.libtiff.org/
  30. for details and links to the source code
  31. WITH_TIFF CMake option must be ON to add libtiff & zlib support to imgcodecs.
  32. ------------------------------------------------------------------------------------
  33. zlib General purpose LZ77 compression library
  34. Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler.
  35. See zlib home page http://www.zlib.net
  36. for details and links to the source code
  37. ------------------------------------------------------------------------------------
  38. jasper JasPer is a collection of software
  39. (i.e., a library and application programs) for the coding
  40. and manipulation of images. This software can handle image data in a
  41. variety of formats. One such format supported by JasPer is the JPEG-2000
  42. format defined in ISO/IEC 15444-1.
  43. Copyright (c) 1999-2000 Image Power, Inc.
  44. Copyright (c) 1999-2000 The University of British Columbia
  45. Copyright (c) 2001-2003 Michael David Adams
  46. See JasPer official GitHub repository
  47. https://github.com/jasper-software/jasper.git
  48. for details and links to source code
  49. ------------------------------------------------------------------------------------
  50. openexr OpenEXR is a high dynamic-range (HDR) image file format developed
  51. by Industrial Light & Magic for use in computer imaging applications.
  52. Copyright (c) 2006, Industrial Light & Magic, a division of Lucasfilm
  53. Entertainment Company Ltd. Portions contributed and copyright held by
  54. others as indicated. All rights reserved.
  55. The project homepage: http://www.openexr.com
  56. ------------------------------------------------------------------------------------
  57. ffmpeg FFmpeg is a complete, cross-platform solution to record,
  58. convert and stream audio and video. It includes libavcodec -
  59. the leading audio/video codec library, and also libavformat, libavutils and
  60. other helper libraries that are used by OpenCV (in videoio module) to
  61. read and write video files.
  62. Copyright (c) 2001 Fabrice Bellard
  63. The project homepage: http://ffmpeg.org/.
  64. * On Linux/OSX we link user-installed ffmpeg (or ffmpeg fork libav).
  65. * On Windows we use pre-built ffmpeg binaries,
  66. see opencv/3rdparty/ffmpeg/readme.txt for details and licensing information
  67. ------------------------------------------------------------------------------------