forked from tjwei/Quick-Neural-Art-Transfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathart.kv
54 lines (46 loc) · 1.25 KB
/
art.kv
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
#:kivy 1.7.1
#:import ListAdapter kivy.adapters.listadapter.ListAdapter
#:import Factory kivy.factory.Factory
<MenuScreen>:
BoxLayout:
Button:
text: 'Goto settings'
on_press: root.manager.current = 'camera'
Button:
text: 'style'
on_press: root.manager.current = "style"
<CameraScreen>
FloatLayout:
orientation: 'vertical'
Label:
id: w_info
font_name: 'NotoSansCJK.ttc'
size_hint: (1, .2,)
pos_hint: {'x': .0, 'y':.8}
<ProcessScreen>
FloatLayout:
orientation: 'vertical'
Label:
id: w_info
font_name: 'NotoSansCJK.ttc'
size_hint: (1, .2,)
pos_hint: {'x': .0, 'y':.8}
ProgressBar:
id: w_pb
min: 0.
max: 1.
size_hint_x: 1.
size_hint_y: None
height: '48dp'
pos_hint: {'x': .0, 'y':.78}
<StyleScreen>
BoxLayout:
orientation: 'vertical'
Label:
id: w_info
font_name: 'NotoSansCJK.ttc'
size_hint: (1, .2,)
Carousel:
id: w_carousel
direction: 'right'
loop: True