Public
Edited
Nov 8, 2022
11 stars
Also listed in…
TensorFlow.js
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
{
const width = 400;
const height = 400;
const canvas = htl.html`<canvas width="${width}" height="${height}"></canvas>`;

const myTensor = tf.randomUniform([height, width, 3]);
//const myTensor = tf.zeros([height, width, 3]);
//const myTensor = tf.ones([height, width, 3]);
tf.browser.toPixels(myTensor, canvas).then(() => myTensor.dispose());

return canvas;
}
Insert cell
Insert cell
imgUrl = FileAttachment("Ramphodon_naevius_with_flower.jpeg").url()
Insert cell
Insert cell
Insert cell
img = new Promise((resolve, reject) => {
const width = 400;
const height = 300;
const img = htl.html`<img width=${width} height=${height} />`;
img.src = imgUrl;
img.crossOrigin = 'anonymous';
img.onload = () => resolve(img);
img.onerror = reject;
})
Insert cell
Insert cell
imgTensorRgb = tf.browser.fromPixels(img)
Insert cell
imgTensorRgb.rank
Insert cell
imgTensorRgb.shape
Insert cell
Insert cell
imgTensorRgb.toString()
Insert cell
Insert cell
{
const width = 400;
const height = 400;
const canvas = htl.html`<canvas width="${width}" height="${height}"></canvas>`;
tf.browser.toPixels(imgTensorRgb, canvas);

return canvas;
}
Insert cell
Insert cell
imgTensorGrayscale = tf.browser.fromPixels(img, 1)
Insert cell
imgTensorGrayscale.rank
Insert cell
imgTensorGrayscale.shape
Insert cell
Insert cell
{
const width = 400;
const height = 400;
const canvas = htl.html`<canvas width="${width}" height="${height}"></canvas>`;
tf.browser.toPixels(imgTensorGrayscale, canvas);

return canvas;
}
Insert cell
Insert cell
imgInMemory = new Promise((resolve, reject) => {
const width = 400;
const height = 300;
const img = new Image(width, height);
img.crossOrigin = 'anonymous';
img.src = imgUrl;
img.onload = () => resolve(img);
img.onerror = reject;
})
Insert cell
Insert cell
imgInMemoryTensorRgb = tf.browser.fromPixels(imgInMemory)
Insert cell
imgInMemoryTensorRgb.rank
Insert cell
imgInMemoryTensorRgb.shape
Insert cell
Insert cell
{
const width = 400;
const height = 400;
const canvas = htl.html`<canvas width="${width}" height="${height}"></canvas>`;
tf.browser.toPixels(imgInMemoryTensorRgb, canvas);

return canvas;
}
Insert cell
Insert cell
batchImgTensorRgb = imgTensorRgb.expandDims()
Insert cell
Insert cell
batchImgTensorRgb.shape
Insert cell
Insert cell
batchImgTensorRgb.squeeze().shape
Insert cell
Insert cell
Insert cell
{
const width = 100;
const height = 100;
const canvas = htl.html`<canvas/>`;
const resizedTensor = tf.tidy(() => {
const batchResizedTensors = tf.image.resizeBilinear(batchImgTensorRgb, [height, width], true);
return batchResizedTensors.squeeze().asType('int32');
});
tf.browser.toPixels(resizedTensor, canvas).then(() => {
resizedTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
{
const width = 100;
const height = 100;
const canvas = htl.html`<canvas/>`;
const resizedTensor = tf.tidy(() => {
const batchResizedTensors = tf.image.resizeNearestNeighbor(batchImgTensorRgb, [height, width], true);
return batchResizedTensors.squeeze();
});
tf.browser.toPixels(resizedTensor, canvas).then(() => {
resizedTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
Insert cell
Insert cell
{
const width = 100;
const height = 100;
const canvas = htl.html`<canvas/>`;
const croppedTensor = imgTensorRgb.slice([100, 10], [150, 200, 3]);
tf.browser.toPixels(croppedTensor, canvas).then(() => {
croppedTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
{
const width = 100;
const height = 100;
const canvas = htl.html`<canvas/>`;
const croppedResizedTensor = tf.tidy(() => {
const boxes = [[0.3, 0, 0.85, 0.55]];
const boxInd = [0];
const cropSize = [256, 256];
const batchCroppedResizedTensors = tf.image.cropAndResize(
batchImgTensorRgb.div(255), boxes, boxInd, cropSize, 'bilinear');
return batchCroppedResizedTensors.squeeze();
});
tf.browser.toPixels(croppedResizedTensor, canvas).then(() => {
croppedResizedTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
{
const canvas = htl.html`<canvas/>`;
const mirroredTensor = tf.tidy(() => {
const batchMirroredTensors = tf.image.flipLeftRight(batchImgTensorRgb.div(255));
return batchMirroredTensors.squeeze();
});
tf.browser.toPixels(mirroredTensor, canvas).then(() => {
mirroredTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
{
const width = 100;
const height = 100;
const canvas = htl.html`<canvas/>`;
const flippedTensor = imgTensorRgb.reverse(0);
tf.browser.toPixels(flippedTensor, canvas).then(() => {
flippedTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
Insert cell
Insert cell
{
const canvas = htl.html`<canvas/>`;
const rotatedTensor = tf.tidy(() => {
const batchRotatedTensors = tf.image.rotateWithOffset(batchImgTensorRgb.div(255), -0.7);
return batchRotatedTensors.squeeze();
});
tf.browser.toPixels(rotatedTensor, canvas).then(() => {
rotatedTensor.dispose();
})

return canvas;
}
Insert cell
Insert cell
Insert cell
tf = require('@tensorflow/tfjs@4.0.0/dist/tf.min.js')
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more