vdo.ninja/app/static/thirdparty/focus_worker.js
2023-09-25 19:43:56 +02:00

12 lines
318 B
JavaScript

// Part of Inspector Bokeh by @timotgl
// MIT License - Copyright (c) 2016 Timo Taglieber <github@timotaglieber.de>
// https://github.com/timotgl/inspector-bokeh
import measureBlur from './measureBlur.js';
onmessage = (messageEvent) => {
postMessage({
score: measureBlur(messageEvent.data.imageData),
});
};