The MakeLUT function shows how to generate LUT’s with diverging color schemes as described by Kenneth Moreland on his website (given on the example’s webpage).
Is there a way to create these diverging LUT’s using a vtkLogLookupTable?
I know that for scalars I could always take the log of the scalar and use a linear vtkLogLookupTable.
Well, I tweaked the displacement example that I mentioned before and the log LUT worked. At first there was the error:
vtkLookupTable.cxx:160 ERR| vtkLogLookupTable (0x1ee46f0): Bad table range for log scale: [-1, 1]
When I changed the range in the example, it worked and there was no error message. I need to check this on something more complex in the future. But, at least there is something.