gpt4 book ai didi

javascript - WebGL:使用 tf.browser.fromPixels 转换本地镜像时出现 INVALID_VALUE

转载 作者:行者123 更新时间:2023-12-02 22:43:31 24 4
gpt4 key购买 nike

执行以下代码后:

  var myImage = new Image(48,48);
myImage.src = '1.png';
document.body.appendChild(myImage);
console.log(tf.browser.fromPixels(myImage));

出现警告消息:

WebGL: INVALID_VALUE: texImage2D: no image

尽管图像已成功加载并显示在 html 页面上,但转换似乎失败了。怎么解决这个问题?

最佳答案

通常您需要等待图像加载。

const myImage = new Image();
myImage.onload = function() {
console.log(tf.browser.fromPixels(myImage));
};
myImage.src = '1.png';
document.body.appendChild(myImage);

关于javascript - WebGL:使用 tf.browser.fromPixels 转换本地镜像时出现 INVALID_VALUE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58507432/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com