-
Notifications
You must be signed in to change notification settings - Fork 26
/
class_names.py
49 lines (46 loc) · 1.16 KB
/
class_names.py
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
42
43
44
45
46
47
48
49
# 自定义类别
def fifteen_classes():
return ['其他类别',
'水田',
'水浇地',
'旱耕地',
'园地',
'乔木林地',
'灌木林地',
'天然草地',
'人工草地',
'工业用地',
'城市住宅',
'村镇住宅',
'交通运输',
'河流',
'湖泊',
'坑塘']
def eight_classes():
return [
'背景',
'农田',
'城市',
'村庄',
'水体',
'森林',
'道路',
'其他'
]
def seven_classes():
return [
'耕地',
'城市',
'农村',
'水体',
'森林',
'道路',
'其他'
]
def five_classes():
return ['其他类别',
'建筑',
'田地',
'森林',
'草地',
'水体']