xxxxxxxxxx
66
// Machine Learning for Artists and Designers
// NYUSH F24 - gohai
// This workflow expects
// - custom_nodes/ComfyUI-layerdiffuse
// - models/checkpoints/sd_xl_base_1.0.safetensors
// to be available on the ComfyUI server
let workflow;
let comfy;
let resImg;
let imgs = [];
let xs = [];
let ys = [];
function preload() {
workflow = loadJSON("workflow_api.json");
}
function setup() {
createCanvas(512, 512);
pixelDensity(2); // SDXL operates on 1024x1024
comfy = new ComfyUiP5Helper("https://gpu1.gohai.xyz:8188/");
console.log("workflow is", workflow);
let button = createButton("generate");
button.mousePressed(requestImage);
}
function requestImage() {
workflow[3].inputs.seed = random(999999);
comfy.run(workflow, gotImage);
}
function gotImage(data, err) {
// data is an array of outputs from running the workflow
console.log("gotImage", data);
// you can load them like so
if (data.length > 0) {
imgs.push(loadImage(data[0].src));
xs.push(random(width));
ys.push(random(height));
}
// we could automatically run again if we wanted
//requestImage();
}
function draw() {
background((frameCount / 1) % 255);
for (let i = 0; i < imgs.length; i++) {
imageMode(CENTER);
image(imgs[i], xs[i], ys[i], imgs[i].width * 0.2, imgs[i].height * 0.2);
xs[i] = xs[i] + 1;
ys[i] = ys[i] + 1;
if (xs[i] > width) {
xs[i] -= width;
}
if (ys[i] > height) {
ys[i] -= height;
}
}
}