Код: Выделить всё
imgElement.onload = await function() {
cv = (cv instanceof Promise) ? await cv : cv;
let mat = cv.imread(imgElement);`
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... -opencv-js
Код: Выделить всё
imgElement.onload = await function() {
cv = (cv instanceof Promise) ? await cv : cv;
let mat = cv.imread(imgElement);`
}