-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvoteClassifyLabelStudio
More file actions
118 lines (107 loc) · 5.37 KB
/
voteClassifyLabelStudio
File metadata and controls
118 lines (107 loc) · 5.37 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<View>
<!--Style>
:cursor {color:black !important; border-color:black !important;
background:black !important;}
</Style-->
<Header size="2">FRDC-Vote and Classify</Header>
<Header size="4" value="$url"/>
<Image name="image" value="$img" zoom="true" zoomControl="true"/>
<Header size="8">Select Species</Header>
<View style="height:200px; overflow:auto;">
<Filter name="filterSpecies" toName="label" hotkey="shift+f" minlength="0" placeholder="Type Species Name"/>
<PolygonLabels name="label" toName="image" strokeWidth="3" pointSize="small" opacity="0.0" required="True">
<Label value="Alstonia Angulstiloba" background="#FFA39E"/>
<Label value="Bridelia Sp." background="#D4380D"/>
<Label value="Calophyllum" background="#FFC069"/>
<Label value="Campnosperma Auriculatum" background="#AD8B00"/>
<Label value="Cinnamomum Iners" background="#D3F261"/>
<Label value="Claoxylon Indicum" background="#389E0D"/>
<Label value="Clausena Excavata" background="#5CDBD3"/>
<Label value="Cratoxylum Formosum" background="#096DD9"/>
<Label value="Dillenia Suffruticosa" background="#ADC6FF"/>
<Label value="Fagraea fragans" background="#389E0D"/>
<Label value="Falcataria Moluccana" background="#9254DE"/>
<Label value="Ficus Variegata" background="#F759AB"/>
<Label value="Ixonanthes reticulata" background="#008BAD"/>
<Label value="Koompassia malaccensis" background="#FFA39E"/>
<Label value="Leea Indica" background="#FFA39E"/>
<Label value="Litsea firma" background="#F8FE00"/>
<Label value="Macaranga Gigantea" background="#D4380D"/>
<Label value="Palm Tree" background="#FFC069"/>
<Label value="Pennisetum Purpureum" background="#AD8B00"/>
<Label value="Pometia Pinnata" background="#D3F261"/>
<Label value="Prunus polystachya" background="#F3A201"/>
<Label value="Sandoricum Koetjape" background="#389E0D"/>
<Label value="Shorea Leprosula" background="#5CDBD3"/>
<Label value="Spathodea Campanulatum" background="#096DD9"/>
<Label value="Sterculia Parviflora" background="#E178C5"/>
<Label value="Syzygium grande" background="#5C0BD3"/>
<Label value="Syzygium Polyanthum" background="#9254DE"/>
<Label value="Terminalia Catappa" background="#F759AB"/>
<Label value="_Unknown" background="#676767"/>
</PolygonLabels>
</View>
<View visibleWhen="region-selected">
<Header>Select Quality</Header>
<Choices name="Quality" toName="image" perRegion="true" choice="single-radio" required="false">
<Choice value="Good" background="green"/>
<Choice value="Bad" background="red"/>
</Choices>
<Choices name="BadRatingReason" toName="image" choice="multiple" showInLine="true" visibleWhen="choice-selected" whenTagName="Quality" whenChoiceValue="Bad" perRegion="true">
<Choice value="Artefacts Present"/>
<Choice value="Brightness Problem"/>
<Choice value="Others (write in comment)"/>
<View visibleWhen="choice-selected" whenTagName="BadRatingReason" whenChoiceValue="Others (write in comment)">
<TextArea name="BadRatingReasonComment" toName="image" perRegion="true" placeholder="Write the reason">
</TextArea>
</View>
</Choices>
<Header>Submitted By (Team):</Header>
<View>
<!--Filter name="SubmitTeamFilter" toName="Team" hotkey="shift+f" minlength="0" placeholder="type team name"/ -->
<Labels required="false" name="Team" toName="image" showInline="false" perRegion="true">
<Label value="EngineeringSubmit"/>
<Label value="EcologySubmit"/>
</Labels>
<Header size="7">UserID (Submit):</Header>
<!--TextArea required="false" name="SubmitUserId" toName="image" placeholder="userID" perRegion="true"/ -->
<Choices name="SubmitUserIdChoice" toName="image" perRegion="true" choice="single-radio" visibleWhen="region-selected">
<Choice value="jjsit"/>
<Choice value="shyap"/>
<Choice value="jchang"/>
<Choice value="bchew"/>
<Choice value="yksim"/>
<Choice value="ahassan"/>
</Choices>
</View>
<Header>Checked By (Team):</Header>
<View>
<!--Filter name="CheckTeamFilter" toName="CheckTeam" hotkey="shift+f" minlength="0" placeholder="type team name"/ -->
<Labels required="false" name="CheckTeam" toName="image" showInline="false" perRegion="true">
<Label value="EngineeringChecked_Agree"/>
<Label value="EcologyChecked_Agree"/>
<Label value="EngineeringChecked_Disagree"/>
<Label value="EcologyChecked_Disagree"/>
</Labels>
<Header size="7">UserID (Check):</Header>
<!-- TextArea name="CheckUserId" toName="image" placeholder="userID" perRegion="true"/-->
<Choices name="CheckUserIdChoice" toName="image" perRegion="true" choice="single-radio" visibleWhen="region-selected">
<Choice value="jjsit"/>
<Choice value="shyap"/>
<Choice value="jchang"/>
<Choice value="bchew"/>
<Choice value="yksim"/>
<Choice value="ahassan"/>
</Choices>
</View>
<Header>General Comment</Header>
<View>
<Labels required="false" name="CommentType" toName="image" showInline="false" perRegion="true">
<Label value="New Comment"/>
<Label value="Resolved Comment"/>
</Labels>
<TextArea name="GeneralComment" toName="image" perRegion="true" placeholder="General Comment">
</TextArea>
</View>
</View>
</View>