如何在tensorflow.js中获取tf.toPixels()的返回值的PromiseValue

时间:2019-01-23 14:53:41

标签: javascript tensorflow tensorflow.js

enter image description here

如图所示,是使用console.log(tf.toPixels())获得的输出。如何在PromiseValue中获取Uint8ClampedArray数组?

1 个答案:

答案 0 :(得分:1)

使用.then(callback)(其中callback是一个函数并获取解析的Uint8ClampedArray)作为参数。

或者,如果您处于异步环境中,则只需使用await

async function run(){
    const pixels = await tf.toPixels();
}