xxxxxxxxxx
54
// XXX: Note to self: this example has some updates to replicate.js
// Note: this sketch consists of additional JavaScript
// files. Make sure to duplicate it, rather than copying
// and pasting code :)
let replicate_api_proxy = "https://splashy-rambunctious-leader.glitch.me/";
let targetImg;
let capture;
let faceswapImg;
function preload() {
targetImage = loadImage("face_swap_09.jpg");
}
function setup() {
createCanvas(640, 480);
capture = createCapture(VIDEO);
capture.size(640, 480);
capture.hide();
}
function draw() {
background(255);
if (faceswapImg) {
image(faceswapImg, 0, 0, width, height);
} else {
image(capture, 0, 0, width, height);
}
}
function keyPressed() {
let modelInput = {
target_image: targetImage,
source_image: capture
};
predictReplicate(
"yan-ops/face_swap:ad6bd82aaff9ffabee90890c7bfbb249e4433b7a9f0ebf27b39f927edbd9b129",
modelInput,
donePredicting
);
console.log("Starting prediction, this might take a bit");
}
function donePredicting(results) {
console.log(results);
faceswapImg = loadImage(results.image, function() {
console.log("Faceswap image finished loading");
});
}