You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I suspect there is an issue with the texture / display of L16 images. It works if the edit panel is open and a Rgba8 operator is automatically added.
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots / sample files
If applicable, add screenshots to help explain your problem. You can also attach problematic images here to help test the bug. Please pay attention to image copyright.
Desktop (please complete the following information):
OS: Windows, MacOS, Linux, NetBSD...
[Linux] Desktop environment, distribution, do you use Wayland?
Version
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Oh, that could be a possibility. I am testing Dicom support and they could be out of visual range. I am not sure, but even if that was the case I don't know if converting them to rgba8 would compress them into 8bit per channel so they become visible - not sure if image is doing anything along those lines. I can check that!
Okay, I checked it up:
Using the edit panel sets the data type to 8 bit - that's why it works. As a workaround: change it to rgba32f if you need more dynamic range.
Using 16 Bit data with values up to 2^16-1 always results in a black rendering.
Will look more deeply into in the evening.
I think it's linked to the texture type. R16 is missing, so I used R16Uint
I suggest a 2 level fix:
Convert 16 Bit types to float in texture wrapper - we know that float is working fine (short term fix, will do it by this evening so you can carry on with dicom)
Add R16 type to notan and bring up a pull request to them (long term fix to save memory and cpu cycles)
I'm still kinda a newbie to rust. Is there an option to clone notan from github and use that source code directly to compile oculante with it? So I would have a good setup to test everything together :)
Describe the bug
I suspect there is an issue with the texture / display of L16 images. It works if the edit panel is open and a Rgba8 operator is automatically added.
Tagging @B-LechCode for visibility.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots / sample files
If applicable, add screenshots to help explain your problem. You can also attach problematic images here to help test the bug. Please pay attention to image copyright.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: