Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | /**
* Worker Types are used to define the types the worker that is getting performed
*/
enum ChangeTypes {
POLYSEG_CONTOUR_TO_LABELMAP = 'polySeg/convertContourToVolumeLabelmap',
POLYSEG_SURFACE_TO_LABELMAP = 'polySeg/convertSurfacesToVolumeLabelmap',
POLYSEG_CONTOUR_TO_SURFACE = 'polySeg/convertContourToSurface',
POLYSEG_LABELMAP_TO_SURFACE = 'polySeg/convertLabelmapToSurface',
SURFACE_CLIPPING = 'surfaceClipping',
}
export default ChangeTypes;
|