readme.txt 5.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. SIMD instructions are enabled by default. Use ENABLE_LIBJPEG_TURBO_SIMD to control SIMD instructions.
  20. ------------------------------------------------------------------------------------
  21. libpng Portable Network Graphics library.
  22. The license and copyright notes can be found in libpng/LICENSE.
  23. See libpng home page http://www.libpng.org
  24. for details and links to the source code
  25. WITH_PNG CMake option must be ON to add libpng support to imgcodecs.
  26. libspng Portable Network Graphics library.
  27. The license and copyright notes can be found in libspng/LICENSE.
  28. See libspng home page https://www.libspng.org
  29. for details and links to the source code
  30. WITH_SPNG CMake option must be ON to add libspng support to imgcodecs
  31. ------------------------------------------------------------------------------------
  32. libtiff Tag Image File Format (TIFF) Software
  33. Copyright (c) 1988-1997 Sam Leffler
  34. Copyright (c) 1991-1997 Silicon Graphics, Inc.
  35. See libtiff home page http://www.libtiff.org/
  36. for details and links to the source code
  37. WITH_TIFF CMake option must be ON to add libtiff & zlib support to imgcodecs.
  38. ------------------------------------------------------------------------------------
  39. zlib General purpose LZ77 compression library
  40. Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler.
  41. See zlib home page http://www.zlib.net
  42. for details and links to the source code
  43. ------------------------------------------------------------------------------------
  44. jasper JasPer is a collection of software
  45. (i.e., a library and application programs) for the coding
  46. and manipulation of images. This software can handle image data in a
  47. variety of formats. One such format supported by JasPer is the JPEG-2000
  48. format defined in ISO/IEC 15444-1.
  49. Copyright (c) 1999-2000 Image Power, Inc.
  50. Copyright (c) 1999-2000 The University of British Columbia
  51. Copyright (c) 2001-2003 Michael David Adams
  52. See JasPer official GitHub repository
  53. https://github.com/jasper-software/jasper.git
  54. for details and links to source code
  55. ------------------------------------------------------------------------------------
  56. openexr OpenEXR is a high dynamic-range (HDR) image file format developed
  57. by Industrial Light & Magic for use in computer imaging applications.
  58. Copyright (c) 2006, Industrial Light & Magic, a division of Lucasfilm
  59. Entertainment Company Ltd. Portions contributed and copyright held by
  60. others as indicated. All rights reserved.
  61. The project homepage: http://www.openexr.com
  62. ------------------------------------------------------------------------------------
  63. ffmpeg FFmpeg is a complete, cross-platform solution to record,
  64. convert and stream audio and video. It includes libavcodec -
  65. the leading audio/video codec library, and also libavformat, libavutils and
  66. other helper libraries that are used by OpenCV (in videoio module) to
  67. read and write video files.
  68. Copyright (c) 2001 Fabrice Bellard
  69. The project homepage: http://ffmpeg.org/.
  70. * On Linux/OSX we link user-installed ffmpeg (or ffmpeg fork libav).
  71. * On Windows we use pre-built ffmpeg binaries,
  72. see opencv/3rdparty/ffmpeg/readme.txt for details and licensing information
  73. ------------------------------------------------------------------------------------