This application allows mapping a label image to a 8-bits RGB image (in both ways) using different methods.
-The custom method allows using a custom look-up table. The look-up table is loaded from a text file where each line describes an entry. The typical use of this method is to colorise a classification map.
-The continuous method allows mapping a range of values in a scalar input image to a colored image using continuous look-up table, in order to enhance image interpretation. Several look-up tables can been chosen with different color ranges.
-The optimal method computes an optimal look-up table. When processing a segmentation label image (label to color), the color difference between adjacent segmented regions is maximized. When processing an unknown color image (color to label), all the present colors are mapped to a continuous label list.
- The support image method uses a color support image to associate an average color to each region.
[param] -ram <int32> Available memory for processing (in MB). Mandatory: False. Default Value: "128"
[choice] -op Selection of the operation to execute (default is : label to color). labeltocolor,colortolabel. Mandatory: True. Default Value: "labeltocolor"
[group] -labeltocolor
[group] -colortolabel
[param] -op.colortolabel.notfound <int32> Label to use for unknown colors.. Mandatory: False. Default Value: "404"
[choice] -method Selection of color mapping methods and their parameters. custom,continuous,optimal,image. Mandatory: True. Default Value: "custom"
[group] -custom
[param] -method.custom.lut <string> An ASCII file containing the look-up table
with one color per line
(for instance the line '1 255 0 0' means that all pixels with label 1 will be replaced by RGB color 255 0 0)
Lines beginning with a # are ignored. Mandatory: True. Default Value: ""
[param] -method.continuous.min <float> Set the lower input value of the mapping range.. Mandatory: True. Default Value: "0"
[param] -method.continuous.max <float> Set the higher input value of the mapping range.. Mandatory: True. Default Value: "255"
[group] -optimal
[param] -method.optimal.background <int32> Value of the background label. Mandatory: True. Default Value: "0"
[group] -image
[param] -method.image.in <string> Support image filename. LUT is calculated using the mean af pixel value on the area. First of all image is normalized with extrema rejection. Mandatory: True. Default Value: ""
The segmentation optimal method does not support streaming, and thus large images. The operation color to label is not implemented for the methods continuous LUT and support image LUT.
ColorMapping using support image is not threaded.