data = {
let img = await FileAttachment("cage_cropped.jpg").image();
let ctx = DOM.canvas(img.width, img.height).getContext('2d');
ctx.drawImage(img, 0, 0);
return {
data: ctx.getImageData(0, 0, img.width, img.height),
width: img.width,
height: img.height
};
}