1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+
4
+ < head >
5
+
6
+ < meta charset ="utf-8 ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no ">
8
+ < meta name ="description " content ="">
9
+ < meta name ="author " content ="">
10
+
11
+ < title > Depth and RGB Estimator</ title >
12
+
13
+ <!-- Bootstrap core CSS -->
14
+ < link href ="static/vendor/bootstrap/css/bootstrap.min.css " rel ="stylesheet ">
15
+ < link rel ="stylesheet " href ="{{ url_for('static', filename='vendor/bootstrap/css/main.css') }} ">
16
+
17
+ <!-- Custom styles for this template -->
18
+
19
+
20
+ </ head >
21
+
22
+ < body >
23
+
24
+ <!-- Navigation -->
25
+ < nav class ="navbar navbar-default navbar-fixed-top navbar-inverse ">
26
+ < div class ="container ">
27
+ < div class ="collapse navbar-collapse " id ="navbarResponsive ">
28
+ < ul class ="nav navbar-nav ">
29
+ < li class ="nav-item ">
30
+ < a class ="nav-link " href ="/ "> Pix2Depth
31
+ </ a >
32
+ </ li >
33
+ < li class ="nav-item ">
34
+ < a class ="nav-link " href ="depth "> Depth2Pix</ a >
35
+ </ li >
36
+ < li class ="nav-item ">
37
+ < a class ="nav-link " href ="portrait "> Portrait Mode</ a >
38
+ </ li >
39
+ < li class ="nav-item active ">
40
+ < a class ="nav-link " href ="examples "> Examples</ a >
41
+ < span class ="sr-only "> (current)</ span >
42
+ </ li >
43
+ </ ul >
44
+ </ div >
45
+ </ div >
46
+ </ nav >
47
+
48
+ <!-- Page Content -->
49
+ < div class ="container " id ="main-content ">
50
+ < div class ="row ">
51
+ < div class ="col-lg-12 text-center ">
52
+ < h1 > Examples</ h1 >
53
+ < form action ="/examples " method ="post " enctype ="multipart/form-data ">
54
+ < div class ="row ">
55
+ < span class ="btn btn-default btn-file ">
56
+ < input type ="text " name ="epoch " placeholder ="0 - 32 ">
57
+ </ span >
58
+ < input type ="submit " value ="Show Epoch " class ="btn btn-primary ">
59
+ </ div >
60
+ </ form >
61
+ < div class ="container " id ='header '>
62
+ < div class ="row ">
63
+ < div class ='col-lg-2 '>
64
+ < h2 > GT RGB</ h2 >
65
+
66
+ </ div >
67
+ < div class ='col-lg-2 '>
68
+ < h2 > GT Depth</ h2 >
69
+ </ div >
70
+ < div class ='col-lg-2 '>
71
+ < h2 > Fake depth</ h2 >
72
+ </ div >
73
+ < div class ='col-lg-2 '>
74
+ < h2 > Fake RGB</ h2 >
75
+ </ div >
76
+ < div class ='col-lg-2 '>
77
+ < h2 > Cycle RGB</ h2 >
78
+ </ div >
79
+ < div class ='col-lg-2 '>
80
+ < h2 > Cycle Depth</ h2 >
81
+ </ div >
82
+
83
+ </ div >
84
+ </ div >
85
+ < div class ='container ' style ='overflow:scroll;height:500px; '>
86
+ {% for list_images in path %}
87
+ < div class ="row ">
88
+ {% for images in list_images%}
89
+ < img src ="{{images}} " id ='example_img '> {% endfor %}
90
+ </ div >
91
+ {% endfor %}
92
+ </ div >
93
+
94
+ </ div >
95
+ </ div >
96
+ </ div >
97
+
98
+ <!-- Bootstrap core JavaScript -->
99
+ < script src ="static/vendor/jquery/jquery.min.js "> </ script >
100
+ < script src ="static/vendor/bootstrap/js/bootstrap.js "> </ script >
101
+
102
+ </ body >
103
+
104
+ </ html >
0 commit comments