Tensorflow.js是Google开发的开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。
tf.browser.toPixels()函数用于在浏览器中将张量转换为图像。
用法:
tf.browser.toPixels(img, Canvas);
参数:
- img (tf.Tensor2D | tf.Tensor3D | TypedArray | Array):形状为[height,width]的等级2的张量,或形状为[height,width,numChannels]的等级3的张量。
- 画布[可选] (HTMLCanvasElement):要绘制的画布。
返回值:它返回一个承诺,当渲染完成时,该承诺将解决。
范例1:在此示例中,我们将创建一个张量并使用该张量调用tf.browser.toPixels()函数。
Javascript
import * as tf from "@tensorflow/tfjs"
const tensonA = tf.randomUniform([400, 400, 3]);
tf.browser.toPixels(tensorA).then(() => {
console.log("tf.browser.toPixels() called");
});
输出:
tf.browser.toPixels() called
范例2:在此示例中,我们将创建一个张量并获取画布引用,并使用张量和画布引用调用tf.browser.toPixels()函数。
Javascript
const tensorA = tf.randomUniform([400, 400, 3]);
const canvasA = document.getElementById("CanvasHTML");
tf.browser.toPixels(tensorA, canvasA).then(() => {
tensorA.dispose();
console.log(
"Make sure we cleaned up",
tf.memory().numTensors
);
});
输出:
Make sure we cleaned up 2
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
注:本文由纯净天空筛选整理自rohitsingh07052大神的英文原创作品 Tensorflow.js tf.browser.toPixels() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。