Spaces:
Sleeping
Sleeping
File size: 14,354 Bytes
bcb0b13 |
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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
const WIDTH = 350;
const HEIGHT = 350;
const STROKE_WEIGHT = 3;
const CROP_PADDING = (REPOS_PADDING = 2);
let model;
let pieChart;
let clicked = false;
let mousePosition = [];
// Coordinates of the current drawn stroke [[x1, x2, ..., xn], [y1, y2, ..., yn]]
let strokePixels = [[], []];
// Coordinates of all canvas strokes [[[x1, x2, ..., xn], [y1, y2, ..., yn]], [[x1, x2, ..., xn], [y1, y2, ..., yn]], ...]
let imageStrokes = [];
let imageStrokes_copy = [];
function inRange(n, from, to) {
return n >= from && n < to;
}
let speechEnabled = false;
function toggleSpeechMode() {
speechEnabled = !speechEnabled; // Toggle speechEnabled's state value
const speechButton = document.getElementById("speech");
speechButton.classList.toggle("active", speechEnabled);
if (speechEnabled && isSpeechSynthesisSupported() ) {
speechButton.style.backgroundColor = "green"; // To set the color of the Speech button to green when the speech mode is turned on
speechButton.style.color = "white";
// If the browser supports the speechSynthesis feature and is not currently speaking
if (isSpeechSynthesisSupported() && !window.speechSynthesis.speaking && predict_e.length > 0 && eraseMode == false) {
Speaking();
}
} else {
speechEnabled = false;
speechButton.style.backgroundColor = ""; // To set the color of the Speech button to orange when the speech mode is turned off
speechButton.style.color = "black";
// Stop the browser from speaking
if (isSpeechSynthesisSupported() && window.speechSynthesis.speaking) {
window.speechSynthesis.cancel();
}
}
}
function setup() {
createCanvas(WIDTH, HEIGHT);
strokeWeight(STROKE_WEIGHT);
stroke("black");
background("#FFFFFF");
const $canvas = document.getElementById("defaultCanvas0");
loadModel();
$canvas.addEventListener("mousedown", (e) => mouseDown(e));
$canvas.addEventListener("mousemove", (e) => mouseMoved(e));
$canvas.addEventListener("mouseup", (e) => mouseReleased(e));
const eraseButton = document.getElementById("erase");
eraseButton.addEventListener("click", toggleEraseMode);
const speechButton = document.getElementById("speech");
speechButton.addEventListener("click", toggleSpeechMode);
}
function mouseDown() {
clicked = true;
mousePosition = [mouseX, mouseY];
Stop_talking_clear_pie_iframe();
}
let eraseMode = false;
function mouseMoved() {
if (eraseMode && clicked && inRange(mouseX, 0, WIDTH) && inRange(mouseY, 0, HEIGHT)) {
// To remove a drawing at the mouse position
const mouseXPos = Math.floor(mouseX);
const mouseYPos = Math.floor(mouseY);
// To find and remove the drawing near the mouse position
for (let i = imageStrokes.length - 1; i >= 0; i--) {
const stroke = imageStrokes[i];
const xCoords = stroke[0];
const yCoords = stroke[1];
for (let j = 0; j < xCoords.length; j++) {
const x = xCoords[j];
const y = yCoords[j];
// To check if the mouse position is near a drawing point and perform an action accordingly
if (dist(x, y, mouseXPos, mouseYPos) < STROKE_WEIGHT * 2) {
// To clear the drawing and exit the clean loop
imageStrokes.splice(i, 1);
break;
}
}
}
// Clear the canvas and redraw the remaining segments
clear();
background("#FFFFFF");
for (const stroke of imageStrokes) {
const xCoords = stroke[0];
const yCoords = stroke[1];
for (let i = 1; i < xCoords.length; i++) {
const x1 = xCoords[i - 1];
const y1 = yCoords[i - 1];
const x2 = xCoords[i];
const y2 = yCoords[i];
line(x1, y1, x2, y2);
}
}
}
else {
// Check whether mouse position is within canvas
if (clicked && inRange(mouseX, 0, WIDTH) && inRange(mouseY, 0, HEIGHT)) {
//clicked = true;
strokePixels[0].push(Math.floor(mouseX));
strokePixels[1].push(Math.floor(mouseY));
line(mouseX, mouseY, mousePosition[0], mousePosition[1]);
mousePosition = [mouseX, mouseY];
}
}
}
function toggleEraseMode() {
eraseMode = !eraseMode; // Toggle eraseMode's state value
const eraseButton = document.getElementById("erase");
eraseButton.classList.toggle("active", eraseMode);
if (eraseMode) {
eraseButton.style.backgroundColor = "red"; // Set the erase button color to red when in erase mode
eraseButton.style.color = "white";
} else {
eraseButton.style.backgroundColor = ""; // Set the erase button color to default when not in erase mode
eraseButton.style.color = "black";
}
// Stop the browser from speaking
Stop_talking_clear_pie_iframe();
}
function mouseReleased() {
if (strokePixels[0].length) {
imageStrokes.push(strokePixels);
strokePixels = [[], []];
}
clicked = false;
}
function updateViewport() {
const deviceWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
const deviceHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
const scaleRatio = deviceWidth / deviceHeight; // Varies according to the original size of the HTML
// Update viewport property
const viewportMeta = document.querySelector('meta[name="viewport"]');
viewportMeta.content = `width=device-width, initial-scale=${scaleRatio}, user-scalable=no`;
}
const loadModel = async () => {
console.log("Model loading...");
model = await tflite.loadTFLiteModel("./models/model.tflite");
model.predict(tf.zeros([1, 28, 28, 1])); // warmup
console.log(`Model loaded! (${LABELS.length} classes)`);
};
const preprocess = async (cb) => {
const {min, max} = getBoundingBox();
// Resize to 28x28 pixel & crop
const imageBlob = await fetch("/transform", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
redirect: "follow",
referrerPolicy: "no-referrer",
body: JSON.stringify({
strokes: imageStrokes_copy,
box: [min.x, min.y, max.x, max.y],
}),
}).then((response) => response.blob());
const img = new Image(28, 28);
img.src = URL.createObjectURL(imageBlob);
img.onload = () => {
const tensor = tf.tidy(() =>
tf.browser.fromPixels(img, 1).toFloat().expandDims(0)
);
cb(tensor);
};
};
const drawPie = (top5) => {
const probs = [];
const labels = [];
for (const pred of top5) {
const prop = +pred.probability.toPrecision(3);
probs.push(prop);
labels.push(`${pred.className} (${prop})`);
}
const others = +(
1 - probs.reduce((prev, prob) => prev + prob, 0)
).toPrecision(3);
probs.push(others);
labels.push(`Others (${others})`);
if (pieChart) pieChart.destroy();
const ctx = document.getElementById("predictions").getContext("2d");
pieChart = new Chart(ctx, {
type: "pie",
options: {
plugins: {
legend: {
position: "bottom",
},
title: {
display: true,
text: "Top 5 Predictions",
},
},
},
data: {
labels,
datasets: [
{
label: "Top 5 predictions",
data: probs,
backgroundColor: [
"rgb(255, 99, 132)",
"rgb(54, 162, 235)",
"rgb(255, 205, 86)",
"rgb(0,255,0)",
"rgb(238,130,238)",
"rgb(97,96,96)",
],
},
],
},
});
};
const getMinimumCoordinates = () => {
let min_x = Number.MAX_SAFE_INTEGER;
let min_y = Number.MAX_SAFE_INTEGER;
for (const stroke of imageStrokes_copy) {
for (let i = 0; i < stroke[0].length; i++) {
min_x = Math.min(min_x, stroke[0][i]);
min_y = Math.min(min_y, stroke[1][i]);
}
}
return [Math.max(0, min_x), Math.max(0, min_y)];
};
const getBoundingBox = () => {
repositionImage();
const coords_x = [];
const coords_y = [];
for (const stroke of imageStrokes_copy) {
for (let i = 0; i < stroke[0].length; i++) {
coords_x.push(stroke[0][i]);
coords_y.push(stroke[1][i]);
}
}
const x_min = Math.min(...coords_x);
const x_max = Math.max(...coords_x);
const y_min = Math.min(...coords_y);
const y_max = Math.max(...coords_y);
// New width & height of cropped image
const width = Math.max(...coords_x) - Math.min(...coords_x);
const height = Math.max(...coords_y) - Math.min(...coords_y);
const coords_min = {
x: Math.max(0, x_min - CROP_PADDING), // Create link edge
y: Math.max(0, y_min - CROP_PADDING), // Create the top edge
};
let coords_max;
if (width > height)
// Left + right edge as boundary
coords_max = {
x: Math.min(WIDTH, x_max + CROP_PADDING), // Right edge
y: Math.max(0, y_min + CROP_PADDING) + width, // Lower edge
};
// Upper + lower edge as boundary
else
coords_max = {
x: Math.max(0, x_min + CROP_PADDING) + height, // Right edge
y: Math.min(HEIGHT, y_max + CROP_PADDING), // Lower edge
};
return {
min: coords_min,
max: coords_max,
};
};
// Reposition image to top left corner
const repositionImage = () => {
const [min_x, min_y] = getMinimumCoordinates();
for (const stroke of imageStrokes_copy) {
for (let i = 0; i < stroke[0].length; i++) {
stroke[0][i] = stroke[0][i] - min_x + REPOS_PADDING;
stroke[1][i] = stroke[1][i] - min_y + REPOS_PADDING;
}
}
};
function updateIframebutton(str_c) {
const bingFrame = document.getElementById("bingFrame");
bingFrame.style.display = str_c;
const showNextPredictionButton = document.getElementById("showNextPrediction");
showNextPredictionButton.style.display = str_c;
}
let predict_e =[];
let currentIndex = 0;
function help_copy_array(obj) {
if(obj == null || typeof(obj) != 'object') {
return obj;
}
var temp = new obj.constructor();
for(var key in obj) {
if (obj.hasOwnProperty(key)) {
temp[key] = help_copy_array(obj[key]);
}
}
return temp;
}
// Function to read an element in the array predict_e
function speakPrediction(prediction) {
var utterance = new SpeechSynthesisUtterance(prediction);
window.speechSynthesis.speak(utterance);
}
// Checking compatibility with SpeechSynthesis
function isSpeechSynthesisSupported() {
return 'speechSynthesis' in window && 'SpeechSynthesisUtterance' in window;
}
function Speaking() {
let sp_spech = 0;
for (let prediction of predict_e) {
if (sp_spech == 0)
{
prediction = "Well, I can see in your painting that may be "+ prediction;
sp_spech = 1;
}
else if(prediction == predict_e.at(-1))
{
prediction = ", or "+ prediction;
}
else{
prediction = ", "+ prediction;
}
speakPrediction(prediction);
}
}
// Prediction function with reading function
const predict = async () => {
if (!imageStrokes.length) return;
if (!LABELS.length) throw new Error("No labels found!");
if (isSpeechSynthesisSupported() && window.speechSynthesis.speaking) {
window.speechSynthesis.cancel();
}
imageStrokes_copy = [];
imageStrokes_copy = help_copy_array(imageStrokes);
preprocess(async (tensor) => {
const predictions = model.predict(tensor).dataSync();
top5 = Array.from(predictions)
.map((p, i) => ({
probability: p,
className: LABELS[i],
index: i,
}))
.sort((a, b) => b.probability - a.probability)
.slice(0, 5);
drawPie(top5);
predict_e = top5.map(pred => pred.className);
currentIndex = 0;
updateIframebutton("inline");
updateIframe(predict_e[currentIndex]);
// Checking compatibility with SpeechSynthesis
if (isSpeechSynthesisSupported() && speechEnabled == true) {
Speaking();
}
else {
console.log("Trình duyệt không hỗ trợ đọc văn bản.");
}
});
};
function showNextPrediction() {
currentIndex++;
if (currentIndex >= predict_e.length) {
currentIndex = 0;
}
const currentPrediction = predict_e[currentIndex];
updateIframe(currentPrediction);
}
function updateIframe(searchQuery) {
const bingFrame = document.getElementById("bingFrame");
if (searchQuery == 'line')
{
searchQuery = 'Straight line';
}
if (searchQuery == 'bush')
{
searchQuery = 'Bush Landscaping';
}
const bingSearchURL = `https://www.bing.com/images/search?q=${encodeURIComponent(searchQuery)} picture`;
bingFrame.src = bingSearchURL;
}
function Stop_talking_clear_pie_iframe()
{
// Stop browser speech if currently speaking
if (isSpeechSynthesisSupported() && window.speechSynthesis.speaking) {
window.speechSynthesis.cancel();
}
if (pieChart) pieChart.destroy();
updateIframebutton("none");
currentIndex = 0;
predict_e = [];
}
const clearCanvas = () => {
clear();
Stop_talking_clear_pie_iframe();
background("#FFFFFF");
imageStrokes = [];
imageStrokes_copy = [];
strokePixels = [[], []];
};
window.addEventListener('load', updateViewport);
window.addEventListener('resize', updateViewport);
window.addEventListener('load', () => {
const showNextPredictionButton = document.getElementById("showNextPrediction");
showNextPredictionButton.addEventListener("click", showNextPrediction);
});
window.onload = () => {
updateIframebutton("none");
const $submit = document.getElementById("predict");
const $clear = document.getElementById("clear");
$submit.addEventListener("click", () => predict());
$clear.addEventListener("click", clearCanvas);
};
|