Spaces:
Runtime error
Runtime error
Commit
·
40fdc2a
1
Parent(s):
06fa6cd
Removed Unnecessary files
Browse files- .gitignore +1 -1
- static/css/style.css +0 -138
- static/images/river_and_mountains.png +0 -0
- static/images/salmon_640.jpeg +0 -0
- static/images/some images from pixabay.com.txt +0 -0
- static/svg/book-open-svgrepo-com.svg +0 -5
- static/svg/chemistry-flask-svgrepo-com.svg +0 -6
- static/svg/done-1477-svgrepo-com.svg +0 -19
- static/svg/eye-svgrepo-com.svg +0 -36
- static/svg/house-svgrepo-com.svg +0 -4
- static/svg/svgs from svgrepo.com.txt +0 -0
- static/svg/upload-svgrepo-com.svg +0 -5
.gitignore
CHANGED
|
@@ -7,10 +7,10 @@ user_data/*
|
|
| 7 |
models/*
|
| 8 |
tmp/*
|
| 9 |
*.pyc
|
|
|
|
| 10 |
|
| 11 |
.ipynb_checkpoints
|
| 12 |
.tmp*
|
| 13 |
-
*.jpg
|
| 14 |
*.log
|
| 15 |
*.pdf
|
| 16 |
*.mp4
|
|
|
|
| 7 |
models/*
|
| 8 |
tmp/*
|
| 9 |
*.pyc
|
| 10 |
+
lib/yolov5/data/images/*
|
| 11 |
|
| 12 |
.ipynb_checkpoints
|
| 13 |
.tmp*
|
|
|
|
| 14 |
*.log
|
| 15 |
*.pdf
|
| 16 |
*.mp4
|
static/css/style.css
DELETED
|
@@ -1,138 +0,0 @@
|
|
| 1 |
-
:root {
|
| 2 |
-
--fisheye_color: #58df94;
|
| 3 |
-
--caltech_orange: #FF6C0C;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
html,
|
| 7 |
-
body {
|
| 8 |
-
height: 100%;
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
-
body {
|
| 12 |
-
/* padding-top: 40px; */
|
| 13 |
-
padding-bottom: 40px;
|
| 14 |
-
background-color: #f5f5f5;
|
| 15 |
-
}
|
| 16 |
-
|
| 17 |
-
#content {
|
| 18 |
-
padding-top: 40px;
|
| 19 |
-
}
|
| 20 |
-
|
| 21 |
-
#home_banner * {
|
| 22 |
-
transition: all .2s ease-in-out;
|
| 23 |
-
}
|
| 24 |
-
#home_banner:hover > svg {
|
| 25 |
-
transform: scale(1.3) rotate(180deg);
|
| 26 |
-
}
|
| 27 |
-
#home_banner:hover #banner_svg_eye {
|
| 28 |
-
fill: var(--fisheye_color)
|
| 29 |
-
}
|
| 30 |
-
#home_banner:hover #banner_svg_slit {
|
| 31 |
-
fill: #231F20;
|
| 32 |
-
}
|
| 33 |
-
#home_banner:hover #banner_svg_pupil {
|
| 34 |
-
fill: #FFFFFF;
|
| 35 |
-
}
|
| 36 |
-
#home_banner > span {
|
| 37 |
-
color: black;
|
| 38 |
-
font-style: italic;
|
| 39 |
-
}
|
| 40 |
-
#home_banner:hover > span {
|
| 41 |
-
transform: translateX(6px);
|
| 42 |
-
}
|
| 43 |
-
#home_banner:hover #banner_text_caltech {
|
| 44 |
-
/*color: var(--caltech_orange);*/
|
| 45 |
-
}
|
| 46 |
-
#home_banner:hover #banner_text_fisheye {
|
| 47 |
-
/*color: var(--fisheye_color);*/
|
| 48 |
-
}
|
| 49 |
-
|
| 50 |
-
.mode_screen {
|
| 51 |
-
width: calc(100% - 280px);
|
| 52 |
-
display: none;
|
| 53 |
-
max-height: 100vh;
|
| 54 |
-
overflow-y: scroll;
|
| 55 |
-
position: absolute;
|
| 56 |
-
top: 0px;
|
| 57 |
-
left: 280px;
|
| 58 |
-
}
|
| 59 |
-
.page_image {
|
| 60 |
-
max-width: min(95%, 600px);
|
| 61 |
-
}
|
| 62 |
-
.result-download {
|
| 63 |
-
color:gray;
|
| 64 |
-
font-size: 20px;
|
| 65 |
-
}
|
| 66 |
-
.result-download:hover {
|
| 67 |
-
color:black;
|
| 68 |
-
}
|
| 69 |
-
.result-analysis {
|
| 70 |
-
width: 25px;
|
| 71 |
-
margin-top: -5px;
|
| 72 |
-
}
|
| 73 |
-
.result-analysis path {
|
| 74 |
-
fill:gray;
|
| 75 |
-
}
|
| 76 |
-
.result-analysis:hover path {
|
| 77 |
-
fill:black;
|
| 78 |
-
}
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
#analysis_table {
|
| 82 |
-
width: 50%;
|
| 83 |
-
margin-left: 25%
|
| 84 |
-
}
|
| 85 |
-
#analysis_table th {
|
| 86 |
-
padding: 2px;
|
| 87 |
-
width: 200px;
|
| 88 |
-
text-align: right;
|
| 89 |
-
padding-right: 10px;
|
| 90 |
-
}
|
| 91 |
-
#analysis_table td {
|
| 92 |
-
padding: 2px;
|
| 93 |
-
width: 200px;
|
| 94 |
-
text-align: left;
|
| 95 |
-
padding-left: 10px;
|
| 96 |
-
}
|
| 97 |
-
|
| 98 |
-
#sidebar {
|
| 99 |
-
width: 280px;
|
| 100 |
-
height: 100vh;
|
| 101 |
-
border: lightgray;
|
| 102 |
-
border-right-style: solid;
|
| 103 |
-
}
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
analysis-fishstick {
|
| 116 |
-
width: 80%;
|
| 117 |
-
height: 40px;
|
| 118 |
-
display: block;
|
| 119 |
-
margin-left: 10%;
|
| 120 |
-
position: relative;
|
| 121 |
-
}
|
| 122 |
-
.fishstick_line {
|
| 123 |
-
position: absolute;
|
| 124 |
-
width: 100%;
|
| 125 |
-
height: 8px;
|
| 126 |
-
top: 50%;
|
| 127 |
-
translate: 0 -50%;
|
| 128 |
-
background-color: blue;
|
| 129 |
-
}
|
| 130 |
-
.fishstick_token {
|
| 131 |
-
position: absolute;
|
| 132 |
-
width: 20px;
|
| 133 |
-
height: 20px;
|
| 134 |
-
top: 50%;
|
| 135 |
-
border-radius: 50%;
|
| 136 |
-
background-color: orange;
|
| 137 |
-
translate: -50% -50%;
|
| 138 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static/images/river_and_mountains.png
ADDED
|
static/images/salmon_640.jpeg
DELETED
|
Binary file (69.8 kB)
|
|
|
static/images/some images from pixabay.com.txt
DELETED
|
File without changes
|
static/svg/book-open-svgrepo-com.svg
DELETED
static/svg/chemistry-flask-svgrepo-com.svg
DELETED
static/svg/done-1477-svgrepo-com.svg
DELETED
static/svg/eye-svgrepo-com.svg
DELETED
static/svg/house-svgrepo-com.svg
DELETED
static/svg/svgs from svgrepo.com.txt
DELETED
|
File without changes
|
static/svg/upload-svgrepo-com.svg
DELETED