Skip to content

MVE2EXR

Simon edited this page Nov 4, 2020 · 3 revisions

Draft for MVEI 2 EXR conversion

The .mvei image format https://github.com/simonfuhrmann/mve/wiki/MVE-File-Format

The MVE image file format starts with the signature 89 4D 56 45 5F 49 4D 41 47 45 0A (hex).

89: Has the high bit set to discriminate from text files.
4D 56 45 5F 49 4D 41 47 45: The ASCII letters MVE_IMAGE.
0A: A Unix newline character.

What follows is binary signed 32-bit integers for width, height and channels, and the type.

The type corresponds to the mve::ImageType enum.

Then the binary image data follows.


https://github.com/simonfuhrmann/mve/issues/482


A demo conversion could be implemented with ImageMagick

https://superuser.com/questions/294270/how-to-view-raw-binary-data-as-an-image-with-given-width-and-height

https://imagemagick.org/script/formats.php

Clone this wiki locally