xxxxxxxxxx
44
// Note: this sketch consists of additional JavaScript
// files. Make sure to duplicate it, rather than copying
// and pasting code :)
let pifuhd_api = "https://gpu.gohai.xyz:3001/";
let img;
let model;
function preload() {
img = loadImage("person.jpg");
}
function setup() {
createCanvas(400, 400);
background(255);
}
function draw() {
image(img, 0, 0);
}
function keyPressed() {
let modelInput = {
image: img
};
img2obj(
modelInput,
donePredicting
);
console.log("Starting prediction, this might take a bit");
}
function donePredicting(results) {
console.log(results);
if (results.url) {
loadModel(results.url, true, function(obj) {
console.log("Model loaded");
model = obj;
});
}
}