OpenEXR.jl

Saving and loading of OpenEXR files.
Author twadleigh
Popularity
6 Stars
Updated Last
2 Years Ago
Started In
April 2021

OpenEXR.jl

Build Status codecov.io

Saving and loading of OpenEXR files.

Load an EXR file

using OpenEXR

myimage = OpenEXR.load("myimage.exr")

myimage has type Array{T,2} where T is one of:

  • RGBA{Float16}
  • RGB{Float16}
  • GrayA{Float16}
  • Gray{Float16}

depending on which channels are present in the file.

Save an image as an EXR file

OpenEXR.save("myimage2.exr", myimage)

myimage can be any subtype of AbstractArray{C,2} where C is any color type defined in ColorTypes.jl.