Skip to content
This repository has been archived by the owner on Jan 14, 2023. It is now read-only.
/ QtOIIO Public archive

Qt Image IO plugin based on OpenImageIO.

License

Unknown, MPL-2.0 licenses found

Licenses found

Unknown
COPYING.md
MPL-2.0
LICENSE-MPL2.md
Notifications You must be signed in to change notification settings

alicevision/QtOIIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

  • Windows: Build status

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"
  }
}