alicevision / QtOIIO

Qt Image IO plugin based on OpenImageIO.
http://www.openimageio.org
Other
41 stars 14 forks source link
alicevision depthmaps exr-format meshroom openimageio plugin qt

QtOIIO - OIIO plugin for Qt

QtOIIO is a C++ plugin providing an OpenImageIO backend for image IO in Qt. It has been developed to visualize RAW images from DSLRs in Meshroom, as well as some intermediate files of the AliceVision framework stored in EXR format (i.e: depthmaps).

Continuous integration:

License

The project is released under MPLv2, see COPYING.md.

Get the project

Get the source code:

git clone --recursive git://github.com/alicevision/QtOIIO
cd QtOIIO

See INSTALL.md to build and install the project.

Usage

When added to the QT_PLUGIN_PATH, all supported image files will be loaded through this plugin.

This plugin also provides a QML Qt3D Entity to load depthmaps files stored in EXR format:

import DepthMapEntity 1.0

Scene3D {
  DepthMapEntity {
    source: "depthmap.exr"
  }
}