Skip to content

Commit ccae6fc

Browse files
committed
now the stream search is complete but has not been tested for video matches which can occur
1 parent ccea801 commit ccae6fc

File tree

7 files changed

+620
-386
lines changed

7 files changed

+620
-386
lines changed

.prettierrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"trailingComma": "es5",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true
6+
7+
}

AppCode/stream-search.html

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@
1818

1919

2020
<div id="selection-screen">
21+
<!-- <label id="accuracy-label" for="">Face Accuracy Sensitivity:</label>
22+
<div id="accuracy-description">
23+
Control how close faces must match those in the database.
24+
</div>
25+
<br>
26+
very low
27+
<input type="range" min="0" max="100" value="60" class="slider" id="mlAccuracy">
28+
very high
29+
<div class="separator"></div> -->
2130
<label id="search-type-label" for="search-type">Choose a stream search type:</label>
2231
<br>
2332
<select name="" id="search-type">
@@ -28,9 +37,19 @@
2837
<div id="stream-type-description">
2938

3039
</div>
40+
<div class="separator"></div>
41+
<br>
42+
43+
<!--<button class='fun-button-blue' id="screen-capture-btn"> SCREEN INPUT </button> -->
44+
45+
<label id="source-label" for="">Choose video source</label>
46+
<br>
47+
<select name="" id="source-type">
48+
<!-- <option value="keywords-images-memes">Keywords, Images and Memes</option> -->
49+
</select>
3150
<br>
32-
<button class='fun-button-blue' id="continue-btn"> WEBCAM INPUT </button>
33-
<button class='fun-button-blue' id="screen-btn"> SCREEN INPUT </button>
51+
<div class="separator"></div>
52+
<button class='fun-button-blue' disabled id="continue-btn"> START </button>
3453
<button class='fun-button-blue' id="main-menu-btn"> Main Menu </button>
3554
</div>
3655

AppCode/taga-CSS/stream-search-CSS/stream-search-main-ui.css

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,26 @@ body {
1313
margin-top: 10%;
1414

1515
}
16-
#search-type-label {
16+
#search-type-label,
17+
#source-label,
18+
#accuracy-label {
1719
font-size: 4vmin;
1820
font-weight: bold;
1921
}
20-
#search-type {
22+
#mlAccuracy {
23+
width: 25%;
24+
}
25+
#search-type,
26+
#source-type,
27+
#accuracy-description {
2128
font-size: 3.2vmin;
2229
}
30+
#source-type {
31+
max-width: 60%;
32+
}
2333
#continue-btn,
2434
#main-menu-btn,
25-
#screen-btn {
35+
#screen-capture-btn {
2636
font-size: 3.5vmin;
2737
margin-top: 5px;
2838
padding: 6px;
@@ -216,4 +226,7 @@ body {
216226
left: 0;
217227
right: 0;
218228
margin: auto auto;
229+
}
230+
.separator {
231+
height: 5vh;
219232
}

0 commit comments

Comments
 (0)