Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/modules/processing2.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const processImage = (node, STATUSES) => {
},
(response) => {
// console.log("HB== handleElementProcessing", response, node)
removeBlurryStart(node);
// removeBlurryStart(node);
if (response.type === "error") {
console.warn("HB==Error while processing image", response);
node.dataset.HBstatus = STATUSES.ERROR;
Expand Down Expand Up @@ -215,7 +215,7 @@ const processVideo = async (node) => {
canv.height = newHeight;
}

removeBlurryStart(node);
// removeBlurryStart(node);

// start the video detection loop but don't block the main thread
requestIdleCB(() => {
Expand Down