Spaces:
Runtime error
Runtime error
File size: 1,415 Bytes
ec3efd7 2cc3198 ec3efd7 2cc3198 ec3efd7 b7b124d ec3efd7 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
import type { Color } from './types';
export const COLOR_LIST: Color[] = [
{ color: [219, 14, 154], label: 'building'},
{ color: [147, 142, 123], label: 'pervious surface'},
{ color: [248, 12, 0], label: 'impervious surface'},
{ color: [169, 113, 1], label: 'bare soil'},
{ color: [21, 83, 174], label: 'water'},
{ color: [25, 74, 38], label: 'coniferous'},
{ color: [70, 228, 131], label: 'deciduous'},
{ color: [243, 166, 13], label: 'brushwood'},
{ color: [102, 0, 130], label: 'vineyard'},
{ color: [85, 255, 0], label: 'herbaceous vegetation'},
{ color: [255, 243, 13], label: 'agricultural land'},
{ color: [228, 223, 124], label: 'plowed land'},
{ color: [61, 230, 235], label: 'swimming pool'},
{ color: [255, 255, 255], label: 'snow'},
{ color: [138, 179, 160], label: 'clear cut'},
{ color: [107, 113, 79], label: 'mixed'},
];
export const API = '/predict';
export const IMAGES_LIST = [
'/samples/default.jpg',
'/samples/example0.png',
'/samples/example1.png',
'/samples/example2.png',
'/samples/example3.png',
'/samples/example4.png',
'/samples/example5.png',
'/samples/example6.jpg',
];
export const PRESETS = [
["High resolution satellite image, 4K, ultra detailed", "Realistic"],
["Colorful lego bricks", "Lego brick"],
["Black and white paper pencil drawing", "Pencil"],
["Oil on canvas painting", "Painting"]
]; |