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:
The project is released under MPLv2, see COPYING.md.
Get the source code:
git clone --recursive git://github.com/alicevision/QtOIIO
cd QtOIIO
See INSTALL.md to build and install the project.
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"
}
}