Python Bindings¶
Overview¶
OpenImageIO provides Python language bindings for much of its functionality.
You must ensure that the environment variable PYTHONPATH includes the
python subdirectory of the OpenImageIO installation.
A Python program must import the OpenImageIO package:
import OpenImageIO
In most of our examples below, we assume that for the sake of brevity, we will alias the package name as follows:
import OpenImageIO as oiio
from OpenImageIO import ImageInput, ImageOutput
from OpenImageIO import ImageBuf, ImageSpec, ImageBufAlgo
TypeDesc¶
The TypeDesc class that describes data types of pixels and metadata,
described in detail in Section Data Type Descriptions: TypeDesc, is replicated for Python.
- class BASETYPE¶
The
BASETYPEenum corresponds to the C++TypeDesc::BASETYPEand contains the following values:UNKNOWN NONE UINT8 INT8 UINT16 INT16 UINT32 INT32 UINT64 INT64 HALF FLOAT DOUBLE STRING PTR
These names are also exported to the
OpenImageIOnamespace.
- class AGGREGATE¶
The
AGGREGATEenum corresponds to the C++TypeDesc::AGGREGATEand contains the following values:SCALAR VEC2 VEC3 VEC4 MATRIX33 MATRIX44
These names are also exported to the
OpenImageIOnamespace.
- class VECSEMANTICS¶
The
VECSEMANTICSenum corresponds to the C++TypeDesc::VECSEMANTICSand contains the following values:NOSEMANTICS COLOR POINT VECTOR NORMAL TIMECODE KEYCODE RATIONAL
These names are also exported to the
OpenImageIOnamespace.
- TypeDesc.TypeDesc(typename='unknown')¶
Construct a
TypeDescobject the easy way: from a string description. If the type name is omitted, it will default to`UNKNOWN`.Example:
import OpenImageIO as oiio # make a default (UNKNOWN) TypeDesc t = TypeDesc() # make a TypeDesc describing an unsigned 8 bit int t = TypeDesc("uint8") # make a TypeDesc describing an array of 14 'float' values t = TypeDesc("float[14]") # make a TypeDesc describing 3-vector with point semantics t = TypeDesc("point")
- TypeDesc.TypeDesc(basetype=oiio.UNKNOWN, aggregate=oiio.SCALAR, vecsemantics=NOSEMANTICS, arraylen=0)¶
Construct a
TypeDescobject the hard way: from individual enum tokens describing the base type, aggregate class, semantic hints, and array length.Example:
import OpenImageIO as oiio # make a default (UNKNOWN) TypeDesc t = TypeDesc() # make a TypeDesc describing an unsigned 8 bit int t = TypeDesc(oiio.UINT8) # make a TypeDesc describing an array of 14 'float' values t = TypeDesc(oiio.FLOAT, oiio.SCALAR, oiio.NOSEMANTICS, 14) # make a TypeDesc describing a float point t = TypeDesc(oiio.FLOAT, oiio.VEC3, oiio.POINT)
- TypeUnknown TypeString TypeFloat TypeHalf
- TypeInt TypeUInt TypeInt16 TypeUInt16
- TypeColor TypePoint TypeVector TypeNormal
- TypeFloat2 TypeVector2 TypeFloat4
- TypeVector2i TypeVector3i
- TypeMatrix TypeMatrix33
- TypeTimeCode TypeKeyCode TypeRational TypeURational
- TypePointer¶
Pre-constructed
TypeDescobjects for some common types, available in the outer OpenImageIO scope.Example:
t = TypeFloat
- str(typedesc)¶
Returns a string that describes the
TypeDesc.Example:
print (str(TypeDesc(oiio.UINT16))) > int16
- TypeDesc.basetype¶
- TypeDesc.aggregate¶
- TypeDesc.vecsemantics¶
- TypeDesc.arraylen¶
Access to the raw fields in the
TypeDesc.Example:
t = TypeDesc(...) if t.basetype == oiio.FLOAT : print ("It's made of floats")
- int TypeDesc.size ()
- int TypeDesc.basesize ()
- TypeDesc TypeDesc.elementtype ()
- int TypeDesc.numelements ()
- int TypeDesc.elementsize ()
The
size()is the size in bytes, of the type described. Thebasesize()is the size in bytes of theBASETYPE.The
elementtype()is the type of each array element, if it is an array, or just the full type if it is not an array. Theelementsize()is the size, in bytes, of theelementtype(thus, returning the same value assize()if the type is not an array). Thenumelements()method returnsarraylenif it is an array, or 1 if it is not an array.Example:
t = TypeDesc("point[2]") print ("size =", t.size()) print ("elementtype =", t.elementtype()) print ("elementsize =", t.elementsize()) > size = 24 > elementtype = point > elementsize = 12
- typedesc == typedesc
- typedesc != typedesc
- TypeDesc.equivalent(typedesc)¶
Test for equality or inequality. The
equivalent()method is more forgiving than==, in that it considersPOINT,VECTOR, andNORMALvector semantics to not constitute a difference from one another.Example:
f = TypeDesc("float") p = TypeDesc("point") v = TypeDesc("vector") print ("float==point?", (f == p)) print ("vector==point?", (v == p)) print ("float.equivalent(point)?", f.equivalent(p)) print ("vector.equivalent(point)?", v.equivalent(p)) > float==point? False > vector==point? False > float.equivalent(point)? False > vector.equivalent(point)? True
ROI¶
The ROI class that describes an image extent or region of interest, explained in detail in Section Rectangular region of interest: ROI, is replicated for Python.
- ROI()¶
- ROI(xbegin, xend, ybegin, yend, zbegin=0, zend=1, chbegin=0, chend=1000)
Construct an ROI with the given bounds. The constructor with no arguments makes an ROI that is “undefined.”
Example:
roi = ROI (0, 640, 0, 480, 0, 1, 0, 4) # video res RGBA
- ROI.xbegin¶
- ROI.xend¶
- ROI.ybegin¶
- ROI.yend¶
- ROI.zbegin¶
- ROI.zend¶
- ROI.chbegin¶
- ROI.chend¶
The basic fields of the ROI (all of type
int).
- ROI.All¶
A pre-constructed undefined ROI understood to mean unlimited ROI on an image.
- ROI.defined¶
Trueif the ROI is defined,Falseif the ROI is undefined.
- ROI.width¶
- ROI.height¶
- ROI.depth¶
- ROI.nchannels¶
The number of pixels in each dimension, and the number of channels, as described by the ROI. (All of type
int.)
- int ROI.npixels
The total number of pixels in the region described by the ROI (as an
int).
- ROI.contains(x, y, z=0, ch=0)¶
Returns
Trueif the ROI contains the coordinate.
- ROI.contains(other)¶
Returns
Trueif the ROIotheris entirel contained within this ROI.
- ROI get_roi (imagespec)
- ROI get_roi_full (imagespec)
Returns an ROI corresponding to the pixel data window of the given ImageSpec, or the display/full window, respectively.
Example:
spec = ImageSpec(...) roi = oiio.get_roi(spec)
- set_roi(imagespec, roi)¶
- set_roi_full(imagespec, roi)¶
Alter the ImageSpec’s resolution and offset to match the passed ROI.
Example:
# spec is an ImageSpec # The following sets the full (display) window to be equal to the # pixel data window: oiio.set_roi_full (spec, oiio.get_roi(spec))
ImageSpec¶
The ImageSpec class that describes an image, explained in detail in Section Image Specification: ImageSpec, is replicated for Python.
- ImageSpec()¶
- ImageSpec(typedesc)
- ImageSpec(xres, yres, nchannels, typedesc)
- ImageSpec(roi, typedesc)
Constructors of an ImageSpec. These correspond directly to the constructors in the C++ bindings.
Example:
import OpenImageIO as oiio ... # default ctr s = ImageSpec() # construct with known pixel type, unknown resolution s = ImageSpec(oiio.UINT8) # construct with known resolution, channels, pixel data type s = ImageSpec(640, 480, 4, "half") # construct from an ROI s = ImageSpec (ROI(0,640,0,480,0,1,0,3), TypeFloat)
- ImageSpec.width, ImageSpec.height, ImageSpec.depth
- ImageSpec.x, ImageSpec.y, ImageSpec.z
Resolution and offset of the image data (
intvalues).Example:
s = ImageSpec (...) print ("Data window is ({},{})-({},{})".format (s.x, s.x+s.width-1, s.y, s.y+s.height-1))
- ImageSpec.full_width, ImageSpec.full_height, ImageSpec.full_depth
- ImageSpec.full_x, ImageSpec.full_y, ImageSpec.full_z
Resolution and offset of the “full” display window (
intvalues).
- ImageSpec.tile_width, ImageSpec.tile_height, ImageSpec.tile_depth
For tiled images, the resolution of the tiles (
intvalues). Will be 0 for untiled images.
- ImageSpec.format¶
A
TypeDescdescribing the pixel data.
- ImageSpec.nchannels¶
An
intgiving the number of color channels in the image.
- ImageSpec.channelnames¶
A tuple of strings containing the names of each color channel.
- ImageSpec.channelformats¶
If all color channels have the same format, that will be
ImageSpec.format, andchannelformatswill beNone. However, if there are different formats per channel, they will be stored inchannelformatsas a tuple ofTypeDescobjects.Example:
if spec.channelformats == None: print ("All color channels are", str(spec.format)) else: print ("Channel formats: ") for t in spec.channelformats: print ("\t", t)
- ImageSpec.alpha_channel¶
- ImageSpec.z_channel¶
The channel index containing the alpha or depth channel, respectively, or -1 if either one does not exist or cannot be identified.
- ImageSpec.deep¶
Trueif the image is a deep (multiple samples per pixel) image, ofFalseif it is an ordinary image.
- ImageSpec.extra_attribs¶
Direct access to the
extra_attribsnamed metadata, appropriate for iterating over the entire list rather than searching for a particular named value.len(extra_attribs): Returns the number of extra attributes.extra_attribs[i].name: The name of the indexed attribute.extra_attribs[i].type: The type of the indexed attribute, as aTypeDesc.extra_attribs[i].value: The value of the indexed attribute.
Example:
s = ImageSpec(...) ... print ("extra_attribs size is", len(s.extra_attribs)) for i in range(len(s.extra_attribs)) : print (i, s.extra_attribs[i].name, str(s.extra_attribs[i].type), " :") print ("\t", s.extra_attribs[i].value) print ()
- Imagespec.roi¶
The ROI describing the pixel data window.
- ImageSpec.roi_full¶
The ROI describing the “display window” (or “full size”).
- ImageSpec.set_format(typedesc)¶
Given a
TypeDesc, sets theformatfield and clear any per-channel formats inchannelformats.Example:
s = ImageSpec () s.set_format (TypeDesc("uint8"))
- ImageSpec.default_channel_names()¶
Sets
channel_namesto the default names given the value of thenchannelsfield.
- ImageSpec.channelindex(name)¶
Return (as an int) the index of the channel with the given name, or -1 if it does not exist.
- ImageSpec.channel_bytes()¶
ImageSpec.channel_bytes (channel, native=False)} Returns the size of a single channel value, in bytes (as an
int). (Analogous to the C++ member functions, see Section Image Specification: ImageSpec for details.)
- ImageSpec.pixel_bytes()¶
- ImageSpec.pixel_bytes(native=False)
- ImageSpec.pixel_bytes(chbegin, chend, native=False)
Returns the size of a pixel, in bytes (as an
int). (Analogous to the C++ member functions, see Section Image Specification: ImageSpec for details.)
- ImageSpec.scanline_bytes(native=False)¶
- ImageSpec.tile_bytes(native=False)¶
- ImageSpec.image_bytes(native=False)¶
Returns the size of a scanline, tile, or the full image, in bytes (as an
int). (Analogous to the C++ member functions, see Section Image Specification: ImageSpec for details.)
- ImageSpec.tile_pixels()¶
- ImageSpec.image_pixels()¶
Returns the number of pixels in a tile or the full image, respectively (as an
int). (Analogous to the C++ member functions, see Section Image Specification: ImageSpec for details.)
- ImageSpec.erase_attribute(name, searchtype=TypeUnknown, casesensitive=False)¶
Remove any specified attributes matching the regular expression
namefrom the list of extra_attribs.
- ImageSpec.attribute(name, int)¶
- ImageSpec.attribute(name, float)
- ImageSpec.attribute(name, string)
- ImageSpec.attribute(name, typedesc, data)
Sets a metadata value in the
extra_attribs. If the metadata item is a singleint,float, orstring, you can pass it directly. For other types, you must pass theTypeDescand then the data (for aggregate types or arrays, pass multiple values as a tuple).Example:
s = ImageSpec (...) s.attribute ("foo_str", "blah") s.attribute ("foo_int", 14) s.attribute ("foo_float", 3.14) s.attribute ("foo_vector", TypeDesc.TypeVector, (1, 0, 11)) s.attribute ("foo_matrix", TypeDesc.TypeMatrix, (1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 1, 2, 3, 1))
- ImageSpec.getattribute(name)¶
- ImageSpec.getattribute(name, typedesc)
Retrieves a named metadata value from
extra_attribs. The genericgetattribute()function returns it regardless of type, orNoneif the attribute does not exist. The typed variety will only succeed if the attribute is actually of that type specified.Example:
foo = s.getattribute ("foo") # None if not found foo = s.getattribute ("foo", oiio.FLOAT) # None if not found AND float
- ImageSpec.get_int_attribute(name, defaultval=0)¶
- ImageSpec.get_float_attribute(name, defaultval=0.0)¶
- ImageSpec.get_string_attribute(name, defaultval='')¶
- ImageSpec.get_bytes_attribute(name, defaultval='')¶
Retrieves a named metadata value from
extra_attribs, if it is found and is of the given type; returns the default value (or a passed value) if not found.For an attribute of type STRING, get_bytes_attribute in Python3 skips decoding the underlying C string as UTF-8 and returns a
bytesobject containing the raw byte string.Example:
# If "foo" is not found, or if it's not an int, return 0 foo = s.get_int_attribute ("foo") # If "foo" is not found, or if it's not a string, return "blah" foo = s.get_string_attribute ("foo", "blah")
- ImageSpec[key]¶
ImageSpec provides a Python
dict-like interface for metadata, in addition toattribute()andgetattribute().The
ImageSpec["key"] = valuenotation can be used to set an attribute (just like callingImageSpec.attribute("key", value)). Also,ImageSpec["key"]can retrieve an attribute if it is present, or raise aKeyErrorexception if not found.Like dictionaries,
'key' in specis True if the attribute is present, anddel spec['key']will remove the attribute.Examples:
# Same as: spec.attribute("Compression", comp) spec["Compression"] = comp # Same as: comp = spec.getattribute("Compression") # if it succeeds, or raises a KeyError if not found. comp = spec["Compression"] # Failed spec["key"] will raise a KeyError try: r = spec["unknown"] except: print("'unknown' key was not found") # "key" in spec is True if the key is present if "Compression" in spec: print("'Compression' metadata is present") # del spec["key"] removes the key del key["Compression"] # ImageSpec.get("key") returns the value, or None if not found comp = spec.get("Compression") # and optionally, a default value may be passed comp = spec.get("Compression", "none")
The basic
["key"]setting and retrieval was added in OpenImageIO in 2.1. The"key" inanddeloperators, and theget()method, were added in OpenImageIO 2.4.
- ImageSpec.metadata_val(paramval, human=False)¶
For a ParamValue, format its value as a string.
- ImageSpec.serialize(format='text', verbose='Detailed')¶
Return a string containing the serialization of the ImageSpec. The
formatmay be either “text” or “XML”. Theverbosemay be one of “brief”, “detailed”, or “detailedhuman”.
- ImageSpec.to_xml()¶
Equivalent to
serialize("xml", "detailedhuman").
- ImageSpec.from_xml(xml)¶
Initializes the ImageSpec from the information in the string
xmlcontaining an XML-serialized ImageSpec.
- ImageSpec.channel_name(chan)¶
Returns a string containing the name of the channel with index
chan.
- ImageSpec.channelindex(name)¶
Return the integer index of the channel with the given
name, or -1 if the name is not a name of one of the channels.
- ImageSpec.channelformat(chan)¶
Returns a
TypeDescof the channel with indexchan.
- ImageSpec.get_channelformats()¶
Returns a tuple containing all the channel formats.
- ImageSpec.valid_tile_range(xbegin, xend, ybegin, yend, zbegin, zend)¶
Returns
Trueif the given tile range exactly covers a set of tiles, orFalseif it isn’t (or if the image is not tiled).
- ImageSpec.copy_dimensions(other)¶
Copies from ImageSpec
otheronly the fields describing the size and data types, but not the arbitrary named metadata or channel names.
- bool ImageSpec.set_colorspace (name)
Set metadata to indicate the presumed color space
name, or clear all such metadata ifnameis the empty string.This function was added in version 2.5.
Example:
spec = ImageSpec(...) spec.set_colorspace ("srgb_rec709_scene")
- ImageSpec.undefined()¶
Returns
Truefor a newly initialized (undefined) ImageSpec.
Example: Header info¶
Here is an illustrative example of the use of ImageSpec, a working Python function that opens a file and prints all the relevant header information:
#!/usr/bin/env python
from OpenImageIO import ImageInput
# Print the contents of an ImageSpec
def print_imagespec (spec: ImageSpec, subimage: int=0, mip: int=0) :
if spec.depth <= 1 :
print (" resolution %dx%d%+d%+d" % (spec.width, spec.height, spec.x, spec.y))
else :
print (" resolution %dx%d%x%d+d%+d%+d" %
(spec.width, spec.height, spec.depth, spec.x, spec.y, spec.z))
if (spec.width != spec.full_width or spec.height != spec.full_height
or spec.depth != spec.full_depth) :
if spec.full_depth <= 1 :
print (" full res %dx%d%+d%+d" %
(spec.full_width, spec.full_height, spec.full_x, spec.full_y))
else :
print (" full res %dx%d%x%d+d%+d%+d" %
(spec.full_width, spec.full_height, spec.full_depth,
spec.full_x, spec.full_y, spec.full_z))
if spec.tile_width :
print (" tile size %dx%dx%d" %
(spec.tile_width, spec.tile_height, spec.tile_depth))
else :
print (" untiled")
if mip >= 1 :
return
print (" " + str(spec.nchannels), "channels:", spec.channelnames)
print (" format = ", str(spec.format))
if len(spec.channelformats) > 0 :
print (" channelformats = ", spec.channelformats)
print (" alpha channel = ", spec.alpha_channel)
print (" z channel = ", spec.z_channel)
print (" deep = ", spec.deep)
for i in spec.extra_attribs :
if type(i.value) == str :
print (" ", i.name, "= \"" + i.value + "\"")
else :
print (" ", i.name, "=", i.value)
def poor_mans_iinfo (filename: str) :
input = ImageInput.open (filename)
if not input :
print ('Could not open "' + filename + '"')
print ("\tError: ", oiio.geterror())
return
print ('Opened "' + filename + '" as a ' + input.format_name())
sub = 0
mip = 0
while True :
if sub > 0 or mip > 0 :
print ("Subimage", sub, "MIP level", mip, ":")
print_imagespec (input.spec(), mip=mip)
mip = mip + 1
if input.seek_subimage (sub, mip) :
continue # proceed to next MIP level
else :
sub = sub + 1
mip = 0
if input.seek_subimage (sub, mip) :
continue # proceed to next subimage
break # no more MIP levels or subimages
input.close ()
DeepData¶
The DeepData class describing “deep” image data (multiple depth sample per pixel), which is explained in detail in Section Reading “deep” data, is replicated for Python.
- DeepData()¶
Constructs a DeepData object. It needs to have its
init()andalloc()methods called before it can hold any meaningful data.
- DeepData.init(npixels, nchannels, channeltypes, channelnames)¶
Initializes this DeepData to hold
npixelstotal pixels, withnchannelscolor channels. The data types of the channels are described bychanneltypes, a tuple ofTypeDescvalues (one per channel), and the names are provided in a tuple ofstring`s `channelnames. After callinginit, you still need to set the number of samples for each pixel (usingset_nsamples) and then callalloc()to actually allocate the sample memory.
- DeepData.initialized()¶
Returns
Trueif the DeepData is initialized at all.
- DeepData.allocated()¶
Returns
Trueif the DeepData has already had pixel memory allocated.
- DeepData.pixels¶
This
intfield contains the total number of pixels in this collection of deep data.
- DeepData.channels¶
This
intfield contains the number of channels.
- DeepData.A_channel¶
- DeepData.AR_channel¶
- DeepData.AG_channel¶
- DeepData.AB_channel¶
- DeepData.Z_channel¶
- DeepData.Zback_channel¶
The channel index of certain named channels, or -1 if they don’t exist. For
AR_channel,AG_channel,AB_channel, if they don’t exist, they will contain the value ofA_channel, andZback_channelwill contain the value ofz_channelif there is no actualZback.
- DeepData.channelname(c)¶
Retrieve the name of channel
C, as astring.
- DeepData.channeltype(c)¶
Retrieve the data type of channel
C, as aTypeDesc.
- DeepData.channelsize(c)¶
Retrieve the size (in bytes) of one datum of channel
C.
- DeepData.samplesize()¶
Retrieve the packed size (in bytes) of all channels of one sample.
- DeepData.same_channeltypes(other)¶
Returns
Trueif this DeepData has the same channel types asother.
- DeepData.set_samples(pixel, nsamples)¶
Set the number of samples for a given pixel (specified by integer index).
- DeepData.samples(pixel)¶
Get the number of samples for a given pixel (specified by integer index).
- DeepData.insert_samples(pixel, samplepos, n)¶
Insert n samples starting at the given position of an indexed pixel.
- DeepData.erase_samples(pixel, samplepos, n)¶
Erase n samples starting at the given position of an indexed pixel.
- DeepData.set_deep_value(pixel, channel, sample, value)¶
Set specific float value of a given pixel, channel, and sample index.
- DeepData.set_deep_value_uint(pixel, channel, sample, value)¶
Set specific unsigned int value of a given pixel, channel, and sample index.
- DeepData.deep_value(pixel, channel, sample, value)¶
Retrieve the specific value of a given pixel, channel, and sample index (for float channels.
- DeepData.deep_value_uint(pixel, channel, sample)¶
Retrieve the specific value of a given pixel, channel, and sample index (for uint channels).
- DeepData.copy_deep_sample(pixel, sample, src, srcpixel, srcsample)¶
Copy a deep sample from DeepData
srcinto this DeepData.
- DeepData.copy_deep_pixel(pixel, src, srcpixel)¶
Copy a deep pixel from DeepData
srcinto this DeepData.
- DeepData.split(pixel, depth)¶
Split any samples of the pixel that cross
depth. ReturnTrueif any splits occurred,Falseif the pixel was unmodified.
- DeepData.sort(pixel)¶
Sort the samples of the pixel by their Z depth.
- DeepData.merge_overlaps(pixel)¶
Merge any adjacent samples in the pixel that exactly overlap in z range. This is only useful if the pixel has previously been split at all sample starts and ends, and sorted by depth.
- DeepData.merge_deep_pixels(pixel, src, srcpixel)¶
Merge the samples of
src’s pixel into this DeepData’s pixel.
- DeepData.occlusion_cull(pixel)¶
Eliminate any samples beyond an opaque sample.
- DeepData.opaque_z(pixel)¶
For the given pixel index. return the z value at which the pixel reaches full opacity.
ImageInput¶
See Chapter ImageInput: Reading Images for detailed explanations of the C++
ImageInput class APIs. The Python APIs are very similar. The biggest
difference is that in C++, the various read_* functions write the pixel
values into an already-allocated array that belongs to the caller, whereas
the Python versions allocate and return an array holding the pixel values
(or None if the read failed).
- ImageInput.open(filename[, config_imagespec])¶
Creates an ImageInput object and opens the named file. Returns the open ImageInput upon success, or
Noneif it failed to open the file (after which,OpenImageIO.geterror()will contain an error message). In the second form, the optional ImageSpec argumentconfigcontains attributes that may set certain options when opening the file.Example:
input = ImageInput.open ("tahoe.jpg") if input == None : print ("Error:", oiio.geterror()) return
- ImageInput.close()¶
Closes an open image file, returning
Trueif successful,Falseotherwise.Example:
input = ImageInput.open (filename) ... input.close ()
- ImageInput.format_name()¶
Returns the format name of the open file, as a string.
Example:
input = ImageInput.open (filename) if input : print (filename, "was a", input.format_name(), "file.") input.close ()
- ImageInput.spec()¶
Returns an ImageSpec corresponding to the currently open subimage and MIP level of the file.
Example:
input = ImageInput.open (filename) spec = input.spec() print ("resolution ", spec.width, "x", spec.height)
- ImageInput.spec(subimage, miplevel=0)¶
Returns a full copy of the ImageSpec corresponding to the designated subimage and MIP level.
- ImageSpec ImageInput.spec_dimensions (subimage, miplevel=0)
Returns a partial copy of the ImageSpec corresponding to the designated subimage and MIP level, only copying the dimension fields and not any of the arbitrary named metadata (and is thus much less expensive).
- ImageInput.current_subimage()¶
Returns the current subimage of the file.
- ImageInput.current_miplevel()¶
Returns the current MIP level of the file.
- ImageInput.seek_subimage(subimage, miplevel)¶
Repositions the file pointer to the given subimage and MIP level within the file (starting with 0). This function returns
Trueupon success,Falseupon failure (which may include the file not having the specified subimage or MIP level).Example:
input = ImageInput.open (filename) mip = 0 while True : ok = input.seek_subimage (0, mip) if not ok : break spec = input.spec() print ("MIP level", mip, "is", spec.width, "x", spec.height)
- ImageInput.read_image(format='float')¶
- ImageInput.read_image(chbegin, chend, format='float')
- ImageInput.read_image(subimage, miplevel, chbegin, chend, format='float')
Read the entire image and return the pixels as a NumPy array of values of the given
format(described by aTypeDescor a string, float by default). If theformatisunknown, the pixels will be returned in the native format of the file. If an error occurs,Nonewill be returned.For a normal (2D) image, the array returned will be 3D indexed as
[y][x][channel]. For 3D volumetric images, the array returned will be 4D with shape indexed as[z][y][x][channel].Example:
input = ImageInput.open (filename) spec = input.spec () pixels = input.read_image () print ("The first pixel is", pixels[0][0]) print ("The second pixel is", pixels[0][1]) input.close ()
- ImageInput.read_scanline(y, z, format='float')¶
Read scanline number
yfrom depth planezfrom the open file, returning the pixels as a NumPy array of values of the giventype(described by aTypeDescor a string, float by default). If thetypeisTypeUnknown, the pixels will be returned in the native format of the file. If an error occurs,Nonewill be returned.The pixel array returned will be a 2D
ndarray, indexed as[x][channel].Example:
input = ImageInput.open (filename) spec = input.spec () if spec.tile_width == 0 : for y in range(spec.y, spec.y+spec.height) : pixels = input.read_scanline (y, spec.z, "float") # process the scanline else : print ("It's a tiled file") input.close ()
- ImageInput.read_tile(x, y, z, format='float')¶
Read the tile whose upper left corner is pixel (x,y,z) from the open file, returning the pixels as a NumPy array of values of the given
type(described by aTypeDescor a string, float by default). If thetypeisTypeUnknown, the pixels will be returned in the native format of the file. If an error occurs,Nonewill be returned.For a normal (2D) image, the array of tile pixels returned will be a 3D
ndarrayindexed as[y][x][channel]. For 3D volumetric images, the array returned will be 4D with shape indexed as[z][y][x][channel].Example:
input = ImageInput.open (filename) spec = input.spec () if spec.tile_width > 0 : for z in range(spec.z, spec.z+spec.depth, spec.tile_depth) : for y in range(spec.y, spec.y+spec.height, spec.tile_height) : for x in range(spec.x, spec.x+spec.width, spec.tile_width) : pixels = input.read_tile (x, y, z, oiio.FLOAT) # process the tile else : print ("It's a scanline file") input.close ()
- ImageInput.read_scanlines(subimage, miplevel, ybegin, yend, z, chbegin, chend, format='float')¶
- ImageInput.read_scanlines(ybegin, yend, z, chbegin, chend, format='float')
- ImageInput.read_tiles(xbegin, xend, ybegin, yend, zbegin, zend, chbegin, chend, format='float')¶
- ImageInput.read_tiles(subimage, miplevel, xbegin, xend, ybegin, yend, zbegin, zend, format='float')
Similar to the C++ routines, these functions read multiple scanlines or tiles at once, which in some cases may be more efficient than reading each scanline or tile separately. Additionally, they allow you to read only a subset of channels.
For normal 2D images, both
read_scanlinesandread_tileswill return a 3D array indexed as[z][y][x][channel].For 3D volumetric images, both
read_scanlineswill return a 3D array indexed as[y][x][channel], andread_tileswill return a 4D array indexed as[z][y][x][channel],Example:
input = ImageInput.open (filename) spec = input.spec () # Read the whole image, the equivalent of # pixels = input.read_image (type) # but do it using read_scanlines or read_tiles: if spec.tile_width == 0 : pixels = input.read_scanlines (spec.y, spec.y+spec.height, 0, 0, spec.nchannels) else : pixels = input.read_tiles (spec.x, spec.x+spec.width, spec.y, spec.y+spec.height, spec.z, spec.z+spec.depth, 0, spec.nchannels)
- ImageInput.read_native_deep_scanlines(subimage, miplevel, ybegin, yend, z, chbegin, chend)¶
- ImageInput.read_native_deep_tiles(subimage, miplevel, xbegin, xend, ybegin, yend, zbegin, zend, chbegin, chend)¶
- ImageInput.read_native_deep_image(subimage=0, miplevel=0)¶
Read a collection of scanlines, tiles, or an entire image of “deep” pixel data from the specified subimage and MIP level. The begin/end coordinates are all integer values. The value returned will be a DeepData if the read succeeds, or
Noneif the read fails.These methods are guaranteed to be thread-safe against simultaneous calls to any of the other other
read_nativecalls that take an explicit subimage/miplevel.
- ImageInput.get_thumbnail(subimage: int = 0) ImageBuf¶
Retrieve an ImageBuf containing reduced-resolution(“thumbnail”) version of the image. If no thumbnail could be retrieved, an empty ImageBuf will be returned.
- ImageInput.geterror(clear=True)¶
Retrieves the error message from the latest failed operation on an ImageInput.
Example:
input = ImageInput.open (filename) if not input : print ("Open error:", oiio.geterror()) # N.B. error on open must be retrieved with the global geterror(), # since there is no ImageInput object! else : pixels = input.read_image (oiio.FLOAT) if not pixels : print ("Read_image error:", input.geterror()) input.close ()
Example: Reading pixel values from a file to find min/max¶
#!/usr/bin/env python
import OpenImageIO as oiio
def find_min_max (filename: str) :
input = ImageInput.open (filename)
if not input :
print ('Could not open "' + filename + '"')
print ("\tError: ", oiio.geterror())
return
spec = input.spec()
nchans = spec.nchannels
pixels = input.read_image()
if not pixels :
print ("Could not read:", input.geterror())
return
input.close() # we're done with the file at this point
minval = pixels[0][0] # initialize to the first pixel value
maxval = pixels[0][0]
for y in range(spec.height) :
for x in range(spec.width) :
p = pixels[y][x]
for c in range(nchans) :
if p[c] < minval[c] :
minval[c] = p[c]
if p[c] > maxval[c] :
maxval[c] = p[c]
print ("Min values per channel were", minval)
print ("Max values per channel were", maxval)
ImageOutput¶
See Chapter ImageOutput: Writing Images for detailed explanations of the C++ ImageOutput class APIs. The Python APIs are very similar.
- ImageOutput.create(name, plugin_searchpath='')¶
Create a new ImageOutput capable of writing the named file format (which may also be a file name, with the type deduced from the extension). There is an optional parameter giving an colon-separated search path for finding ImageOutput plugins. The function returns an ImageOutput object, or
Noneupon error (in which case,OpenImageIO.geterror()may be used to retrieve the error message).Example:
import OpenImageIO as oiio output = ImageOutput.create ("myfile.tif") if not output : print ("Error:", oiio.geterror())
- ImageOutput.format_name()¶
The file format name of a created ImageOutput, as a string.
Example:
output = ImageOutput.create (filename) if output : print ("Created output", filename, "as a", output.format_name()
- ImageOutput.supports(feature)¶
For a created ImageOutput, returns
Trueif the file format supports the named feature (such as “tiles”, “mipmap”, etc., see Section ImageOutput Class Reference for the full list), orFalseif this file format does not support the feature.Example:
output = ImageOutput.create (filename) if output : print (output.format_name(), "supports...") print ("tiles?", output.supports("tiles")) print ("multi-image?", output.supports("multiimage")) print ("MIP maps?", output.supports("mipmap")) print ("per-channel formats?", output.supports("channelformats"))
- ImageOutput.open(filename, spec, mode='Create')¶
Opens the named output file, with an ImageSpec describing the image to be output. The
modemay be one of “Create”, “AppendSubimage”, or “AppendMIPLevel”. See Section ImageOutput Class Reference for details. ReturnsTrueupon success,Falseupon failure (error messages retrieved viaImageOutput.geterror().)- Returns:
Truefor success,Falsefor failure.
Example:
output = ImageOutput.create (filename) if not output : print ("Error:", oiio.geterror()) spec = ImageSpec (640, 480, 3, "uint8") ok = output.open (filename, spec) if not ok : print ("Could not open", filename, ":", output.geterror())
- ImageOutput.open(filename, (imagespec, ...))¶
This variety of
open()is used specifically for multi-subimage files. A tuple of ImageSpec objects is passed, one for each subimage that will be written to the file. After each subimage is written, then a regular call toopen(name, newspec, AppendSubimage)moves on to the next subimage.- Returns:
Truefor success,Falsefor failure.
- ImageOutput.close()¶
Closes an open output.
- Returns:
Truefor success,Falsefor failure.
- ImageOutput.spec()¶
Returns the ImageSpec of the currently-open output image.
- ImageOutput.write_image(pixels)¶
Write the currently opened image all at once. The
pixelsparameter should be a Numpyndarraycontaining data elements indexed as[y][x][channel]for normal 2D images, or for 3D volumetric images, as[z][y][x][channel], in other words, exactly matching the shape of array returned byImageInput.read_image(). (It will also work fine if the array is 1D “flattened” version, as long as it contains the correct total number of values.) The data type is deduced from the contents of the array itself. ReturnsTrueupon success,Falseupon failure.Example:
# This example reads a scanline file, then converts it to tiled # and writes to the same name. input = ImageInput.open (filename) spec = input.spec () pixels = input.read_image () input.close () output = ImageOutput.create (filename) if output.supports("tiles") : spec.tile_width = 64 spec.tile_height = 64 output.open (filename, spec) output.write_image (pixels) output.close ()
- ImageOutput.write_scanline(y, z, pixels)¶
- ImageOutput.write_scanlines(ybegin, yend, z, pixels)¶
Write one or many scanlines to the currently open file. Returns
Trueupon success,Falseupon failure.The
pixelsparameter should be a Numpyndarraycontaining data elements indexed as[x][channel]forwrite_scanlineor as[y][x][channelsforwrite_scanlines, exactly matching the shape returned byImageInput.read_scanlineorImageInput.read_scanlines. (It will also work fine if the array is 1D “flattened” version, as long as it contains the correct total number of values.)Example:
# Copy a TIFF image to JPEG by copying scanline by scanline. input = ImageInput.open ("in.tif") spec = input.spec () output = ImageOutput.create ("out.jpg") output.open (filename, spec) for z in range(spec.z, spec.z+spec.depth) : for y in range(spec.y, spec.y+spec.height) : pixels = input.read_scanline (y, z) output.write_scanline (y, z, pixels) output.close () input.close () # The same example, but copying a whole "plane" of scanlines at a time: ... for z in range(spec.z, spec.z+spec.depth) : pixels = input.read_scanlines (spec.y, spec.y+spec.height, z) output.write_scanlines (spec.y, spec.y+spec.height, z, pixels) ...
- ImageOutput.write_tile(x, y, z, pixels)¶
- ImageOutput.write_tiles(xbegin, xend, ybegin, yend, zbegin, zend, pixels)¶
Write one or many tiles to the currently open file. Returns
Trueupon success,Falseupon failure.The
pixelsparameter should be a Numpyndarraycontaining data elements indexed as[y][x][channel]for normal 2D images, or as[z][y][x][channels3D volumetric images, exactly matching the shape returned byImageInput.read_tileorImageInput.read_tiles. (It will also work fine if the array is 1D “flattened” version, as long as it contains the correct total number of values.)Example:
input = ImageInput.open (in_filename) spec = input.spec () output = ImageOutput.create (out_filename) output.open (out_filename, spec) for z in range(spec.z, spec.z+spec.depth, spec.tile_depth) : for y in range(spec.y, spec.y+spec.height, spec.tile_height) : for x in range(spec.x, spec.x+spec.width, spec.tile_width) : pixels = input.read_tile (x, y, z) output.write_tile (x, y, z, pixels) output.close () input.close () # The same example, but copying a whole row of of tiles at a time: ... for z in range(spec.z, spec.z+spec.depth, spec.tile_depth) : for y in range(spec.y, spec.y+spec.height, spec.tile_height) : pixels = input.read_tiles (spec.x, spec.x+spec.width, y, y+tile_width, z, z+tile_width) output.write_tiles (spec.x, spec.x+spec.width, y, y+tile_width, z, z+tile_width, pixels) ...
- ImageOutput.write_deep_scanlinesa(ybegin, yend, z, deepdata)¶
- ImageOutput.write_deep_tiles(xbegin, xend, ybegin, yend, zbegin, zend, deepdata)¶
- ImageOutput.write_deep_image(deepdata)¶
Write a collection of scanlines, tiles, or an entire image of “deep” pixel data. The begin/end coordinates are all integer values, and
deepdatashould be a DeepData.
- ImageOutput.set_thumbnail(thumb: ImageBuf)¶
Specify a reduced-resolution (“thumbnail”) version of the image, as an ImageBuf. Note that many image formats may require the thumbnail to be specified prior to writing the pixels. Return
Truefor success, orFalseif a thumbnail could not be set.
- ImageOutput.copy_image(imageinput)¶
Copy the current image of the open input to the open output. (The reason this may be preferred in some circumstances is that, if input and output were the same kind of input file format, they may have a special efficient technique to copy pixels unaltered, for example by avoiding the decompression/recompression round trip.)
Example:
input = ImageInput.open (in_filename) spec = input.spec () output = ImageOutput.create (out_filename) output.open (filename, spec) output.copy_image (input) output.close () input.close ()
- ImageOuput.geterror(clear=True)¶
Retrieves the error message from the latest failed operation on an open file.
Example:
output = ImageOutput.create (filename) if not output : print ("Create error:", oiio.geterror()) # N.B. error on create must be retrieved with the global geterror(), # since there is no ImageOutput object! else : ok = output.open (filename, spec) if not ok : print ("Open error:", output.geterror()) ok = output.write_image (pixels) if not ok : print ("Write error:", output.geterror()) output.close ()
ImageBuf¶
See Chapter ImageBuf: Image Buffers for detailed explanations of the C++ ImageBuf class APIs. The Python APIs are very similar.
- ImageBuf()¶
Construct a new, empty ImageBuf. The ImageBuf is uninitialized and is
awaiting a call to reset() or copy() before it is useful.
- ImageBuf(filename[, subimage, miplevel])¶
Construct a read-only ImageBuf that will read from the named file. Optionally, a specific subimage or MIP level may be specified (defaulting to 0).
Example:
import OpenImageIO as oiio ... buf = ImageBuf ("grid.tif")
- ImageBuf(filename, subimage, miplevel, config)¶
Construct a read-only ImageBuf that will read from the named file, with an ImageSpec
configgiving configuration hints.Example:
import OpenImageIO as oiio ... config = ImageSpec() config.attribute("oiio:RawColor", 1) buf = ImageBuf ("grid.tif", 0, 0, config)
- ImageBuf(imagespec, zero=True)¶
Construct a writable ImageBuf of the dimensions and data format specified by an ImageSpec. The pixels will be initialized to black/empty values if
zerois True, otherwise the pixel values will remain uninitialized.Example:
spec = ImageSpec (640, 480, 3, "float") buf = ImageBuf (spec)
- ImageBuf(data)¶
Construct a writable ImageBuf of the dimensions of
data, which is a NumPyndarrayof values indexed as[y][x][channel]for normal 2D images, or for 3D volumetric images, as[z][y][x][channel]. The data will be copied into the ImageBuf’s internal storage. The NumPy array may be strided for z, y, or x, but must have “contiguous” channel data within each pixel. The pixel data type is also deduced from the contents of thedataarray.Note that this Python ImageBuf will contain its own copy of the data, so further changes to the
dataarray will not affect the ImageBuf. This is different from the C++ ImageBuf constructor from a pointer, which will “wrap” the existing user-provided buffer but not make its own copy.Example:
pixels = numpy.zeros ((640, 480, 3), dtype = numpy.float32) buf = ImageBuf (pixels)
- ImageBuf.clear()¶
Resets the ImageBuf to a pristine state identical to that of a freshly constructed ImageBuf using the default constructor.
Example:
buf = ImageBuf (...) # The following two commands are equivalent: buf = ImageBuf() # 1 - assign a new blank ImageBuf buf.clear() # 2 - clear the existing ImageBuf
- ImageBuf.reset(filename, subimage=0, miplevel=0, config=ImageSpec())¶
Restore the ImageBuf to a newly-constructed state, to read from a filename (optionally specifying a subimage, MIP level, and/or a “configuration” ImageSpec).
- ImageBuf.reset(imagespec, zero=True)¶
Restore the ImageBuf to the newly-constructed state of a writable ImageBuf specified by an ImageSpec. The pixels will be iniialized to black/empty if
zerois True, otherwise the pixel values will remain uninitialized.
- ImageBuf.reset(data)¶
Reset the ImageBuf to be sized to the dimensions of
data, which is a NumPyndarrayof values indexed as[y][x][channel]for normal 2D images, or for 3D volumetric images, as[z][y][x][channel]. The data will be copied into the ImageBuf’s internal storage. The NumPy array may be strided for z, y, or x, but must have “contiguous” channel data within each pixel. The pixel data type is also deduced from the contents of thedataarray.Note that this Python ImageBuf will contain its own copy of the data, so further changes to the
dataarray will not affect the ImageBuf. This is different from the C++ ImageBuf constructor from a pointer, which will “wrap” the existing user-provided buffer but not make its own copy.
- ImageBuf.read(subimage=0, miplevel=0, force=False, convert=oiio.UNKNOWN)¶
- ImageBuf.read(subimage, miplevel, chbegin, chend, force, convert)
Explicitly read the image from the file (of a file-reading ImageBuf), optionally specifying a particular subimage, MIP level, and channel range. If
forceisTrue, will force an allocation of memory and a full read (versus the default of relying on an underlying ImageCache). Ifconvertis not the default of`UNKNOWN`, it will force the ImageBuf to convert the image to the specified data format (versus keeping it in the native format or relying on the ImageCache to make a data formatting decision).Note that a call to
read()is not necessary — any ImageBuf API call that accesses pixel values will trigger a file read if it has not yet been done. An explicitread()is generally only needed to change the subimage or miplevel, or to force an in-buffer read or format conversion.The
read()method will returnTruefor success, orFalseif the read could not be performed (in which case, ageterror()call will retrieve the specific error message).Example:
buf = ImageBuf ("mytexture.exr") buf.read (0, 2, True) # That forces an allocation and read of MIP level 2
- ImageBuf.init_spec(filename, subimage=0, miplevel=0)¶
Explicitly read just the header from a file-reading ImageBuf (if the header has not yet been read), optionally specifying a particular subimage and MIP level. The
init_spec()method will returnTruefor success, orFalseif the read could not be performed (in which case, ageterror()call will retrieve the specific error message).Note that a call to
init_spec()is not necessary — any ImageBuf API call that accesses the spec will read it automatically it has not yet been done.
- ImageBuf.write(filename, dtype='', fileformat='')¶
Write the contents of the ImageBuf to the named file. Optionally,
dtypecan override the pixel data type (by default, the pixel data type of the buffer), andfileformatcan specify a particular file format to use (by default, it will infer it from the extension of the file name).Example:
# No-frills conversion of a TIFF file to JPEG buf = ImageBuf ("in.tif") buf.write ("out.jpg") # Convert to uint16 TIFF buf = ImageBuf ("in.exr") buf.write ("out.tif", "uint16")
- ImageBuf.write(imageoutput)¶
Write the contents of the ImageBuf as the next subimage to an open ImageOutput.
Example:
buf = ImageBuf (...) # Existing ImageBuf out = ImageOutput.create("out.exr") out.open ("out.exr", buf.spec()) buf.write (out) out.close()
- ImageBuf.make_writable(keep_cache_type=False)¶
Force the ImageBuf to be writable. That means that if it was previously backed by an ImageCache (storage was
IMAGECACHE), it will force a full read so that the whole image is in local memory.
- ImageBuf.set_write_format(format=oiio.UNKNOWN)¶
- ImageBuf.set_write_tiles(width=0, height=0, depth=0)¶
Override the data format or tile size in a subsequent call to
write(). Theformatargument toset_write_formatmay be either a single data type description for all channels, or a tuple giving the data type for each channel in order.Example:
# Conversion to a tiled unsigned 16 bit integer file buf = ImageBuf ("in.tif") buf.set_write_format ("uint16") buf.set_write_tiles (64, 64) buf.write ("out.tif")
- ImageBuf.spec()¶
- ImageBuf.nativespec()¶
ImageBuf.spec()returns the ImageSpec that describes the contents of the ImageBuf.ImageBuf.nativespec()returns an ImageSpec that describes the contents of the file that the ImageBuf was read from (this may differ fromImageBuf.spec()due to format conversions, or any changes made to the ImageBuf after the file was read, such as adding metadata).Handy rule of thumb:
spec()describes the buffer,nativespec()describes the original file it came from.Example:
buf = ImageBuf ("in.tif") print ("Resolution is", buf.spec().width, "x", buf.spec().height)
- ImageBuf.specmod()¶
ImageBuf.specmod()provides a reference to the writable ImageSpec inside the ImageBuf. Be very careful! It is safe to modify certain metadata, but if you change the data format or resolution fields, you will get the chaos you deserve.Example:
# Read an image, add a caption metadata, write it back out in place buf = ImageBuf ("file.tif") buf.specmod().attribute ("ImageDescription", "my photo") buf.write ("file.tif")
- ImageBuf.has_thumbnail¶
Contains
Trueif the ImageBuf contains thumbnail data, otherwiseFalse.
- ImageBuf.clear_thumbnail()¶
Remove any associated thumbnail from this buffer.
- ImageBuf.set_thumbnail(thumb: ImageBuf)¶
Set the thumbnai associated with this buffer to
thumb.
- ImageBuf.thumbnail() ImageBuf¶
Return an ImageBuf holding any thumbnail associated with this buffer.
- ImageBuf.name¶
The file name of the image (as a string).
- ImageBuf.file_format_name¶
The file format of the image (as a string).
- ImageBuf.subimage¶
- ImageBuf.miplevel¶
- ImageBuf.nsubimages¶
- ImageBuf.nmiplevels¶
Several fields giving information about the current subimage and MIP level, and the total numbers thereof in the file.
- ImageBuf.xbegin¶
- ImageBuf.xend¶
- ImageBuf.ybegin¶
- ImageBuf.yend¶
- ImageBuf.zbegin¶
- ImageBuf.zend¶
The range of valid pixel data window. Remember that the
endis one past the last pixel.
- ImageBuf.xmin¶
- ImageBuf.xmax¶
- ImageBuf.ymin¶
- ImageBuf.ymax¶
- ImageBuf.zmin¶
- ImageBuf.zmax¶
The minimum and maximum (inclusive) coordinates of the pixel data window.
- ImageBuf.orientation¶
- ImageBuf.oriented_width¶
- ImageBuf.oriented_height¶
- ImageBuf.oriented_x¶
- ImageBuf.oriented_y¶
- ImageBuf.oriented_full_width¶
- ImageBuf.oriented_full_height¶
- ImageBuf.oriented_full_x¶
- ImageBuf.oriented_full_y¶
The
Orientationfield gives the suggested display oriententation of the image (see Section Display hints).The other fields are helpers that give the width, height, and origin (as well as “full” or “display” resolution and origin), taking the intended orientation into consideration.
- ImageBuf.roi¶
- ImageBuf.roi_full¶
These fields hold an ROI description of the pixel data window (
roi) and the full (a.k.a. “display”) window (roi_full).Example:
buf = ImageBuf ("tahoe.jpg") print ("Resolution is", buf.roi.width, "x", buf.roi.height)
- ImageBuf.set_origin(x, y, z=0)¶
Changes the “origin” of the data pixel data window to the specified coordinates.
Example:
# Shift the pixel data so the upper left is at pixel (10, 10) buf.set_origin (10, 10)
- ImageBuf.set_full(xbegin, xend, ybegin, yend, zbegin, zend)¶
Changes the “full” (a.k.a. “display”) window to the specified ROI.
Example:
buf.set_full (0, 1024, 0, 768, 0, 1)
- ImageBuf.pixels_valid¶
Will be
Trueif the file has already been read and the pixels are valid. (It is alwaysTruefor writable ImageBuf’s.) There should be few good reasons to access these, since the spec and pixels will be automatically be read when they are needed.
- ImageBuf.pixeltype()¶
Returns a TypeDesc describing the data type of the pixels stored within the ImageBuf.
- ImageBuf ImageBuf.copy (format=TypeUnknown)
Return a full copy of this ImageBuf (with optional data format conversion, if
formatis supplied).Example:
A = ImageBuf("A.tif") # Make a separate, duplicate copy of A B = A.copy() # Make another copy of A, but converting to float pixels C = A.copy ("float")
- ImageBuf.copy(other_imagebuf, format=TypeUnknown)¶
Make this ImageBuf a complete copy of the other ImageBuf. If a
formatis provided,thiswill get the specified pixel data type rather than using the same pixel format as the source ImageBuf.Example:
A = ImageBuf("A.tif") # Make a separate, duplicate copy of A B = ImageBuf() B.copy (A) # Make another copy of A, but converting to float pixels C = ImageBuf() C.copy (A, oiio.FLOAT)
- ImageBuf.copy_pixels(other_imagebuf)¶
Replace the pixels in this ImageBuf with the values from the other ImageBuf.
- ImageBuf.copy_metadata(other_imagebuf)¶
Replace the metadata of
Self(all ImageSpec items, except for the data format and pixel data window size) with the metadata from the other ImageBuf.
- ImageBuf.merge_metadata(src, override: bool = False, pattern: str = '')¶
Merge metadata from
srcinto the metadata ofSelf(except for the data format and pixel data window size). Metadata inSelfthat is not insrcwill not be altered. Metadata inSelfthat also is insrcwill be replaced only ifoverrideis True. Ifpatternis not empty, only metadata having a substring that matches the regex pattern will be merged.@version 3.0.5+
Example:
A = ImageBuf("A.exr") B = ImageBuf("B.exr") A.merge_metadata(B, True, "^camera:") # Now A contains all of B's metadata whose name starts with the # substring "camera:"
- ImageBuf.swap(other_imagebuf)¶
Swaps the content of this ImageBuf and the other ImageBuf.
Example:
A = ImageBuf("A.tif") B = ImageBuf("B.tif") A.swap (B) # Now B contains the "A.tif" image and A contains the "B.tif" image
- tuple ImageBuf.getpixel (x, y, z=0, wrap="black")
Retrieves pixel (x,y,z) from the buffer and return it as a tuple of
floatvalues, one for each color channel. Thex,y,zvalues areintpixel coordinates. The optionalwrapparameter describes what should happen if the coordinates are outside the pixel data window (and may be: “black”, “clamp”, “periodic”, “mirror”).Example:
buf = ImageBuf ("tahoe.jpg") p = buf.getpixel (50, 50) print (p) > (0.37, 0.615, 0.97)
- ImageBuf.getchannel(x, y, z, channel, wrap='black')¶
Retrieves just a single channel value from pixel (x,y,z) from the buffer and returns it as a
floatvalue. The optionalwrapparameter describes what should happen if the coordinates are outside the pixel data window (and may be: “black”, “clamp”, “periodic”, “mirror”).Example:
buf = ImageBuf ("tahoe.jpg") green = buf.getchannel (50, 50, 0, 1)
- ImageBuf.interppixel(x, y, wrap='black')¶
- ImageBuf.interppixel_bicubic(x, y, wrap='black')¶
Interpolates the image value (bilinearly or bicubically) at coordinates $(x,y)$ and return it as a tuple of
floatvalues, one for each color channel. Thex,yvalues are continuousfloatcoordinates in “pixel space.” The optionalwrapparameter describes what should happen if the coordinates are outside the pixel data window (and may be: “black”, “clamp”, “periodic”, “mirror”).Example:
buf = ImageBuf ("tahoe.jpg") midx = float(buf.xbegin + buf.xend) / 2.0 midy = float(buf.ybegin + buf.yend) / 2.0 p = buf.interpixel (midx, midy) # Now p is the interpolated value from right in the center of # the data window
- ImageBuf.interppixel_NDC(x, y, wrap='black')¶
- ImageBuf.interppixel_bicubic_NDC(x, y, wrap='black')¶
Interpolates the image value (bilinearly or bicubically) at coordinates (x,y) and return it as a tuple of
floatvalues, one for each color channel. Thex,yvalues are continuous, normalizedfloatcoordinates in “NDC space,”” where (0,0) is the upper left corner of the full (a.k.a. “display”) window, and (1,1) is the lower right corner of the full/display window. Thewrapparameter describes what should happen if the coordinates are outside the pixel data window (and may be: “black”, “clamp”, “periodic”, “mirror”).Example:
buf = ImageBuf ("tahoe.jpg") p = buf.interpixel_NDC (0.5, 0.5) # Now p is the interpolated value from right in the center of # the display window
- ImageBuf.setpixel(x, y, pixel_value)¶
- ImageBuf.setpixel(x, y, z, pixel_value)
Sets pixel (x,y,z) to be the
pixel_value, expressed as a tuple offloat(one for each color channel).Example:
buf = ImageBuf (ImageSpec (640, 480, 3, oiio.UINT8)) # Set the whole image to red (the dumb slow way, but it works): for y in range(buf.ybegin, buf.yend) : for x in range(buf.xbegin, buf.xend) : buf.setpixel (x, y, (1.0, 0.0, 0.0))
- ImageBuf.get_pixels(format=TypeFloat, roi=ROI.All)¶
Retrieves the rectangle of pixels (and channels) specified by
roifrom the image and returns them as an array of values with type specified byformat.As with the ImageInput read functions, the return value is a NumPy
ndarraycontaining data elements indexed as[y][x][channel]for normal 2D images, or for 3D volumetric images, as[z][y][x][channel]). ReturnsTrueupon success,Falseupon failure.Example:
buf = ImageBuf ("tahoe.jpg") pixels = buf.get_pixels (oiio.FLOAT) # no ROI means the whole image
- ImageBuf.set_pixels(roi, data)¶
Sets the rectangle of pixels (and channels) specified by
roiwith values in thedata, which is a NumPyndarrayof values indexed as[y][x][channel]for normal 2D images, or for 3D volumetric images, as[z][y][x][channel]. (It will also work fine if the array is 1D “flattened” version, as long as it contains the correct total number of values.) The data type is deduced from the contents of the array itself.Example:
buf = ImageBuf (...) pixels = (....) buf.set_pixels (ROI(), pixels)
- ImageBuf.has_error¶
This field will be
Trueif an error has occurred in the ImageBuf.
- ImageBuf.geterror(clear=True)¶
Retrieve the error message (and clear the
has_errorflag).Example:
buf = ImageBuf ("in.tif") buf.read () # force a read if buf.has_error : print ("Error reading the file:", buf.geterror()) buf.write ("out.jpg") if buf.has_error : print ("Could not convert the file:", buf.geterror())
- ImageBuf.pixelindex(x, y, z, check_range=False)¶
Return the index of pixel (x,y,z).
- ImageBuf.deep¶
Will be
Trueif the file contains “deep” pixel data, orFalsefor an ordinary images.
- ImageBuf.deep_samples(x, y, z=0)¶
Return the number of deep samples for pixel (x,y,z).
- ImageBuf.set_deep_samples(x, y, z, nsamples)¶
Set the number of deep samples for pixel (x,y,z).
- ImageBuf.deep_insert_samples(x, y, z, samplepos, nsamples)¶
- ImageBuf.deep_erase_samples(x, y, z, samplepos, nsamples)¶
Insert or erase
nsamplessamples starting at the given position of pixel (x,y,z).
- ImageBuf.deep_value(x, y, z, channel, sample)¶
- ImageBuf.deep_value_uint(x, y, z, channel, sample)¶
Return the value of the given deep sample (particular pixel, channel, and sample number) for a channel that is a float or an unsigned integer type, respectively.
- ImageBuf.set_deep_value(x, y, z, channel, sample, value)¶
- ImageBuf.set_deep_value_uint(x, y, z, channel, sample, value)¶
Set the value of the given deep sample (particular pixel, channel, and sample number) for a channel that is a float or an unsigned integer type, respectively.
- DeepData ImageBuf.deepdata
A reference to the underlying
DeepDataof the image.
ImageBufAlgo¶
The C++ ImageBufAlgo functions are described in detail in Chapter ImageBufAlgo: Image Processing. They are also exposed to Python. For the majority of ImageBufAlgo functions, their use in Python is identical to C++; in those cases, we will keep our descriptions of the Python bindings minimal and refer you to Chapter ImageBufAlgo: Image Processing, saving the extended descriptions for those functions that differ from the C++ counterparts.
A few things about the parameters of the ImageBufAlgo function calls are identical among the functions, so we will explain once here rather than separately for each function:
dstis an existing ImageBuf, which will be modified (it may be an uninitialized ImageBuf, but it must be an ImageBuf).srcparameter is an initialized ImageBuf, which will not be modified (unless it happens to refer to the same image asdst.roi, if supplied, is anroispecifying a region of interest over which to operate. If omitted, the region will be the entire size of the source image(s).nthreadsis the maximum number of threads to use. If not supplied, it defaults to 0, meaning to use as many threads as hardware cores available.
Just as with the C++ ImageBufAlgo functions, if dst is an uninitialized
ImageBuf, it will be sized to reflect the roi (which, in turn, if undefined,
will be sized to be the union of the ROI’s of the source images).
Pattern generation¶
- ImageBuf ImageBufAlgo.zero (roi, nthreads=0)
- ImageBufAlgo.zero(dst, roi=ROI.All, nthreads=0)¶
Zero out the destination buffer (or a specific region of it).
Example:
# Initialize buf to a 640x480 3-channel FLOAT buffer of 0 values buf = ImageBufAlgo.zero (ROI(0, 640, 0, 480, 0, 1, 0, 3))
- ImageBuf ImageBufAlgo.fill (values, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.fill (top, bottom, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.fill (topleft, topright, bottomleft, bottomright, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fill (dst, values, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fill (dst, top, bottom, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fill (dst, topleft, topright, bottomleft, bottomright, roi=ROI.All, nthreads=0)
Return a filled float image of size
roi, or set the the pixels of imagedstwithin the ROI to a color or gradient.Three fill optins are available: (a) if one color tuple is supplied, the whole ROI will be filled with that constant value, (b) if two color tuples are supplied, a linear gradient will be applied from top to bottom, (c) if four color cuples are supplied, the ROI will be be filled with values bilinearly interpolated from the four corner colors supplied.
Example:
# Draw a red rectangle into buf buf = ImageBuf (ImageSpec(640, 480, 3, TypeDesc.FLOAT) ImageBufAlgo.fill (buf, (1,0,0), ROI(50, 100, 75, 85))
- ImageBuf ImageBufAlgo.checker(width, height, depth, color1, color2, xoffset=0, yoffset=0, zoffset=0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.checker(dst, width, height, depth, color1, color2, xoffset=0, yoffset=0, zoffset=0, roi=ROI.All, nthreads=0)
Return (or copy into
dst) a checkerboard pattern. The colors are specified as tuples giving the values for each color channel.Example:
buf = ImageBuf(ImageSpec(640, 480, 3, oiio.UINT8)) ImageBufAlgo.checker (buf, 64, 64, 1, (0.1,0.1,0.1), (0.4,0.4,0.4))
- ImageBuf ImageBufAlgo.noise (noisetype, A=0.0, B=0.1, mono=False, seed=0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.noise (dst, noisetype, A=0.0, B=0.1, mono=False, seed=0, roi=ROI.All, nthreads=0)
Return an image of pseudorandom noise, or add pseudorandom noise to the specified region of existing region
dst.For noise type “white” (and its synonym “uniform”), the values are uniformly distributed on the range
[A,B)and independently chosen for each pixel. For noise type “blue”, the range will still be uniformly distributed on[A,B)as with “white,” except that the values have better spectral properties for sampling and dithering purposes. For noise “gaussian”, the noise will have a normal distribution with mean A and standard deviation B. For noise “salt”, the value A will be stored in a random set of pixels whose proportion (of the overall image) is B.For all noise types, choosing different
seedvalues will result in a different pattern. If themonoflag isTrue, a single noise value will be applied to all channels specified byroi, but ifmonoisFalse, a separate noise value will be computed for each channel in the region.Example:
buf = ImageBuf(ImageSpec(640, 480, 3, oiio.UINT8)) ImageBufAlgo.zero (buf) ImageBufAlgo.noise (buf, 'white', 0.25, 0.75)
- ImageBuf ImageBufAlgo.bluenoise_image ()
Return a reference to a singleton ImageBuf containing a 4-channel float periodic blue noise image.
Example:
buf = ImageBufAlgo.bluenoise_image ()
- ImageBufAlgo.render_point(dst, x, y, color=(1, 1, 1, 1))¶
Render a point at pixel (x,y) of
dst. Thecolor(if supplied) is a tuple giving the per-channel colors. ReturnTruefor success,Falsefor failure.Example:
buf = ImageBuf(ImageSpec (640, 480, 4, oiio.FLOAT)) ImageBufAlgo.render_point (buf, 10, 20, (1,0,0,1))
- bool ImageBufAlgo.render_line (dst, x1, y1, x2, y2, color=(1,1,1,1), skip_first_point=False)
Render a line from pixel $(x_1,y_1)$ to $(x_2,y_2)$ into
dst. Thecolor(if supplied) is a tuple giving the per-channel colors.Example:
buf = ImageBuf(ImageSpec (640, 480, 4, oiio.FLOAT)) ImageBufAlgo.render_line (buf, 10, 10, 500, 20, (1,0,0,1))
- bool ImageBufAlgo.render_box (dst, x1, y1, x2, y2, color=(1,1,1,1), filled=False)
Render a filled or unfilled box with corners at pixels $(x_1,y_1)$ and $(x_2,y_2)$ into
dst. Thecolor(if supplied) is a tuple giving the per-channel colors.Example:
buf = ImageBuf(ImageSpec (640, 480, 4, oiio.FLOAT)) ImageBufAlgo.render_box (buf, 150, 100, 240, 180, (0,1,1,1)) ImageBufAlgo.render_box (buf, 100, 50, 180, 140, (0.5, 0.5, 0, 0.5), True)
- bool ImageBufAlgo.render_text (dst, x, y, text, fontsize=16, fontname="", textcolor=(1,1,1,1), alignx="left", aligny="baseline", shadow=0, roi=ROI.All, nthreads=0)
Render antialiased text into
dst. Thetextcolor(if supplied) is a tuple giving the per-channel colors. Choices foralignxare “left”, “right”, and “center”, and choices foralignyare “baseline”, “top”, “bottom”, and “center”.Example:
buf = ImageBuf(ImageSpec (640, 480, 4, oiio.FLOAT)) ImageBufAlgo.render_text (buf, 50, 100, "Hello, world") ImageBufAlgo.render_text (buf, 100, 200, "Go Big Red!", 60, "Arial Bold", (1,0,0,1))
- ROI ImageBufAlgo.text_size (text, fontsize=16, fontname="")
Compute the size that will be needed for the text as an ROI and return it. The size will not be
definedif an error occurred (such as not being a valid font name).Example:
A = ImageBuf(ImageSpec (640, 480, 4, oiio.FLOAT)) Aroi = A.roi size = ImageBufAlgo.text_size ("Centered", 40, "Courier New") if size.defined : x = Aroi.xbegin + Aroi.width/2 - (size.xbegin + size.width/2) y = Aroi.ybegin + Aroi.height/2 - (size.ybegin + size.height/2) ImageBufAlgo.render_text (A, x, y, "Centered", 40, "Courier New") # Note: this was for illustration. An easier way to do this is: # render_text (A, x, y, "Centered", 40, "Courier New", alignx="center")
Image transformations and data movement¶
- ImageBuf ImageBufAlgo.channels(src, channelorder, newchannelnames=(), shuffle_channel_names=False, nthreads=0)
- bool ImageBufAlgo.channels(dst, src, channelorder, newchannelnames=(), shuffle_channel_names=False, nthreads=0)
Return (or store in
dst) shuffled channels ofsrc, with channels in the order specified by the tuplechannelorder. The length ofchannelorderspecifies the number of channels to copy. Each element in the tuplechannelordermay be one of the following:int: specifies the index (beginning at 0) of the channel to copy.str: specifies the name of the channel to copy.float: specifies a constant value to use for that channel.
If
newchannelnamesis supplied, it is a tuple of new channel names. (See the C++ version for more full explanation.)Example:
# Copy the first 3 channels of an RGBA, drop the alpha RGBA = ImageBuf("rgba.tif") RGB = ImageBufAlgo.channels (RGBA, (0,1,2)) # Copy just the alpha channel, making a 1-channel image Alpha = ImageBufAlgo.channels (RGBA, ("A",)) # Swap the R and B channels BGRA = ImageBufAlgo.channels (RGBA, (2, 1, 0, 3)) # Add an alpha channel with value 1.0 everywhere to an RGB image RGBA = ImageBufAlgo.channels (RGB, ("R", "G", "B", 1.0), ("R", "G", "B", "A"))
- ImageBuf ImageBufAlgo.channel_append (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.channel_append (dst, A, B, roi=ROI.All, nthreads=0)
Append the channels of images
AandBtogether into one image.Example:
RGBA = ImageBuf ("rgba.exr") Z = ImageBuf ("z.exr") RGBAZ = ImageBufAlgo.channel_append (RGBA, Z)
- ImageBuf ImageBufAlgo.copy (src, convert=TypeDesc.UNKNOWN, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.copy (dst, src, convert=TypeDesc.UNKNOWN, roi=ROI.All, nthreads=0)
Copy the specified region of pixels of
srcat the same locations, optionally with the pixel type overridden byconvert(if it is notUNKNOWN).Example:
# Copy A's upper left 200x100 region into B B = ImageBufAlgo.copy (A, ROI(0,200,0,100))
- ImageBuf ImageBufAlgo.crop (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.crop (dst, src, roi=ROI.All, nthreads=0)
Reset
dstto be the specified region ofsrc.Example:
# Set B to be the upper left 200x100 region of A A = ImageBuf ("a.tif") B = ImageBufAlgo.crop (A, ROI(0,200,0,100))
- ImageBuf ImageBufAlgo.cut (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.cut (dst, src, roi=ROI.All, nthreads=0)
Reset
dstto be the specified region ofsrc, but moved so that the resulting new image has its pixel data at the image plane origin.Example:
# Set B to be the lower left 200x100 region of A, moved to the origin A = ImageBuf ("a.tif") B = ImageBufAlgo.cut (A, ROI(0,200,380,480))
- bool ImageBufAlgo.paste (dst, xbegin, ybegin, zbegin, chbegin, src, srcroi=ROI.All, nthreads=0)
Copy the specified region of
srcintodstwith the given offset (xbegin,ybegin,zbegin).Example:
# Paste small.exr on top of big.exr at offset (100,100) Big = ImageBuf ("big.exr") Small = ImageBuf ("small.exr") ImageBufAlgo.paste (Big, 100, 100, 0, 0, Small)
- ImageBuf ImageBufAlgo.rotate90 (src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.rotate180 (src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.rotate270 (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rotate90 (dst, src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rotate180 (dst, src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rotate270 (dst, src, roi=ROI.All, nthreads=0)
Copy while rotating the image by a multiple of 90 degrees.
Example:
A = ImageBuf ("tahoe.exr") B = ImageBufAlgo.rotate90 (A)
- ImageBuf ImageBufAlgo.flip (src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.flop (src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.transpose (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.flip (dst, src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.flop (dst, src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.transpose (dst, src, roi=ROI.All, nthreads=0)
Copy while reversing orientation vertically (flip) or horizontally (flop), or diagonally (transpose).
Example:
A = ImageBuf ("tahoe.exr") B = ImageBufAlgo.flip (A)
- ImageBuf ImageBufAlgo.reorient (src, nthreads=0)
- bool ImageBufAlgo.reorient (dst, src, nthreads=0)
Copy
src, applying whatever seties of rotations, flips, or flops are necessary to transform the pixels into the configuration suggested by the"Orientation"metadata of the image (and the"Orientation"metadata is then set to 1, ordinary orientation).Example:
A = ImageBuf ("tahoe.jpg") ImageBufAlgo.reorient (A, A)
- ImageBuf ImageBufAlgo.circular_shift (src, xshift, yshift, zshift=0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.circular_shift (dst, src, xshift, yshift, zshift=0, roi=ROI.All, nthreads=0)
Copy while circularly shifting by the given amount.
Example:
A = ImageBuf ("tahoe.exr") B = ImageBufAlgo.circular_shift (A, 200, 100)
- ImageBuf ImageBufAlgo.rotate (src, angle, filtername="", filtersize=0.0, recompute_roi=False, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.rotate (src, angle, center_x, center_y, filtername="", filtersize=0.0, recompute_roi=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rotate (dst, src, angle, filtername="", filtersize=0.0, recompute_roi=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rotate (dst, src, angle, center_x, center_y, filtername="", filtersize=0.0, recompute_roi=False, roi=ROI.All, nthreads=0)
Copy arotated version of the corresponding portion of
src. The angle is in radians, with positive values indicating clockwise rotation. If the filter and size are not specified, an appropriate default will be chosen.Example:
Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.rotate (Src, math.radians(45.0))
- ImageBuf ImageBufAlgo.warp (src, M, filtername="", filtersize=0.0, wrap="default", recompute_roi=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.warp (dst, src, M, filtername="", filtersize=0.0, wrap="default", recompute_roi=False, roi=ROI.All, nthreads=0)
Compute a warped (transformed) copy of
src, with the warp specified byMconsisting of 9 floating-point numbers representing a 3x3 transformation matrix. If the filter and size are not specified, an appropriate default will be chosen.Example:
M = (0.7071068, 0.7071068, 0, -0.7071068, 0.7071068, 0, 20, -8.284271, 1) Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.warp (Src, M)
- ImageBuf ImageBufAlgo.st_warp (src, M, filtername="", filtersize=0.0, wrap="default", recompute_roi=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.st_warp (dst, src, M, filtername="", filtersize=0.0, wrap="default", recompute_roi=False, roi=ROI.All, nthreads=0)
Compute a warped (transformed) copy of
src, with the warp specified byMconsisting of 9 floating-point numbers representing a 3x3 transformation matrix. If the filter and size are not specified, an appropriate default will be chosen.Example:
# distortion_st.tif is a map where every pixel value contains the 2D # coordinate of where to copy from. Distort = ImageBuf("distortion_st.tif") Src = ImageBuf("tahoe.exr") Dst = ImageBufAlgo.st_warp(Src, Distort)
- ImageBuf ImageBufAlgo.resize (src, filtername="", filtersize=0.0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.resize (dst, src, filtername="", filtersize=0.0, roi=ROI.All, nthreads=0)
Compute a high-quality resized version of the corresponding portion of
src. If the filter and size are not specified, an appropriate default will be chosen.Example:
# Resize the image to 640x480, using the default filter Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.resize (Src, roi=ROI(0,640,0,480,0,1,0,3))
- ImageBuf ImageBufAlgo.resample (src, interpolate=True, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.resample (dst, src, interpolate=True, roi=ROI.All, nthreads=0)
Set
dst, over the ROI, to be a low-quality (but fast) resized version of the corresponding portion ofsrc, either using a simple “closest pixel” choice or by bilinaerly interpolating (depending oninterpolate).Example:
# Resample quickly to 320x240 to make a low-quality thumbnail Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.resample (Src, roi=ROI(0,640,0,480,0,1,0,3))
- ImageBuf ImageBufAlgo.fit (src, filtername="", filtersize=0.0, fillmode="letterbox", exact=false, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fit (dst, src, filtername="", filtersize=0.0, fillmode="letterbox", exact=false, roi=ROI.All, nthreads=0)
Fit
srcinto theroiwhile preserving the original aspect ratio, without stretching. If the filter and size are not specified, an appropriate default will be chosen.Example:
# Resize to fit into a max of 640x480, preserving the aspect ratio Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.fit (Src, roi=ROI(0,640,0,480,0,1,0,3))
Image arithmetic¶
- ImageBuf ImageBufAlgo.add (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.add (dst, A, B, roi=ROI.All, nthreads=0)
Compute
A + B.AandBeach may be an ImageBuf, afloatvalue (for all channels) or a tuple giving afloatfor each color channel.Example:
# Add two images buf = ImageBufAlgo.add (ImageBuf("a.exr"), ImageBuf("b.exr")) # Add 0.2 to channels 0-2 ImageBufAlgo.add (buf, buf, (0.2,0.2,0.2,0))
- ImageBuf ImageBufAlgo.sub (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.sub (dst, A, B, roi=ROI.All, nthreads=0)
Compute
A - B.AandBeach may be an ImageBuf, afloatvalue (for all channels) or a tuple giving afloatfor each color channel.Example:
buf = ImageBufAlgo.sub (ImageBuf("a.exr"), ImageBuf("b.exr"))
- ImageBuf ImageBufAlgo.absdiff (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.absdiff (dst, A, B, roi=ROI.All, nthreads=0)
Compute
abs(A - B).AandBeach may be an ImageBuf, afloatvalue (for all channels) or a tuple giving afloatfor each color channel.Example:
buf = ImageBufAlgo.absdiff (ImageBuf("a.exr"), ImageBuf("b.exr"))
- ImageBuf ImageBufAlgo.abs (A, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.abs (dst, A, roi=ROI.All, nthreads=0)
Compute
abs(A).Ais an ImageBuf.Example:
buf = ImageBufAlgo.abs (ImageBuf("a.exr"))
- ImageBuf ImageBufAlgo.scale (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.scale (dst, A, B, roi=ROI.All, nthreads=0)
Per-pixel multiply all channels of one image by the single channle of the other image. One of the input images must have only one channel.
Example:
# Scale one image by the other buf = ImageBufAlgo.scale (ImageBuf("a.exr"), ImageBuf("mono.exr")) # Scale one image by the other, in place ImageBufAlgo.scale (buf, buf, ImageBuf("mono.exr"))
- ImageBuf ImageBufAlgo.mul (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.mul (dst, A, B, roi=ROI.All, nthreads=0)
Compute
A * B(channel-by-channel multiplication).AandBeach may be an ImageBuf, afloatvalue (for all channels) or a tuple giving afloatfor each color channel.Example:
# Multiply the two images buf = ImageBufAlgo.mul (ImageBuf("a.exr"), ImageBuf("b.exr")) # Reduce intensity of buf's channels 0-2 by 50%, in place ImageBufAlgo.mul (buf, buf, (0.5, 0.5, 0.5, 1.0))
- ImageBuf ImageBufAlgo.div (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.div (dst, A, B, roi=ROI.All, nthreads=0)
Compute
A / B(channel-by-channel division), where x/0 is defined to be 0.AandBeach may be an ImageBuf, afloatvalue (for all channels) or a tuple giving afloatfor each color channel.Example:
# Divide a.exr by b.exr buf = ImageBufAlgo.div (ImageBuf("a.exr"), ImageBuf("b.exr")) # Reduce intensity of buf's channels 0-2 by 50%, in place ImageBufAlgo.div (buf, buf, (2.0, 2.0, 2.0, 1.0))
- ImageBuf ImageBufAlgo.mad (A, B, C, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.mad (dst, A, B, C, roi=ROI.All, nthreads=0)
Compute
A * B + C(channel-by-channel multiplication and addition).A,B, andCeach may be an ImageBuf, afloatvalue (for all channels) or a tuple giving afloatfor each color channel.Example:
# Multiply a and b, then add c buf = ImageBufAlgo.mad (ImageBuf("a.exr"), (1.0f, 0.5f, 0.25f), ImageBuf("c.exr"))
- ImageBuf ImageBufAlgo.invert (A, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.invert (dst, A, roi=ROI.All, nthreads=0)
Compute
1-A(channel by channel color inverse).Ais an ImageBuf.Example:
buf = ImageBufAlgo.invert (ImageBuf("a.exr"))
- ImageBuf ImageBufAlgo.pow (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.pow (dst, A, B, roi=ROI.All, nthreads=0)
Compute
pow (A, B)(channel-by-channel exponentiation).Ais an ImageBuf, andBmay be afloat(a single power for all channels) or a tuple giving afloatfor each color channel.Example:
# Linearize a 2.2 gamma-corrected image (channels 0-2 only) img = ImageBuf ("a.exr") buf = ImageBufAlgo.pow (img, (2.2, 2.2, 2.2, 1.0))
- ImageBuf ImageBufAlgo.channel_sum (src, weights=(), roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.channel_sum (dst, src, weights=(), roi=ROI.All, nthreads=0)
Converts a multi-channel image into a 1-channel image via a weighted sum of channels. The
weightsis a tuple providing the weight for each channel (if not supplied, all channels will have weight 1.0).Example:
# Compute luminance via a weighted sum of R,G,B # (assuming Rec709 primaries and a linear scale) ImageBuf() weights = (.2126, .7152, .0722) luma = ImageBufAlgo.channel_sum (ImageBuf("a.exr"), weights)
- ImageBuf ImageBufAlgo.contrast_remap (src, black=0.0, white=1.0, min=0.0, max=1.0, sthresh=0.0, scontrast=1.0, ROI roi={}, int nthreads=0)
- bool ImageBufAlgo.contrast_remap (ImageBuf &dst, src, black=0.0, white=1.0, min=0.0, max=1.0, sthresh=0.0, scontrast=1.0, ROI roi={}, int nthreads=0)
Return (or copy into
dst) pixel values that are a contrast-remap of the corresponding values of thesrcimage, transforming pixel value domain [black, white] to range [min, max], either linearly or with optional application of a smooth sigmoidal remapping (if scontrast != 1.0).Example:
A = ImageBuf('tahoe.tif'); # Simple linear remap that stretches input 0.1 to black, and input # 0.75 to white. linstretch = ImageBufAlgo.contrast_remap (A, black=0.1, white=0.75) # Remapping 0->1 and 1->0 inverts the colors of the image, # equivalent to ImageBufAlgo.invert(). inverse = ImageBufAlgo.contrast_remap (A, black=1.0, white=0.0) # Use a sigmoid curve to add contrast but without any hard cutoffs. # Use a contrast parameter of 5.0. sigmoid = ImageBufAlgo.contrast_remap (a, contrast=5.0)
- ImageBuf ImageBufAlgo.saturate (src, scale=0.0, firstchannel=0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.saturate (dst, src, scale=0.0, firstchannel=0, roi=ROI.All, nthreads=0)
Copy pixels from
srctodst, and scale the saturation of channelsfirstchanneltofirstchannel+2by thescalefactor.This function was added in OpenImageIO 2.4.
Example:
# In-place reduce saturation by 50% A = ImageBuf ("a.exr") ImageBufAlgo.saturate (A, A, 0.5)
- ImageBuf ImageBufAlgo.color_map (src, srcchannel, nknots, channels, knots, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.color_map (src, srcchannel, mapname, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.color_map (dst, src, srcchannel, nknots, channels, knots, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.color_map (dst, src, srcchannel, mapname, roi=ROI.All, nthreads=0)
Return an image (or copy into
dst) pixel values determined by applying the color map to the values ofsrc, using either the channel specified bysrcchannel, or the luminance ofsrc’s RGB ifsrcchannelis -1.In the first variant, the values linearly-interpolated color map are given by the tuple
knots[nknots*channels].In the second variant, just the name of a color map is specified. Recognized map names include: “inferno”, “viridis”, “magma”, “plasma”, all of which are perceptually uniform, strictly increasing in luminance, look good when converted to grayscale, and work for people with all types of colorblindness. The “turbo” color map is also nice in most of these ways (except for being strictly increasing in luminance). Also supported are the following color maps that do not have those desirable qualities (and are this not recommended): “blue-red”, “spectrum”, and “heat”. In all cases, the implied
channelsis 3.Example:
heatmap = ImageBufAlgo.color_map (ImageBuf("a.jpg"), -1, "inferno") heatmap = ImageBufAlgo.color_map (ImageBuf("a.jpg"), -1, 3, 3, (0.25, 0.25, 0.25, 0, 0.5, 0, 1, 0, 0))
- ImageBuf ImageBufAlgo.max (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.max (dst, A, B, roi=ROI.All, nthreads=0)
Compute per-pixel, per-channel
max(A, B), returning the result image. At least one ofAandBmust be an ImageBuf, the other may also be an ImageBuf, or afloatvalue (for all channels), or a tuple giving afloatfor each color channel.Example:
# Make an image that for each pixel and channel, is the maximum # value of that pixel and channel of A and B. A = ImageBuf("a.exr") B = ImageBuf("b.exr") maximg = ImageBufAlgo.max (A, B) # Do an in-place clamp image A so that all values are at least 0 # (thus ensuring that there are no negative values). ImageBufAlgo.max (A, A, 0.0)
- ImageBuf ImageBufAlgo.min (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.min (dst, A, B, roi=ROI.All, nthreads=0)
Compute per-pixel, per-channel
min(A, B), returning the result image. At least one ofAandBmust be an ImageBuf, the other may also be an ImageBuf, or afloatvalue (for all channels), or a tuple giving afloatfor each color channel.Example:
# Make an image that for each pixel and channel, is the minimum # value of that pixel and channel of A and B. A = ImageBuf("a.exr") B = ImageBuf("b.exr") minimg = ImageBufAlgo.min (A, B) # Do an in-place clamp image A so that the maximum value of each pixel # is 0.5 (except for alpha, which may be up to 1.0): ImageBufAlgo.min (A, A, (0.5, 0.5, 0.5, 1.0))
- ImageBuf ImageBufAlgo.clamp (src, min, max, bool clampalpha01=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.clamp (dst, src, min, max, bool clampalpha01=False, roi=ROI.All, nthreads=0)
Copy pixels while clamping between the
minandmaxvalues. Theminandmaxmay either be tuples (one min and max value per channel), or single floats (same value for all channels). Additionally, ifclampalpha01isTrue, then any alpha channel is clamped to the 0–1 range.Example:
# Clamp image buffer A in-place to the [0,1] range for all channels. ImageBufAlgo.clamp (A, A, 0.0, 1.0)
- ImageBuf ImageBufAlgo.maxchan (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.maxchan (dst, src, roi=ROI.All, nthreads=0)
Return a one-channel image where each pixel has the maximum value found in any of the channels of
srcin that corresponding pixel.This function was added in OpenImageIO 2.3.10.
Example:
A = ImageBuf("rgb.exr") max_of_rgb = ImageBufAlgo.maxchan (A)
- ImageBuf ImageBufAlgo.minchan (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.minchan (dst, src, roi=ROI.All, nthreads=0)
Return a one-channel image where each pixel has the minimum value found in any of the channels of
srcin that corresponding pixel.This function was added in OpenImageIO 2.3.10.
Example:
A = ImageBuf("rgb.exr") min_of_rgb = ImageBufAlgo.minchan (A)
- ImageBuf ImageBufAlgo.rangecompress (src, useluma=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rangecompress (dst, src, useluma=False, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.rangeexpand (src, useluma=False, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.rangeexpand (dst, src, useluma=False, roi=ROI.All, nthreads=0)
Copy from
src, compressing (logarithmically) or expanding (by the inverse of the compressive transformation) the range of pixel values. Alpha and z channels are copied but not transformed.If
uselumaisTrue, the luma of the first three channels (presumed to be R, G, and B) are used to compute a single scale factor for all color channels, rather than scaling all channels individually (which could result in a big color shift when performingrangecompressandrangeexpand).Example:
# Resize the image to 640x480, using a Lanczos3 filter, which # has negative lobes. To prevent those negative lobes from # producing ringing or negative pixel values for HDR data, # do range compression, then resize, then re-expand the range. # 1. Read the original image Src = ImageBuf ("tahoeHDR.exr") # 2. Range compress to a logarithmic scale Compressed = ImageBufAlgo.rangecompress (Src) # 3. Now do the resize roi = ROI (0, 640, 0, 480, 0, 1, 0, Compressed.nchannels) Dst = ImageBufAlgo.resize (Compressed, "lanczos3", 6.0, roi) # 4. Expand range to be linear again (operate in-place) ImageBufAlgo.rangeexpand (Dst, Dst)
- ImageBuf ImageBufAlgo.over (A, B, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.over (dst, A, B, roi=ROI.All, nthreads=0)
Composite ImageBuf
Aover ImageBufB.Example:
Comp = ImageBufAlgo.over (ImageBuf("fg.exr"), ImageBuf("bg.exr"))
- ImageBuf ImageBufAlgo.zover (A, B, bool z_zeroisinf=False, roi=ROI.All, nthreads=0
- bool ImageBufAlgo.zover (dst, A, B, bool z_zeroisinf=False, roi=ROI.All, nthreads=0)
Composite ImageBuf
Aand ImageBufBusing their respective Z channels to decide which is in front on a pixel-by-pixel basis.Example:
Comp = ImageBufAlgo.zover (ImageBuf("fg.exr"), ImageBuf("bg.exr"))
Image comparison and statistics¶
- PixelStats ImageBufAlgo.computePixelStats (src, roi=ROI.All, nthreads=0)
Compute statistics about the ROI of the image
src. ThePixelStatsstructure is defined as contining the following data fields:min,max,avg,stddev,nancount,infcount,finitecount,sum,sum2, each of which is a tuple with one value for each channel of the image.Example:
A = ImageBuf("a.exr") stats = ImageBufAlgo.computePixelStats (A) print (" min = ", stats.min) print (" max = ", stats.max) print (" average = ", stats.avg) print (" standard deviation = ", stats.stddev) print (" # NaN values = ", stats.nancount) print (" # Inf values = ", stats.infcount) print (" # finite values = ", stats.finitecount)
- CompareResults ImageBufAlgo.compare (A, B, failthresh, warnthresh, failrelative=0.0, warnrelative=0.0, roi=ROI.All, nthreads=0)
Numerically compare two ImageBuf’s,
AandB. Thefailthreshandwarnthreshsupply absolute failure and warning difference thresholds, andfailrelativeandwarnrelativesupply failure and warning thresholds relative to the values in each image. The return value is aCompareResultsobject, which is defined as a class having the following members:meanerror, rms_error, PSNR, maxerror # error statistics maxx, maxy, maxz, maxc # pixel of biggest difference nwarn, nfail # number of warnings and failures error # True if there was an error
Example:
A = ImageBuf ("a.exr") B = ImageBuf ("b.exr") comp = ImageBufAlgo.compare (A, B, 1.0/255.0, 0.0) if comp.nwarn == 0 and comp.nfail == 0 : print ("Images match within tolerance") else : print (comp.nfail, "failures,", comp.nwarn, " warnings.") print ("Average error was " , comp.meanerror) print ("RMS error was" , comp.rms_error) print ("PSNR was" , comp.PSNR) print ("largest error was ", comp.maxerror) print (" on pixel", (comp.maxx, comp.maxy, comp.maxz)) print (" channel", comp.maxc)
- tuple ImageBufAlgo.isConstantColor (src, threshold=0.0, roi=ROI.All, nthreads=0)
If all pixels of
srcwithin the ROI have the same values (for the subset of channels described byroi), return a tuple giving that color (onefloatfor each channel), otherwise returnNone.Example:
A = ImageBuf ("a.exr") color = ImageBufAlgo.isConstantColor (A) if color != None : print ("The image has the same value in all pixels:", color) else : print ("The image is not a solid color.")
- bool ImageBufAlgo.isConstantChannel (src, channel, val, threshold=0.0, roi=ROI.All, nthreads=0)
Returns
Trueif all pixels ofsrcwithin the ROI have the givenchannelvalueval.Example:
A = ImageBuf ("a.exr") alpha = A.spec.alpha_channel if alpha < 0 : print ("The image does not have an alpha channel") elif ImageBufAlgo.isConstantChannel (A, alpha, 1.0) : print ("The image has alpha = 1.0 everywhere") else : print ("The image has alpha < 1 in at least one pixel")
- bool ImageBufAlgo.isMonochrome (src, threshold=0.0, roi=ROI.All, nthreads=0)
Returns
Trueif the image is monochrome within the ROI.Example:
A = ImageBuf ("a.exr") roi = A.roi roi.chend = min (3, roi.chend) # only test RGB, not alpha if ImageBufAlgo.isMonochrome (A, roi) : print ("a.exr is really grayscale")
- ImageBufAlgo.color_range_check(src, low, high, roi=ROI.All, nthreads=0)¶
Count how many pixels in the
srcimage (within theroi) are outside the value range described bylowandhi(which each may be either one value or a tuple with per-channel values for each ofroi.chbegin ... roi.chend. The result returned is a tuple containing three values: the number of values less thanlow, the number of values greater thenhi, and the number of values within the range.Example:
A = ImageBuf ("a.exr") counts = ImageBufAlgo.color_range_check (A, 0.5, 0.75) print ('{} values < 0.5, {} values > 0.75'.format(counts[0], counts[1]))
- ROI ImageBufAlgo.nonzero_region (src, roi=ROI.All, nthreads=0)
Returns an ROI that tightly encloses the minimal region within
roithat contains all pixels with nonzero values.Example:
A = ImageBuf ("a.exr") nonzero_roi = ImageBufAlgo.nonzero_region(A)
- std::string ImageBufAlgo.computePixelHashSHA1 (src, extrainfo = "", roi=ROI.All, blocksize=0, nthreads=0)
Compute the SHA-1 byte hash for all the pixels in the ROI of
src.Example:
A = ImageBuf ("a.exr") hash = ImageBufAlgo.computePixelHashSHA1 (A, blocksize=64)
- tuple histogram (src, channel=0, bins=256, min=0.0, max=1.0, ignore_empty=False, roi=ROI.All, nthreads=0)
Computes a histogram of the given
channelof imagesrc, within the ROI, returning a tuple of lengthbinscontaining count of pixels whose value was in each of the equally-sized range bins betweenminandmax. Ifignore_emptyisTrue, pixels that are empty (all channels 0 including alpha) will not be counted in the total.
Convolutions¶
- ImageBuf ImageBufAlgo.make_kernel (name, width, height, depth=1.0, normalize=True)}
Create a 1-channel
floatimage of the named kernel and dimensions. IfnormalizeisTrue, the values will be normalized so that they sum to 1.0.If
depth> 1, a volumetric kernel will be created. Use with caution!Kernel names can be: “gaussian”, “sharp-gaussian”, “box”, “triangle”, “mitchell”, “blackman-harris”, “b-spline”, “catmull-rom”, “lanczos3”, “cubic”, “keys”, “simon”, “rifman”, “disk”, “binomial”, “laplacian”. Note that “catmull-rom” and “lanczos3” are fixed-size kernels that don’t scale with the width, and are therefore probably less useful in most cases.
Example:
K = ImageBufAlgo.make_kernel ("gaussian", 5.0, 5.0)
- ImageBuf ImageBufAlgo.convolve (src, kernel, normalize=True, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.convolve (dst, src, kernel, normalize=True, roi=ROI.All, nthreads=0)
Replace the given ROI of
dstwith the convolution ofsrcand a kernel (also an ImageBuf).Example:
# Blur an image with a 5x5 Gaussian kernel Src = ImageBuf ("tahoe.exr") K = ImageBufAlgo.make_kernel (K, "gaussian", 5.0, 5.0) Blurred = ImageBufAlgo.convolve (Src, K)
- ImageBuf ImageBufAlgo.laplacian (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.laplacian (dst, src, roi=ROI.All, nthreads=0)
Replace the given ROI of
dstwith the Laplacian of the corresponding part ofsrc.Example:
Src = ImageBuf ("tahoe.exr") L = ImageBufAlgo.laplacian (Src)
- ImageBuf ImageBufAlgo.fft (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fft (dst, src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.ifft (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.ifft (dst, src, roi=ROI.All, nthreads=0)
Compute the forward or inverse discrete Fourier Transform.
Example:
Src = ImageBuf ("tahoe.exr") # Take the DFT of the first channel of Src Freq = ImageBufAlgo.fft (Src) # At this point, Freq is a 2-channel float image (real, imag) # Convert it back from frequency domain to a spatial image Spatial = ImageBufAlgo.ifft (Freq)
- ImageBuf ImageBufAlgo.complex_to_polar (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.complex_to_polar (dst, src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.polar_to_complex (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.polar_to_complex (dst, src, roi=ROI.All, nthreads=0)
Transform a 2-channel image from complex (real, imaginary) representation to polar (amplitude, phase), or vice versa.
Example:
Polar = ImageBuf ("polar.exr") Complex = ImageBufAlgo.polar_to_complex (Polar) # At this point, Complex is a 2-channel complex image (real, imag) # Convert it back from frequency domain to a spatial image Spatial = ImageBufAlgo.ifft (Complex)
Image Enhancement / Restoration¶
- ImageBuf ImageBufAlgo.fixNonFinite (src, mode=NONFINITE_BOX3, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fixNonFinite (dst, src, mode=NONFINITE_BOX3, roi=ROI.All, nthreads=0)
Copy pixel values from
srcand repair any non-finite (NaNorInf) pixels.How the non-finite values are repaired is specified by one of the following modes:
OpenImageIO.NONFINITE_NONE OpenImageIO.NONFINITE_BLACK OpenImageIO.NONFINITE_BOX3
Example:
Src = ImageBuf ("tahoe.exr") ImageBufAlgo.fixNonFinite (Src, Src, OpenImageIO.NONFINITE_BOX3)
- ImageBuf ImageBufAlgo.fillholes_pushpull (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.fillholes_pushpull (dst, src, roi=ROI.All, nthreads=0)
Copy the specified ROI of
srcand fill any holes (pixels where alpha < 1) with plausible values using a push-pull technique. Thesrcimage must have an alpha channel. Thedstimage will end up with a copy of src, but will have an alpha of 1.0 everywhere, and any place where the alpha of src was < 1, dst will have a pixel color that is a plausible “filling” of the original alpha hole.Example:
Src = ImageBuf ("holes.exr") Filled = ImageBufAlgo.fillholes_pushpull (Src)
- bool ImageBufAlgo.median_filter (dst, src, width=3, height=-1, roi=ROI.All, nthreads=0)
Replace the given ROI of
dstwith thewidthxheightmedian filter of the corresponding region ofsrcusing the “unsharp mask” technique.Example:
Noisy = ImageBuf ("tahoe.exr") Clean = ImageBuf () ImageBufAlgo.median_filter (Clean, Noisy, 3, 3)
- ImageBuf ImageBufAlgo.dilate (src, width=3, height=-1, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.dilate (dst, src, width=3, height=-1, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.erode (src, width=3, height=-1, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.erode (dst, src, width=3, height=-1, roi=ROI.All, nthreads=0) }
Compute a dilated or eroded version of the corresponding region of
src.Example:
Source = ImageBuf ("source.tif") Dilated = ImageBufAlgo.dilate (Source, 3, 3)
- ImageBuf ImageBufAlgo.unsharp_mask (src, kernel="gaussian", width=3.0, contrast=1.0, threshold=0.0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.unsharp_mask (dst, src, kernel="gaussian", width=3.0, contrast=1.0, threshold=0.0, roi=ROI.All, nthreads=0)
Compute a sharpened version of the corresponding region of
srcusing the “unsharp mask” technique.Example:
Blurry = ImageBuf ("tahoe.exr") Sharp = ImageBufAlgo.unsharp_mask (Blurry, "gaussian", 5.0)
Color manipulation¶
- ImageBuf ImageBufAlgo.colorconvert (src, fromspace, tospace, unpremult=True, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.colorconvert (dst, src, fromspace, tospace, unpremult=True, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
Apply a color transform to the pixel values.
Example:
Src = ImageBuf ("tahoe.jpg") Dst = ImageBufAlgo.colorconvert (Src, "sRGB", "scene_linear")
- ImageBuf ImageBufAlgo.colormatrixtransform (src, M, unpremult=True, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.colormatrixtransform (dst, src, M, unpremult=True, roi=ROI.All, nthreads=0)
NEW in 2.1
Apply a 4x4 matrix color transform to the pixel values. The matrix can be any tuple of 16 float values.
Example:
Src = ImageBuf ("tahoe.jpg") M = ( .8047379, .5058794, -.3106172, 0, -.3106172, .8047379, .5058794, 0, .5058794, -.3106172, .8047379, 0, 0, 0, 0, 1) Dst = ImageBufAlgo.colormatrixtransform (Src, M)
- ImageBuf ImageBufAlgo.ociolook (src, looks, fromspace, tospace, unpremult=True, inverse=False, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.ociolook (dst, src, looks, fromspace, tospace, unpremult=True, inverse=False, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
Apply an OpenColorIO “look” transform to the pixel values.
Example:
Src = ImageBuf ("tahoe.jpg") Dst = ImageBufAlgo.ociolook (Src, "look", "vd8", "lnf", context_key="SHOT", context_value="pe0012")
- ImageBuf ImageBufAlgo.ociodisplay (src, display, view, fromspace="", looks="", unpremult=True, inverse=False, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.ociodisplay (dst, src, display, view, fromspace="", looks="", unpremult=True, inverse=False, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
Apply an OpenColorIO “display” transform to the pixel values.
Example:
Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.ociodisplay (Src, "sRGB", "Film", "lnf", context_key="SHOT", context_value="pe0012")
- ImageBuf ImageBufAlgo.ociofiletransform (src, name, unpremult=True, inverse=False, colorconfig="", roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.ociofiletransform (dst, src, name, unpremult=True, inverse=False, colorconfig="", roi=ROI.All, nthreads=0)
Apply an OpenColorIO “file” transform to the pixel values. In-place operations (
dstandsrcbeing the same image) are supported.Example:
Src = ImageBuf ("tahoe.exr") Dst = ImageBufAlgo.ociofiletransform (Src, "foottransform.csp")
- ImageBuf ImageBufAlgo.ocionamedtransform (src, name, unpremult=True, inverse=False, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.ocionamedtransform (dst, src, name, unpremult=True, inverse=False, context_key="", context_value="", colorconfig="", roi=ROI.All, nthreads=0)
Apply an OpenColorIO “named” transform to the pixel values.
Example:
Src = ImageBuf ("tahoe.dpx") Dst = ImageBufAlgo.ocionamedtransform (Src, "log_to_lin", context_key="SHOT", context_value="pe0012")
- ImageBuf ImageBufAlgo.unpremult (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.unpremult (dst, src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.premult (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.premult (dst, src, roi=ROI.All, nthreads=0)
- ImageBuf ImageBufAlgo.repremult (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.repremult (dst, src, roi=ROI.All, nthreads=0)
Copy pixels from
srctodst, and un-premultiply, premultiply, or re-premultiply the colors by alpha.unpremultdivides colors by alpha, but preserves original color if alpha is 0.premultmultiplies colors by alpha (even if alpha is 0).repreumltis the true inverse ofunpremult, multiplying color by alpha, but preserving color values in the alpha = 0 case.Example:
# Convert in-place from associated alpha to unassociated alpha A = ImageBuf ("a.exr") ImageBufAlgo.unpremult (A, A)
- ImageBuf ImageBufAlgo.demosaic (src, pattern="", algorithm="", layout="", white_balance_mode="", white_balance=py::none(), roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.demosaic (dst, src, pattern="", algorithm="", layout="", white_balance_mode="", white_balance=py::none(), roi=ROI.All, nthreads=0)
- Demosaic a raw digital camera image.
demosaiccan currently process Bayer-pattern images (pattern=”bayer”) using two algorithms: “linear” (simple bilinear demosaicing), and “MHC” (Malvar-He-Cutler algorithm); or X-Trans-pattern images (pattern=”xtrans”) using “linear” algorithm. When “layout” or “pattern” are absent or set to “auto” OIIO will attempt to deduct their value from the “raw:FilterPattern” attribute of the source image buffer. White-balancing mode can be se to “auto” (OIIO will try to fetch the white balancing weights from the “raw:WhiteBalance” attribute of the source image buffer, falling back to {1.0, 1.0, 1.0, 1.0} if absent), “manual” (The white balancing weights will be taken from the attribute “white_balance” (see below) if present, falling back to {1.0, 1.0, 1.0, 1.0} if absent), “none” (no white balancing will be performed). The optional “white_balance” parameter can take a tuple of three (R,G,B), or four (R,G1,B,G2) values. The order of the white balance multipliers is as specified, it does not depend on the matrix layout.Example:
Src = ImageBuf("test.cr3", 0, 0, hint) WB_RGBG = (2.0, 0.8, 1.5, 1.2) Dst = OpenImageIO.ImageBufAlgo.demosaic(Src, layout="GRBG", white_balance_mode = "manual", "white_balance = WB_RGBG)
Import / export¶
- bool ImageBufAlgo.make_texture (mode, input, outputfilename, config=ImageSpec())
Turn an input image (either an ImageBuf or a string giving a filename) into a tiled, MIP-mapped, texture file and write to the file named by (
outputfilename). Themodedescribes what type of texture file we are creating and may be one of the following:OpenImageIO.MakeTxTexture OpenImageIO.MakeTxEnvLatl OpenImageIO.MakeTxEnvLatlFromLightProbe
The
config, if supplied, is an ImageSpec that contains all the information and special instructions for making the texture. The full list of supported configuration options is given in Section Import / export.The return value is True for success, False if errors occurred, in which case the error message will be retrievable from the global
oiio.geterror().Example:
# This command line: # maketx in.exr --hicomp --filter lanczos3 --opaque-detect \ # -o texture.exr # performs the same operations as: import OpenImageIO as oiio Input = oiio.ImageBuf ("in.exr") config = oiio.ImageSpec() config.attribute ("maketx:highlightcomp", 1) config.attribute ("maketx:filtername", "lanczos3") config.attribute ("maketx:opaque_detect", 1) ok = oiio.ImageBufAlgo.make_texture (oiio.MakeTxTexture, Input, "texture.exr", config) if not ok : print("error:", oiio.geterror())
Functions specific to deep images¶
- ImageBuf ImageBufAlgo.deepen (src, zvalue=1.0, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.deepen (dst, src, zvalue=1.0, roi=ROI.All, nthreads=0)
Convert a flat image to a deep one that has one depth sample per pixel (but no depth samples for the pixels corresponding to those in the source image that have infinite “Z” or that had 0 for all color channels and no “Z” channel).
Example:
Deep = ImageBufAlgo.deepen (ImageBuf("az.exr"))
- ImageBuf ImageBufAlgo.flatten (src, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.flatten (dst, src, roi=ROI.All, nthreads=0)
Composite the depth samples within each pixel of “deep” ImageBuf
srcto produce a “flat” ImageBuf.Example:
Flat = ImageBufAlgo.flatten (ImageBuf("deepalpha.exr"))
- ImageBuf ImageBufAlgo.deep_merge (A, B, occlusion_cull, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.deep_merge (dst, A, B, occlusion_cull, roi=ROI.All, nthreads=0)
Merge the samples of two deep images
AandBinto a deep result. Ifocclusion_cullisTrue, samples beyond the first opaque sample will be discarded, otherwise they will be kept.Example:
DeepA = ImageBuf("hardsurf.exr") DeepB = ImageBuf("volume.exr") Merged = ImageBufAlgo.deep_merge (DeepA, DeepB)
- ImageBuf ImageBufAlgo.deep_holdout (src, holdout, roi=ROI.All, nthreads=0)
- bool ImageBufAlgo.deep_holdout (dst, src, holdout, roi=ROI.All, nthreads=0)
Return the pixels of
src, but only copying the samples that are closer than the opaque frontier of imageholdout. That is,holdoutwill serve as a depth holdout mask, but no samples fromholdoutwill actually be copied todst.Example:
Img = ImageBuf("image.exr") Mask = ImageBuf("mask.exr") Thresholded = ImageBufAlgo.deep_holdout (Img, Mask)
Other ImageBufAlgo methods that understand deep images¶
In addition to the previously described methods that are specific to deep images, the following ImageBufAlgo methods (described in their respective sections) work with deep inputs:
ImageBufAlgo.add
ImageBufAlgo.channels
ImageBufAlgo.compare
ImageBufAlgo.computePixelStats
ImageBufAlgo.crop
ImageBufAlgo.div
ImageBufAlgo.fixNonFinite
ImageBufAlgo.mul
ImageBufAlgo.nonzero_region
ImageBufAlgo.resample
ImageBufAlgo.sub
ColorConfig¶
The ColorConfig class that represents the set of color transformations that
are allowed.
If OpenColorIO is enabled at build time, this configuration is loaded at runtime, allowing the user to have complete control of all color transformation math. See the OpenColorIO documentation for details.
If OpenColorIO is not enabled at build time, a generic color configuration is provided for minimal color support.
- get_cicp(colorspace)¶
Find CICP code corresponding to the colorspace. Return a sequence of 4 ints, or None if not found.
Example:
colorconfig = oiio.ColorConfig() cicp = colorconfig.get_cicp("pq_rec2020_display") if cicp: primaries, transfer, matrix, color_range = cicp
This function was added in OpenImageIO 3.1.
- get_color_interop_id(colorspace)¶
Find color interop ID for the given colorspace. Returns empty string if not found.
Example:
colorconfig = oiio.ColorConfig() interop_id = colorconfig.get_color_interop_id("Rec.2100-PQ - Display")
This function was added in OpenImageIO 3.1.
- get_color_interop_id(cicp)¶
Find color interop ID corresponding to the CICP code. Returns empty string if not found.
Example:
colorconfig = oiio.ColorConfig() interop_id = colorconfig.get_color_interop_id([9, 16, 9, 1])
This function was added in OpenImageIO 3.1.
Miscellaneous Utilities¶
In the main OpenImageIO module, there are a number of values and
functions that are useful. These correspond to the C++ API functions
explained in Section Global Attributes, please refer there for
details.
- openimageio_version¶
The OpenImageIO version number is an
int, 10000 for each major version, 100 for each minor version, 1 for each patch. For example, OpenImageIO 1.2.3 would return a value of 10203.
- geterror(clear=True)¶
Retrieves the latest global error, as a string.
- attribute(name, typedesc, value)¶
- attribute(name, int_value)
- attribute(name, float_value)
- attribute(name, str_value)
Sets a global attribute (see Section Global Attributes for details), returning
Trueupon success, orFalseif it was not a recognized attribute.Example:
oiio.attribute ("threads", 0)
- getattribute(name, typedesc)¶
- get_int_attribute(name, defaultval=0)¶
- get_float_attribute(name, defaultval=0.0)¶
- get_string_attribute(name, defaultval='')¶
- get_bytes_attribute(name, defaultval='')¶
Retrieves an attribute value from the named set of global OIIO options. (See Section Global Attributes.) The
getattribute()function returns the value regardless of type, orNoneif the attribute does not exist. The typed variety will only succeed if the attribute is actually of that type specified. Type variety with the type in the name also takes a default value.For an attribute of type STRING, get_bytes_attribute in Python3 skips decoding the underlying C string as UTF-8 and returns a
bytesobject containing the raw byte string.Example:
formats = oiio.get_string_attribute ("format_list")
- set_colorspace(spec, name)¶
Set the metadata of the
specto presume that color space isname(or to assume nothing about the color space ifnameis empty).Example:
spec = oiio.ImageSpec() oiio.set_colorspace (spec, "lin_rec709_scene")
This function was added in OpenImageIO 3.0.
- set_colorspace_rec709_gamma(spec, gamma)¶
Set the metadata of the
specto reflect Rec709 color primaries and the given gamma.Example:
spec = oiio.ImageSpec() oiio.set_colorspace_rec709_gamma (spec, 2.2)
This function was added in OpenImageIO 3.0.
- equivalent_colorspace(a, b)¶
Return
Trueif the color spacesaandbare equivalent in the default active color config.Example:
# ib is an ImageBuf cs = ib.spec().get_string_attribute("oiio:ColorSpace") if oiio.equivalent_colorspace(cs, "srgb_rec709_scene") : print ("The image is sRGB")
This function was added in OpenImageIO 3.0.
- is_imageio_format_name(name)¶
Returns True if
nameis the name of a known and supported file format,Falseif it is not.Example:
>>> print (oiio.is_imageio_format_name('tiff')) True >>> print (oiio.is_imageio_format_name('Bob')) False
Python Recipes¶
This section illustrates the Python syntax for doing many common image operations from Python scripts, but that aren’t already given as examples in the earlier function descriptions. All example code fragments assume the following boilerplate:
#!/usr/bin/env python
import OpenImageIO as oiio
from OpenImageIO import ImageBuf, ImageSpec, ImageBufAlgo
Subroutine to create a constant-colored image
# Create an ImageBuf holding a n image of constant color, given the
# resolution, data format (defaulting to UINT8), fill value, and image
# origin.
def make_constimage (xres: int, yres: int, chans: int=3, format: TypeDesc=oiio.UINT8, value: tuple[int, int, int]=(0,0,0),
xoffset: int=0, yoffset: int=0) -> ImageBuf:
spec = ImageSpec (xres,yres,chans,format)
spec.x = xoffset
spec.y = yoffset
b = ImageBuf (spec)
oiio.ImageBufAlgo.fill (b, value)
return b
The image is returned as an ImageBuf, then up to the caller what to do with it next.
Subroutine to save an image to disk, printing errors
# Save an ImageBuf to a given file name, with optional forced image format
# and error handling.
def write_image (image: ImageBuf, filename: str, format: TypeDesc=oiio.UNKNOWN) :
if not image.has_error :
image.write (filename, format)
if image.has_error :
print ("Error writing", filename, ":", image.geterror())
Converting between file formats
img = ImageBuf ("input.png")
write_image (img, "output.tif")
Comparing two images and writing a difference image
A = ImageBuf ("A.tif")
B = ImageBuf ("B.tif")
compresults = ImageBufAlgo.compare (A, B, 1.0e-6, 1.0e-6)
if compresults.nfail > 0 :
print ("Images did not match, writing difference image diff.tif")
diff = ImageBufAlgo.absdiff (A, B)
image_write (diff, "diff.tif")
Changing the data format or bit depth
img = ImageBuf ("input.exr")
# presume that it's a "half" OpenEXR file
# write it back out as a "float" file:
write_image (img, "output.exr", oiio.FLOAT)
Changing the compression
The following command converts writes a TIFF file, specifically using LZW compression:
img = ImageBuf ("in.tif")
img.specmod().attribute ("compression", "lzw")
write_image (img, "compressed.tif")
The following command writes its results as a JPEG file at a compression quality of 50 (pretty severe compression):
img = ImageBuf ("big.jpg")
img.specmod().attribute ("quality", 50)
write_image (img, "small.jpg")
Converting between scanline and tiled images
img = ImageBuf ("scan.tif")
img.set_write_tiles (64, 64)
write_image (img, "tile.tif")
img = ImageBuf ("tile.tif")
img.set_write_tiles (0, 0)
write_image (img, "scan.tif")
Adding captions or metadata
img = ImageBuf ("foo.jpg")
# Add a caption:
img.specmod().attribute ("ImageDescription", "Hawaii vacation")
# Add keywords:
img.specmod().attribute ("keywords", "volcano,lava")
write_image (img, "foo.jpg")
Changing image boundaries
Change the origin of the pixel data window:
img = ImageBuf ("in.exr")
img.set_origin (256, 80)
write_image (img, "offset.exr")
Change the display window:
img = ImageBuf ("in.exr")
img.set_full (16, 1040, 16, 784)
write_image (img, "out.exr")
Change the display window to match the data window:
img = ImageBuf ("in.exr")
img.set_full (img.roi())
write_image (img, "out.exr")
Cut (trim and extract) a 128x128 region whose upper left corner is at location (900,300), moving the result to the origin (0,0) of the image plane and setting the display window to the new pixel data window:
img = ImageBuf ("in.exr")
b = ImageBufAlgo.cut (img, oiio.ROI(900,1028,300,428))
write_image (b, "out.exr")
Extract just the named channels from a complicted many-channel image, and add an alpha channel that is 1 everywhere
img = ImageBuf ("allmyaovs.exr")
b = ImageBufAlgo.channels (img, ("spec.R", "spec.G", "spec.B", 1.0))
write_image (b, "spec.tif")
Fade 30% of the way between two images
a = ImageBufAlgo.mul (ImageBuf("A.exr"), 0.7)
b = ImageBufAlgo.mul (ImageBuf("B.exr"), 0.3)
fade = ImageBufAlgo.add (a, b)
write_image (fade, "fade.exr")
Composite of small foreground over background, with offset
fg = ImageBuf ("fg.exr")
fg.set_origin (512, 89)
bg = ImageBuf ("bg.exr")
comp = ImageBufAlgo.over (fg, bg)
write_image (comp, "composite.exr")
Write multiple ImageBufs into one multi-subimage file
bufs = (...) # Suppose that bufs is a tuple of ImageBuf
specs = (...) # specs is a tuple of the specs that describe them
# Open with intent to write the subimages
out = ImageOutput.create ("multipart.exr")
out.open ("multipart.exr", specs)
for s in range(len(bufs)) :
if s > 0 :
out.open ("multipart.exr", specs[s], "AppendSubimage")
bufs[s].write (out)
out.close ()
Running OpenImageIO in Jupyter Notebooks and displaying ImageBuf
Like any other Python package, OpenImageIO can be used in Jupyter notebooks. The ImageBuf objects support getting displayed inline within notebooks.
Warning
Currently, ImageBuf objects get displayed as uint8 PNGs inside of notebooks. ImageBuf objects that store images with higher bit depths get dithered to account for this. Keep in mind that directly saving the inline image to disk will not preserve the original image within the ImageBuf.
Running a Local Jupyter Notebook:
If you want to run a local Jupyter notebook with OpenImageIO, you can do so from within the Python environment in which you have installed OpenImageIO.
pip install jupyterlab
jupyter lab
Alternatively, if you prefer using uv, you can run the following command:
uv run --with jupyter jupyter lab