Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/video-face-detection/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1 class="arduino-text">Video Face Detection</h1>
<div class="slider-container">
<div class="slider-progress" id="sliderProgress"></div>
<div class="confidence-value-display" id="confidenceValueDisplay">0.5</div>
<input type="range" id="confidenceSlider" min="0" max="1" step="0.05" value="0.5">
<input type="range" id="confidenceSlider" min="0" max="1" step="0.01" value="0.1">
</div>
<span class="confidence-limits">1</span>
</div>
Expand Down
10 changes: 7 additions & 3 deletions examples/video-face-detection/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ body {
}

.arduino-logo {
height: 32px;
height: 48px;
width: auto;
}

Expand Down Expand Up @@ -612,7 +612,7 @@ body {
font-weight: inherit;
color: inherit;
text-align: center;
width: 32px;
width: 40px;
padding: 0;
margin: 0;
outline: none;
Expand Down Expand Up @@ -640,6 +640,10 @@ body {
opacity: 1;
}

.feedback-section {
margin-bottom: 8px;
}

.feedback-content {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -700,7 +704,7 @@ body {

.popover {
position: absolute;
left: 25%;
left: 5%;
top: 70%;
margin-left: 8px;
display: none;
Expand Down
2 changes: 1 addition & 1 deletion examples/video-generic-object-detection/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h1 class="arduino-text">Video Generic Object Detection</h1>
<div class="slider-container">
<div class="slider-progress" id="sliderProgress"></div>
<div class="confidence-value-display" id="confidenceValueDisplay">0.5</div>
<input type="range" id="confidenceSlider" min="0" max="1" step="0.05" value="0.5">
<input type="range" id="confidenceSlider" min="0" max="1" step="0.01" value="0.1">
</div>
<span class="confidence-limits">1</span>
</div>
Expand Down
10 changes: 7 additions & 3 deletions examples/video-generic-object-detection/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ body {
}

.arduino-logo {
height: 32px;
height: 48px;
width: auto;
}

Expand Down Expand Up @@ -605,14 +605,18 @@ body {
height: 36px;
}

.feedback-section {
margin-bottom: 8px;
}

.confidence-input {
border: none;
background: transparent;
font-size: 12px;
font-weight: inherit;
color: inherit;
text-align: center;
width: 32px;
width: 40px;
padding: 0;
margin: 0;
outline: none;
Expand Down Expand Up @@ -695,7 +699,7 @@ body {

.popover {
position: absolute;
left: 25%;
left: 5%;
top: 70%;
margin-left: 8px;
display: none;
Expand Down
2 changes: 1 addition & 1 deletion examples/video-person-classification/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h1 class="arduino-text">Video Person Classification</h1>
<div class="slider-container">
<div class="slider-progress" id="sliderProgress"></div>
<div class="confidence-value-display" id="confidenceValueDisplay">0.5</div>
<input type="range" id="confidenceSlider" min="0" max="1" step="0.05" value="0.5">
<input type="range" id="confidenceSlider" min="0" max="1" step="0.01" value="0.1">
</div>
<span class="confidence-limits">1</span>
</div>
Expand Down
12 changes: 8 additions & 4 deletions examples/video-person-classification/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ body {
}

.arduino-logo {
height: 32px;
height: 48px;
width: auto;
}

Expand Down Expand Up @@ -358,7 +358,7 @@ body {

.scan-content,
.scan-content-time {
font-size: 14px;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: 160%;
Expand Down Expand Up @@ -605,14 +605,18 @@ body {
height: 36px;
}

.feedback-section {
margin-bottom: 8px;
}

.confidence-input {
border: none;
background: transparent;
font-size: 12px;
font-weight: inherit;
color: inherit;
text-align: center;
width: 32px;
width: 40px;
padding: 0;
margin: 0;
outline: none;
Expand Down Expand Up @@ -701,7 +705,7 @@ body {

.popover {
position: absolute;
left: 25%;
left: 5%;
top: 70%;
margin-left: 8px;
display: none;
Expand Down
Loading