|
| 1 | +export const DEFAULT_CLASSIFICATION_COLORS: Record<number, [number, number, number]> = { |
| 2 | + 0: [0.5, 0.5, 0.5], // Never Classified |
| 3 | + 1: [0.7, 0.7, 0.7], // Unclassified |
| 4 | + 2: [0.6, 0.4, 0.2], // Ground |
| 5 | + 3: [0.5, 0.8, 0.5], // Low Vegetation |
| 6 | + 4: [0.2, 0.7, 0.2], // Medium Vegetation |
| 7 | + 5: [0.0, 0.4, 0.0], // High Vegetation |
| 8 | + 6: [1.0, 0.2, 0.2], // Building |
| 9 | + 7: [0.3, 0.3, 0.3], // Low Point (noise) |
| 10 | + 8: [0.6, 0.3, 0.8], // Model Key-point |
| 11 | + 9: [0.2, 0.4, 1.0], // Water |
| 12 | + 10: [1.0, 0.6, 0.0], // Rail |
| 13 | + 11: [0.9, 0.9, 0.3], // Road Surface |
| 14 | + 12: [0.0, 0.8, 0.8], // Overlap |
| 15 | + 17: [0.9, 0.5, 0.4], // Bridge Deck |
| 16 | + 18: [0.5, 0.0, 0.0], // High Noise |
| 17 | +}; |
0 commit comments