2014-10-31 21:09:24 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
|
|
]>
|
2014-11-05 15:56:59 +01:00
|
|
|
<!-- vim: set ts=2 sw=2 expandtab: -->
|
2014-10-31 21:09:24 +01:00
|
|
|
<refentry id="using-from-python">
|
|
|
|
<refmeta>
|
|
|
|
<refentrytitle>VIPS from Python</refentrytitle>
|
|
|
|
<manvolnum>3</manvolnum>
|
|
|
|
<refmiscinfo>VIPS Library</refmiscinfo>
|
|
|
|
</refmeta>
|
|
|
|
|
|
|
|
<refnamediv>
|
|
|
|
<refname>Using VIPS</refname>
|
|
|
|
<refpurpose>How to use the VIPS library from Python</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<refsect1 id="python-intro">
|
|
|
|
<title>Introduction</title>
|
2014-10-31 21:09:24 +01:00
|
|
|
<para>
|
2014-11-04 10:13:36 +01:00
|
|
|
VIPS comes with a convenient, high-level Python API based
|
|
|
|
on <code>gobject-introspection</code>. As long as you can get GOI
|
2014-11-05 15:56:59 +01:00
|
|
|
for your platform, you should be able to use vips. The
|
|
|
|
<code>Vips.py</code> file
|
2014-11-04 10:13:36 +01:00
|
|
|
needs to be copied to the overrides directory of your GOI install,
|
2014-11-05 15:56:59 +01:00
|
|
|
and you need to have the vips typelib on your
|
2014-11-13 23:01:42 +01:00
|
|
|
<code>GI_TYPELIB_PATH</code>. This may already have happened, depending
|
|
|
|
on your platform.
|
2014-10-31 21:09:24 +01:00
|
|
|
</para>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<para>
|
2014-10-31 21:09:24 +01:00
|
|
|
<programlisting language="Python">
|
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from gi.repository import Vips
|
|
|
|
|
2014-11-04 10:13:36 +01:00
|
|
|
im = Vips.Image.new_from_file(sys.argv[1])
|
2014-10-31 21:09:24 +01:00
|
|
|
|
2014-11-06 15:57:44 +01:00
|
|
|
im = im.extract_area(100, 100, im.width - 200, im.height - 200)
|
|
|
|
im = im.similarity(scale = 0.9)
|
2014-11-04 10:13:36 +01:00
|
|
|
mask = Vips.Image.new_from_array([[-1, -1, -1],
|
2014-11-13 23:01:42 +01:00
|
|
|
[-1, 16, -1],
|
2014-11-04 10:13:36 +01:00
|
|
|
[-1, -1, -1]], scale = 8)
|
|
|
|
im = im.conv(mask)
|
2014-10-31 21:09:24 +01:00
|
|
|
|
2014-11-04 10:13:36 +01:00
|
|
|
im.write_to_file(sys.argv[2])
|
2014-10-31 21:09:24 +01:00
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
Reading this example, the first line loads the input file. You can append
|
2014-11-06 15:57:44 +01:00
|
|
|
load options to the argument list as keyword arguments, for example:
|
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
im = Vips.Image.new_from_file(sys.argv[1], access = Vips.Access.SEQUENTIAL)
|
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
See the various loaders for a list of the available options
|
|
|
|
for each file format. The C equivalent to this function,
|
|
|
|
vips_image_new_from_file(), has more extensive documentation. Try
|
|
|
|
<code>help(Vips.Image)</code> to see a list of all the image
|
|
|
|
constructors --- you can load from memory, or create from an array,
|
|
|
|
for example.
|
2014-11-05 15:56:59 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2014-11-14 11:07:04 +01:00
|
|
|
The next line crops 100 pixels off every edge. Try
|
|
|
|
<code>help(im.extract_area)</code> and the C API docs for
|
|
|
|
vips_extract_area() for details. You can use <code>.crop()</code> as a
|
|
|
|
synonym, if you like. <code>im.width</code> gets the image width in
|
|
|
|
pixels, see <code>help(Vips.Image)</code> and vips_image_get_width()
|
|
|
|
and friends for a list of the other getters.
|
2014-11-04 10:13:36 +01:00
|
|
|
</para>
|
|
|
|
|
2014-11-06 15:57:44 +01:00
|
|
|
<para>
|
2014-11-14 11:07:04 +01:00
|
|
|
The <code>similarity</code> line shrinks by 10%. By default it uses
|
|
|
|
bilinear interpolation, use <code>interpolate</code> to pick another
|
2014-11-06 15:57:44 +01:00
|
|
|
interpolator, for example:
|
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
im = im.similarity(scale = 0.9, interpolate = Vips.Interpolate.new("bicubic"))
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
<code>.new_from_array()</code> makes an image from a 2D array. The
|
|
|
|
<code>scale</code> keyword argument lets you set a divisor for
|
|
|
|
convolution, handy for integer convolutions. You can set
|
|
|
|
<code>offset</code> as well. See vips_conv() for details on the vips
|
|
|
|
convolution operator.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Finally, <code>.write_to_file()</code> sends the image back to the
|
|
|
|
filesystem. There's also <code>.write_to_buffer()</code> to make a
|
2014-11-16 13:57:27 +01:00
|
|
|
string containing the formatted image, and <code>.write()</code> to
|
|
|
|
write to another image.
|
2014-11-06 15:57:44 +01:00
|
|
|
</para>
|
2014-10-31 21:09:24 +01:00
|
|
|
</refsect1>
|
2014-11-04 10:13:36 +01:00
|
|
|
|
|
|
|
<refsect1 id="python-basics">
|
2014-11-16 12:07:42 +01:00
|
|
|
<title><code>pyvips8</code> basics</title>
|
2014-11-04 10:13:36 +01:00
|
|
|
<para>
|
2014-11-06 15:57:44 +01:00
|
|
|
The Python interface comes in two main parts. First, the C source code
|
|
|
|
to libvips has been marked up with special comments describing the
|
2014-11-13 23:01:42 +01:00
|
|
|
interface in a standard way. These comments are read by
|
2014-11-06 15:57:44 +01:00
|
|
|
gobject-introspection when libvips is compiled and used to generate a
|
2014-11-13 23:01:42 +01:00
|
|
|
typelib, a description of how to call the library. When your Python
|
2014-11-06 15:57:44 +01:00
|
|
|
program starts, the import line:
|
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
from gi.repository import Vips
|
|
|
|
</programlisting>
|
|
|
|
|
|
|
|
loads the typelib and creates Python classes for all the objects and
|
|
|
|
all the functions in the library. You can then call these functions
|
|
|
|
from your code, and they will call into libvips for you. C functions
|
|
|
|
become Python functions in an obvious way: vips_operation_new(),
|
|
|
|
for example, the constructor for the class #VipsOperation, becomes
|
2014-11-14 11:07:04 +01:00
|
|
|
<code>Vips.Operation.new()</code>. See the C API docs for details.
|
2014-11-06 15:57:44 +01:00
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Using libvips like this is possible, but a bit painful. To make the API
|
2014-11-14 11:07:04 +01:00
|
|
|
seem more pythonesque, vips includes a set of overrides which form a
|
|
|
|
layer over the bare functions created by gobject-introspection.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2014-11-06 15:57:44 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<refsect1 id="python-wrapping">
|
|
|
|
<title>Automatic wrapping</title>
|
|
|
|
<para>
|
|
|
|
The overrides intercept member lookup
|
|
|
|
on the <code>Vips.Image</code> class and look for vips operations
|
|
|
|
with that name. So the vips operation "add", which appears in the
|
|
|
|
C API as vips_add(), appears in Python as
|
|
|
|
<code>image.add()</code>.
|
|
|
|
</para>
|
2014-11-13 23:01:42 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<para>
|
|
|
|
The first input image argument becomes the <code>self</code>
|
|
|
|
argument. If there are no input image arguments, the operation
|
|
|
|
appears as a class member. Optional input arguments become
|
|
|
|
keyword arguments. The result is a list of all the output
|
|
|
|
arguments, or a single output if there is only one.
|
|
|
|
</para>
|
2014-11-07 15:49:18 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<para>
|
|
|
|
Optional output arguments are enabled with a boolean keyword
|
|
|
|
argument of that name. For example, "min" (the operation which
|
|
|
|
appears in the C API as vips_min()), can be called like this:
|
2014-11-06 15:57:44 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<programlisting language="Python">
|
|
|
|
min_value = im.min()
|
|
|
|
</programlisting>
|
2014-11-13 23:01:42 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
and <code>min_value</code> will be a floating point value giving
|
|
|
|
the minimum value in the image. "min" can also find the position
|
|
|
|
of the minimum value with the <code>x</code> and <code>y</code>
|
|
|
|
optional output arguments. Call it like this:
|
2014-11-13 23:01:42 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
2014-11-14 11:07:04 +01:00
|
|
|
min_value, x_pos, y_pos = im.min(x = True, y = True)
|
2014-11-13 23:01:42 +01:00
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
Although in this case, the <code>.minpos()</code> convenience
|
|
|
|
function would be simpler.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
Because operations are member functions and return the result image,
|
|
|
|
you can chain them. For example, you can write:
|
2014-11-06 15:57:44 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
2014-11-14 11:07:04 +01:00
|
|
|
result_image = image.sin().pow(2)
|
2014-11-06 15:57:44 +01:00
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
to calculate the square of the sine for each pixel. There is also a
|
|
|
|
full set of arithmetic operator overloads, see below.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
VIPS types are also automatically wrapped. The override looks
|
|
|
|
at the type of argument required by the operation and converts
|
|
|
|
the value you supply, when it can. For example, "linear" takes a
|
|
|
|
#VipsArrayDouble as an argument for the set of constants to use for
|
|
|
|
multiplication. You can supply this value as an integer, a float,
|
|
|
|
or some kind of compound object and it will be converted for you.
|
|
|
|
You can write:
|
2014-11-06 15:57:44 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
2014-11-14 11:07:04 +01:00
|
|
|
result_image = image.linear(1, 3)
|
|
|
|
result_image = image.linear(12.4, 13.9)
|
|
|
|
result_image = image.linear([1, 2, 3], [4, 5, 6])
|
|
|
|
result_image = image.linear(1, [4, 5, 6])
|
2014-11-06 15:57:44 +01:00
|
|
|
</programlisting>
|
2014-11-13 23:01:42 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
And so on. A set of overloads are defined for <code>.linear()</code>,
|
|
|
|
see below.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
It does a couple of more ambitious conversions. It will
|
|
|
|
automatically convert to and from the various vips types,
|
|
|
|
like #VipsBlob and #VipsArrayImage. For example, you can read the
|
|
|
|
ICC profile out of an image like this:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
profile = im.get_value("icc-profile-data")
|
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
and <code>profile</code> will be a string.
|
|
|
|
</para>
|
2014-11-07 15:49:18 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<para>
|
|
|
|
If an operation takes several input images, you can use a constant
|
|
|
|
for all but one of them and the wrapper will expand the constant
|
|
|
|
to an image for you. For example, <code>.ifthenelse()</code> uses
|
|
|
|
a condition image to pick pixels between a then and an else image:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
result_image = condition_image.ifthenelse(then_image, else_image)
|
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
You can use a constant instead of either the then or the else
|
|
|
|
parts, and it will be expanded to an image for you. If you use a
|
|
|
|
constant for both then and else, it will be expanded to match the
|
|
|
|
condition image. For example:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
result_image = condition_image.ifthenelse([0, 255, 0], [255, 0, 0])
|
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
Will make an image where true pixels are green and false pixels
|
|
|
|
are red.
|
|
|
|
</para>
|
2014-11-07 15:49:18 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<para>
|
|
|
|
This is useful for <code>.bandjoin()</code>, the thing to join
|
|
|
|
two or more images up bandwise. You can write:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
rgba = rgb.bandjoin(255)
|
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
to add a constant 255 band to an image, perhaps to add an alpha
|
|
|
|
channel. Of course you can also write:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
result_image = image1.bandjoin(image2)
|
|
|
|
result_image = image1.bandjoin([image2, image3])
|
|
|
|
result_image = Vips.Image.bandjoin([image1, image2, image3])
|
|
|
|
result_image = image1.bandjoin([image2, 255])
|
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
and so on.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id="python-doc">
|
|
|
|
<title>Automatic docstrings</title>
|
|
|
|
<para>
|
|
|
|
Try <code>help(Vips)</code> for everything,
|
|
|
|
<code>help(Vips.Image)</code> for something slightly more digestible, or
|
|
|
|
something like <code>help(Vips.Image.black)</code> for help on a
|
|
|
|
specific class member.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
You can't get help on dynamically bound member functions like
|
|
|
|
<code>.add()</code> this way. Instead, make an image and get help
|
|
|
|
from that, for example:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
2014-11-14 11:07:04 +01:00
|
|
|
image = Vips.Image.new_from_file("x.jpg")
|
|
|
|
help(image.add)
|
2014-11-07 15:49:18 +01:00
|
|
|
</programlisting>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
And you'll get a summary of the operator's behaviour and how the
|
|
|
|
arguments are represented in Python. Use the C API docs for more detail.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id="python-exceptions">
|
|
|
|
<title>Exceptions</title>
|
|
|
|
<para>
|
|
|
|
The wrapper spots errors from vips operations and raises the
|
|
|
|
<code>Vips.Error</code> exception. You can catch it in the
|
|
|
|
usual way. The <code>.detail</code> member gives the detailed
|
|
|
|
error message.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2014-11-16 12:07:42 +01:00
|
|
|
<refsect1 id="python-modify">
|
|
|
|
<title>Draw operations</title>
|
|
|
|
<para>
|
|
|
|
Paint operations like <code>draw_circle</code> and <code>draw_line</code>
|
|
|
|
modify their input image. This makes them hard to use with the rest of
|
|
|
|
libvips: you need to be very careful about the order in which operations
|
|
|
|
execute or you can get nasty crashes.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
The wrapper spots operations of this type and makes a private copy of
|
|
|
|
the image in memory before calling the operation. This stops crashes,
|
|
|
|
but it does make it inefficient. If you draw 100 lines on an image,
|
|
|
|
for example, you'll copy the image 100 times. The wrapper does make sure
|
|
|
|
that memory is recycled where possible, so you won't have 100 copies in
|
|
|
|
memory. At least you can execute these operations.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
|
|
|
If you want to avoid the copies, you'll need to call drawing
|
|
|
|
operations yourself.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<refsect1 id="python-overloads">
|
|
|
|
<title>Overloads</title>
|
|
|
|
<para>
|
|
|
|
The wrapper defines the usual set of arithmetic, boolean and
|
|
|
|
relational overloads on
|
|
|
|
<code>image</code>. You can mix images, constants and lists of
|
|
|
|
constants (almost) freely. For example, you can write:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
|
|
|
<programlisting language="Python">
|
2014-11-14 11:07:04 +01:00
|
|
|
result_image = ((image * [1, 2, 3]).abs() < 128) | 4
|
|
|
|
</programlisting>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id="python-expansions">
|
|
|
|
<title>Expansions</title>
|
|
|
|
<para>
|
|
|
|
Some vips operators take an enum to select an action, for example
|
|
|
|
<code>.math()</code> can be used to calculate sine of every pixel
|
|
|
|
like this:
|
|
|
|
|
|
|
|
<programlisting language="Python">
|
|
|
|
result_image = image.math(Vips.OperationMath.SIN)
|
2014-11-07 15:49:18 +01:00
|
|
|
</programlisting>
|
2014-11-13 23:01:42 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
This is annoying, so the wrapper expands all these enums into
|
|
|
|
separate members named after the enum. So you can write:
|
2014-11-07 15:49:18 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<programlisting language="Python">
|
|
|
|
result_image = image.sin()
|
|
|
|
</programlisting>
|
2014-11-07 15:49:18 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
See <code>help(Vips.Image)</code> for a list.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
2014-11-07 15:49:18 +01:00
|
|
|
|
2014-11-14 11:07:04 +01:00
|
|
|
<refsect1 id="python-utility">
|
|
|
|
<title>Convenience functions</title>
|
|
|
|
<para>
|
|
|
|
The wrapper defines a few extra useful utility functions:
|
|
|
|
<code>.get_value()</code>, <code>.set_value()</code>
|
|
|
|
<code>.bandsplit()</code>, <code>.maxpos()</code>
|
|
|
|
<code>.minpos()</code>.
|
|
|
|
Again, see <code>help(Vips.Image)</code> for a list.
|
2014-11-04 10:13:36 +01:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2014-10-31 21:09:24 +01:00
|
|
|
</refentry>
|