{
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;
}