user123
January 21, 2024, 11:12am
1
I just saw that model viewer now uses ultraHDR. I had never heard of it, but its sounds pretty fantastic.
google:master
← google:ultraHDR
opened 10:43PM - 27 Nov 23 UTC
This is an exciting one! Custom lighting environments with 10-30x less file size… , using [UltraHDR](https://developer.android.com/guide/topics/media/platform/hdr-image-format) (a backward-compatible, HDR version of JPEG) rather than .hdr. This is pulling in a dependency on https://github.com/MONOGRID/gainmap-js (thanks @daniele-pelagatti!), which is a very fast and lightweight decoder that leverages the browser's in-built JPEG decoding that ends up faster than the JS .hdr decoder we use now.
Monogrid has also helpfully made available a simple [webpage](https://gainmap-creator.mono-grid.com/) that will do local conversion of .hdr to UltraHDR .jpg files. This brought Spruit Sunrise down from 1.5MB to 122KB - and the compression is even more impressive with grayscale studio lighting. We're only going to support the single-file .jpg approach for now - separate WebP files gives a bit of additional compression, but it seems too inconvenient to our users.
We put an upstream fix into three.js to make this work better, so I'll wait to merge this until we've updated to the next release.
Does anyone have experience with it? Pros/Cons? I currently use RGBELoader and PMREMGenerator. Is this something that I can just rip out and use?
drcmda
January 21, 2024, 11:58am
2
seems like you can just use it? there’s nothing really particular in that pr. GitHub - MONOGRID/gainmap-js: A Javascript (TypeScript) Port of Adobe Gainmap Technology for storing HDR Images using an SDR Image + a gainmap
...
import { HDRJPGLoader } from '@monogrid/gainmap-js'
const renderer = new WebGLRenderer()
const loader = new HDRJPGLoader(renderer)
const result = await loader.loadAsync('gainmap.jpeg')
const scene = new Scene()
const mesh = new Mesh(
new PlaneGeometry(),
new MeshBasicMaterial({ map: result.renderTarget.texture })
)
scene.add(mesh)
renderer.render(scene, new PerspectiveCamera())
scene.background = result.renderTarget.texture
scene.background.mapping = EquirectangularReflectionMapping
other than that, you can also get good results with EXR + DWAB compression, see GitHub - pmndrs/assets: 📦 Importable base64 encoded CC0 assets
would be interesting to see which one is faster actually. dwab has a little runtime cost.