diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/gil/example/README.md | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/gil/example/README.md')
-rw-r--r-- | src/boost/libs/gil/example/README.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/boost/libs/gil/example/README.md b/src/boost/libs/gil/example/README.md new file mode 100644 index 000000000..cee177088 --- /dev/null +++ b/src/boost/libs/gil/example/README.md @@ -0,0 +1,45 @@ +# Boost.GIL Examples + +This directory contains + +- examples of C++ programs using GIL +- configuration files for Boost.Build command line and CMake integration for popular IDEs. + +We provide Boost.Build (`Jamfile`) and CMake (`CMakeLists.txt`) +configurations to build the examples. +See the [CONTRIBUTING.md](../CONTRIBUTING.md) +for details on how to run `b2` and `cmake` for Boost.GIL. + +Each example is build as a separate executable. +Each executable generates its output as `out-<example_name>.jpg`. +For example, the `resize.cpp` example generates the image `out-resize.jpg`. + +The following C++ examples are included: + +1. `resize.cpp` + Scales an image using bilinear or nearest-neighbour resampling. + +2. `affine.cpp` + Performs an arbitrary affine transformation on the image. + +3. `convolution.cpp` + Convolves the image with a Gaussian kernel. + +4. `mandelbrot.cpp` + Creates a synthetic image defining the Mandelbrot set. + +5. `interleaved_ptr.cpp` + Illustrates how to create a custom pixel reference and iterator. + Creates a GIL image view over user-supplied data without the need to cast to GIL pixel type. + +6. `x_gradient.cpp` + Horizontal gradient, from the tutorial + +7. `histogram.cpp` + Algorithm to compute the histogram of an image + +8. `packed_pixel.cpp` + Illustrates how to create a custom pixel model - a pixel whose channel size is not divisible by bytes. + +9. `dynamic_image.cpp` + Example of using images whose type is instantiated at run time. |