gpt4 book ai didi

javascript - 将预测张量转换为图像

转载 作者:行者123 更新时间:2023-12-04 08:42:34 30 4
gpt4 key购买 nike

使用 tensorflow.js
我已成功导入我的模型并从中返回预测。接下来,我想将该预测从张量转换为图像。我的第一个想法是去张量 -> js 数组 -> 一些 Canvas 情况。不过,我敢打赌有更简单的方法可以做到。希望不必涉及节点,但我对此持开放态度。
在这种情况下,预测被归一化为 -1 -> 1 所以我首先做一些数学运算将值设为 0 -> 255
迄今为止:

var a = model.predict(tf.ones([1, 100]));
// map values from -1 -> 1 to 0 -> 255
var b = tf.scalar(127);
a = a.mul(b);
a = a.add(b);
// a.print();

// float to int
var cast = a.asType('int32');

// finally, as an array
var values = cast.arraySync();
这给了我一个 JS 中的二维数组。然后我可以这样做:
        // draw to a canvas
var canvas = document.createElement("canvas");
canvas.height = 128
canvas.width = 128;
//canvas.style.visibility = "hidden";
document.body.appendChild(canvas);

// in case not converting 2d to 1d...
var data = values;

// Now that we have canvas to work with, we need to draw the image data into it:
var ctx = canvas.getContext("2d");
for (var y = 0; y < data.length; ++y) {
for (var x = 0; x < data[y].length; ++x) {
ctx.fillStyle = "rgb("+data[x][y][0]+","+data[x][y][1]+","+data[x][y][2]+")";
ctx.fillRect(x, y, 1, 1);
}
}
这行得通,虽然它不像我想要的那么活泼。试图保持客户端的东西。有任何想法吗?

最佳答案

tf.browser.toPixels可用于将图像绘制到 Canvas 上。

const canvas = document.createElement('canvas');
canvas.width = tensor.shape.width
canvas.height = tensor.shape.height
await tf.browser.toPixels(tensor, canvas);

关于javascript - 将预测张量转换为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64483632/

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