Replies: 1 comment 10 replies
-
Thanks! This is really high up on my wishlist too. Here are a couple of thoughts:
|
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently oculante uses
rgba8
internally. this is fine for a general purpose image viewer, but oculante has a lot of features that make it suitable for use in professional environments. however for a lot of those environments the internal 8bit handling makes this unusable. migrating torgba32f
will open the doors for a lot of workloads, Currently you can already use oculante to for getting specific RGB values. these values are always limited to0-255
.one such workload is when verifying HDR mapping it's useful to be able to view the images RGB values, however for HDR 10bit+ is needed, and often working with 16bit images (thanks to
uint16
) which have the ranges of0-1023
and0-65535
respectively. and the rounding error can be quite significant. It is useful for many users to be working with 0-255. so it would be optimal to have a way to balance both of course.working with high bitdepths internally opens the doors for a lot of use cases, from being necessary to HDR support to image verification.
Beta Was this translation helpful? Give feedback.
All reactions