diff options
author | Norbert Preining <norbert@preining.info> | 2024-11-13 03:03:42 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2024-11-13 03:03:42 +0000 |
commit | 5037cc8f66c1c2dfc56accf0f29866977fce1f11 (patch) | |
tree | 916c5b917a84c268d98a6176a93f0a4c3e63a102 /graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/README.md | |
parent | d63a87aba38d505e5b1322a0fd3b93549e7cb203 (diff) |
CTAN sync 202411130303
Diffstat (limited to 'graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/README.md')
-rw-r--r-- | graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/README.md | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/README.md b/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/README.md deleted file mode 100644 index 06a9e3c0ac..0000000000 --- a/graphics/asymptote/cudareflect/tinyexr/examples/cube2longlat/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# Simple HDR cubemap to longlat(longitude latitude. or known as equirectangular) converter. - -## Requirements - -* C++11 compiler - -## Coordinate definition. - -* Y-up -* Right-handed -* Center is -z - -## Usage - -Assume cubemap image is given by 6 images(6 faces). - -``` -$ ./cube2longlat px.exr nx.exr py.exr ny.exr pz.exr nz.exr 512 longlat.exr (phi_offset) -``` - -Optional `phi_offset` is used to add offset(by angle) to phi to rotate X and Z faces. - - -## Supported input image format - -* [ ] RGBM(Filament's RGBM encoding. Multiplier is 16, and gamma corrected) Implemented but not tested. -* [x] EXR - -## Supported output image format - -* [ ] RGBM(Filament's RGBM encoding. Multiplier is 16, and gamma corrected) Implemented but not tested. -* [x] EXR -* [x] RGBE - -## Note - -When you create cubemap using Filament's cmgen https://github.com/google/filament/tree/master/tools/cmgen , its generated cubemap images are mirrored by X direction. -Use `--mirror` when invoking `cmgen` if required. - -## TODO - -* Single cubemap image(cross layout) -* Better antialiasing -* theta offset -* Mirroring. - |