xxxxxxxxxx
32
let imageToTextModel;
let button;
let label;
let score;
let img;
async function preload() {
img = loadImage("cats.jpg");
imageToTextModel = await transformersLoad(
'zero-shot-image-classification', 'Xenova/clip-vit-base-patch32'
);
}
function setup() {
createCanvas(img.width, img.height);
button = createButton("Go");
button.mousePressed(startPredicting);
}
function startPredicting() {
transformersPredict(imageToTextModel, img, ['tiger', 'horse', 'cat'], donePredicting);
}
function draw() {
image(img, 0, 0, width, height);
}
function donePredicting(results) {
console.log(results);
}