Measurement Studio for VB6

cancel
Showing results for 
Search instead for 
Did you mean: 

Converting 3d Graph Color spectrum into RGB LUT's

I am trying to generate an RGB(0 to 255,0 to 2) Look Up Table array (used in an image application) which coresponds to the color spectrum used in the measurement studio 3DGraph tool.

This allows me to generate a false color image.

Any ideas?
0 Kudos
Message 1 of 2
(3,560 Views)
Take a look at the ColorMapValues and ColorMapColors properties of the CWPlot3D object. ColorMapValues is an array of doubles and ColorMapColors is an array of longs and together they represent a vector of value-color pairs for the color map. If you set the ColorMapStyle to cwColorSpectrum, you should be able to evaluate the elements in the ColorMapValues and ColorMapColors arrays to determine how the color spectrum is generated.

- Elton
0 Kudos
Message 2 of 2
(3,560 Views)