Spaces:
Sleeping
Sleeping
File size: 7,443 Bytes
0135475 eac186e f54cd18 0135475 f54cd18 e5db64f eac186e 0135475 5259b7b f54cd18 5259b7b f54cd18 5259b7b f54cd18 e5db64f f54cd18 5259b7b eac186e e5db64f 0135475 75f4b2a 1d7e3ef 0135475 |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
//Updating Frames in Image tag to Show Video Stream
window.addEventListener('load', function () {
console.log("Window UP")
});
var show_ad = false;
$(document).ready(function () {
$("#banner2").hide();
$("#closeAd").click(function () {
$("#banner2").hide(1000);
});
});
// Function to start the camera capture
function startCamera() {
const videoFeedElement = document.getElementById('video_feed');
// Check if the browser supports getUserMedia
if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices.getUserMedia({ video: true })
.then(function (stream) {
// Set the video stream as the source for the image tag
videoFeedElement.srcObject = stream;
})
.catch(function (error) {
console.error('Error accessing the camera: ', error);
});
} else {
console.error('getUserMedia is not supported by this browser');
}
// Update the frames periodically
setInterval(function() {
if (videoFeedElement.srcObject) {
videoFeedElement.srcObject.getVideoTracks().forEach(track => track.requestFrame());
}
}, 1000 / 30); // Update frames at 30 fps
}
// Function to stop the camera
function stopCamera() {
const videoFeedElement = document.getElementById('video_feed');
if (videoFeedElement.srcObject) {
const stream = videoFeedElement.srcObject;
const tracks = stream.getTracks();
tracks.forEach(function (track) {
track.stop();
});
videoFeedElement.srcObject = null;
}
}
// Call the startCamera() function when the "Start Camera" button is clicked
document.getElementById('start-camera').addEventListener('click', startCamera);
// Call the stopCamera() function when the "Stop Camera" button is clicked
document.getElementById('stop-camera').addEventListener('click', stopCamera);
function startVideo() {
var url = $('#url').val();
$('#urlForm').attr('action', '/index');
$('#urlForm').attr('method', 'POST');
$('#urlForm').find('#url').val(url);
$('#urlForm').submit();
}
function stopProcess(message) {
console.log("Stop BUTTON");
const terminalData = document.getElementById('terminal').innerHTML;
document.getElementById('terminal').innerHTML = terminalData + "<br><br><center>" + message + "</center><br><br>";
fetch('/stop_process')
.then(response => response.text())
.then(message => {
console.log(message);
// Redirect to homepage after stopping the process
window.location.href = '/';
})
.catch(error => console.error(error));
}
//This Code is used to Communicate b/w Client & Server via SOCKETIO
//var socket = io.connect('http://127.0.0.1:5000/');
var socket = io.connect('https://' + document.domain + ':' + location.port);
// Variabel untuk menyimpan kata-kata berturut-turut
let consecutiveWords = [];
let finalSentence = "";
let wordCounter = 0;
function appendToTerminal(message) {
var terminal = document.getElementById("terminal");
var p = document.createElement("p");
p.innerHTML = `<table class="table table-striped text-center" style="border: none;">
<tr class="row">
<td class="col-md-6" style="color: #01ECEC; border: none;">${message[0]}</td>
<td class="col-md-6" style="color: #01ECEC; border: none;">${message[1]}</td>
</tr>
</table>`;
terminal.appendChild(p);
terminal.scrollTop = terminal.scrollHeight;
if (consecutiveWords.length === 0 || consecutiveWords[consecutiveWords.length - 1] === message[0]) {
consecutiveWords.push(message[0]);
wordCounter++; // Menambah jumlah kemunculan kata yang sama
} else {
consecutiveWords = [message[0]];
wordCounter = 1; // Mengatur ulang jumlah kemunculan kata yang sama
}
if (wordCounter >= 7 && message[0] !== "G") {
finalSentence += (finalSentence.length > 0 ? " " : "") + consecutiveWords[0];
document.getElementById("finalSentencePara").innerText = finalSentence;
consecutiveWords = [];
wordCounter = 0;
}
}
//Updating Terminal with Detected Objects
socket.on("label", (data) => {
appendToTerminal(data);
});
//Code For All Switches
function toggleHSwitch() {
var switchElement = $("#flip-horizontal");
var switchIsOn = switchElement.is(":checked");
if (switchIsOn) {
console.log("SWITCH ON")
$.getJSON("/request_flipH_switch", function (data) {
console.log("Switch on request sent.");
});
} else {
console.log("SWITCH OFF")
$.getJSON("/request_flipH_switch", function (data) {
console.log("Switch off request sent.");
});
}
}
function toggleMediaPipeSwitch() {
var switchElement = $("#mediapipe");
var switchIsOn = switchElement.is(":checked");
if (switchIsOn) {
console.log("SWITCH ON")
$.getJSON("/request_mediapipe_switch", function (data) {
console.log("Switch on request sent.");
});
} else {
console.log("SWITCH OFF")
$.getJSON("/request_mediapipe_switch", function (data) {
console.log("Switch off request sent.");
});
}
}
function toggleDetSwitch() {
var switchElement = $("#run_detection");
var switchIsOn = switchElement.is(":checked");
if (switchIsOn) {
console.log("SWITCH ON")
$.getJSON("/request_run_model_switch", function (data) {
console.log("Switch on request sent.");
});
} else {
console.log("SWITCH OFF")
$.getJSON("/request_run_model_switch", function (data) {
console.log("Switch off request sent.");
});
}
}
function toggleOffSwitch() {
var switchElement = $("#turn_off");
var switchIsOn = switchElement.is(":checked");
if (switchIsOn) {
console.log("Camera ON")
$.getJSON("/request_preview_switch", function (data) {
console.log("Switch on request sent.");
});
} else {
console.log("Camera OFF")
$.getJSON("/request_preview_switch", function (data) {
console.log("Switch off request sent.");
});
}
}
$(document).ready(function () {
// Get the slider element
var slider = $('#slider');
// Attach the event listener to the slider element
slider.on('input', function () {
// Get the value of the slider
var sliderValue = slider.val();
// Call the updateSliderValue() function and pass in the slider value
updateSliderValue(sliderValue);
});
});
function updateSliderValue(sliderValue) {
console.log(sliderValue)
$.ajax({
type: 'POST',
url: '/update_slider_value',
data: {'sliderValue': sliderValue},
success: function () {
console.log('Slider value updated successfully!');
},
error: function () {
console.log('Error updating slider value!');
}
});
document.getElementById("conf_display").innerHTML = sliderValue
}
function toggleTheme() {
if (document.body.classList.contains("dark"))
document.body.classList.remove("dark");
else
document.body.classList.add("dark");
} |