We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bba64ad commit 85beabaCopy full SHA for 85beaba
readme.md
@@ -126,4 +126,11 @@ uint32_t size_x; // LUT X size, at least 1
126
uint32_t size_y; // LUT Y size, at least 1
127
uint32_t size_z; // LUT Z size, at least 1
128
```
129
-the header is followed by actual LUT data.
+the header is followed by actual LUT data: `channels*size_x*size_y*size_z` floats (`data_type==0`) or half-precision
130
+floats (`data_type==1`).
131
+
132
+The data is in row-major order, i.e. X axis data changes the fastest, and Z axis changes the slowest.
133
134
+If data is filtered (`filter==1`) to make it more compressible, it needs to be un-filtered after reading,
135
+and filtered during writing. This does not change the data size, just makes it have more repeated same
136
+sequences for smoothly varying data.
0 commit comments