All files / tools/src/enums WorkerTypes.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

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 18 19 20 21 22 23 24 25                                                 
/**
 * Worker Types are used to define the types the worker that is getting performed
 */
enum ChangeTypes {
  POLYSEG_CONTOUR_TO_LABELMAP = 'Converting Contour to Labelmap',
 
  POLYSEG_SURFACE_TO_LABELMAP = 'Converting Surfaces to Labelmap',
 
  POLYSEG_CONTOUR_TO_SURFACE = 'Converting Contour to Surface',
 
  POLYSEG_LABELMAP_TO_SURFACE = 'Converting Labelmap to Surface',
 
  SURFACE_CLIPPING = 'Clipping Surfaces',
 
  COMPUTE_STATISTICS = 'Computing Statistics',
 
  INTERPOLATE_LABELMAP = 'Interpolating Labelmap',
 
  COMPUTE_LARGEST_BIDIRECTIONAL = 'Computing Largest Bidirectional',
 
  GENERATE_CONTOUR_SETS = 'Generating Contour Sets',
}
 
export default ChangeTypes;