Merge branch 'comfyanonymous:master' into feat/widgetFeedback

This commit is contained in:
Dr.Lt.Data 2023-10-09 13:57:43 +09:00 committed by GitHub
commit da3c937ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 110 additions and 39 deletions

View File

@ -158,7 +158,7 @@ class SplitImageWithAlpha:
def split_image_with_alpha(self, image: torch.Tensor): def split_image_with_alpha(self, image: torch.Tensor):
out_images = [i[:,:,:3] for i in image] out_images = [i[:,:,:3] for i in image]
out_alphas = [i[:,:,3] if i.shape[2] > 3 else torch.ones_like(i[:,:,0]) for i in image] out_alphas = [i[:,:,3] if i.shape[2] > 3 else torch.ones_like(i[:,:,0]) for i in image]
result = (torch.stack(out_images), torch.stack(out_alphas)) result = (torch.stack(out_images), 1.0 - torch.stack(out_alphas))
return result return result
@ -180,7 +180,7 @@ class JoinImageWithAlpha:
batch_size = min(len(image), len(alpha)) batch_size = min(len(image), len(alpha))
out_images = [] out_images = []
alpha = resize_mask(alpha, image.shape[1:]) alpha = 1.0 - resize_mask(alpha, image.shape[1:])
for i in range(batch_size): for i in range(batch_size):
out_images.append(torch.cat((image[i][:,:,:3], alpha[i].unsqueeze(2)), dim=2)) out_images.append(torch.cat((image[i][:,:,:3], alpha[i].unsqueeze(2)), dim=2))

View File

@ -15,7 +15,7 @@ class BasicScheduler:
} }
} }
RETURN_TYPES = ("SIGMAS",) RETURN_TYPES = ("SIGMAS",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sigmas" FUNCTION = "get_sigmas"
@ -35,7 +35,7 @@ class KarrasScheduler:
} }
} }
RETURN_TYPES = ("SIGMAS",) RETURN_TYPES = ("SIGMAS",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sigmas" FUNCTION = "get_sigmas"
@ -53,7 +53,7 @@ class ExponentialScheduler:
} }
} }
RETURN_TYPES = ("SIGMAS",) RETURN_TYPES = ("SIGMAS",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sigmas" FUNCTION = "get_sigmas"
@ -72,7 +72,7 @@ class PolyexponentialScheduler:
} }
} }
RETURN_TYPES = ("SIGMAS",) RETURN_TYPES = ("SIGMAS",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sigmas" FUNCTION = "get_sigmas"
@ -91,7 +91,7 @@ class VPScheduler:
} }
} }
RETURN_TYPES = ("SIGMAS",) RETURN_TYPES = ("SIGMAS",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sigmas" FUNCTION = "get_sigmas"
@ -108,7 +108,7 @@ class SplitSigmas:
} }
} }
RETURN_TYPES = ("SIGMAS","SIGMAS") RETURN_TYPES = ("SIGMAS","SIGMAS")
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sigmas" FUNCTION = "get_sigmas"
@ -125,7 +125,7 @@ class KSamplerSelect:
} }
} }
RETURN_TYPES = ("SAMPLER",) RETURN_TYPES = ("SAMPLER",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sampler" FUNCTION = "get_sampler"
@ -144,7 +144,7 @@ class SamplerDPMPP_2M_SDE:
} }
} }
RETURN_TYPES = ("SAMPLER",) RETURN_TYPES = ("SAMPLER",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sampler" FUNCTION = "get_sampler"
@ -168,7 +168,7 @@ class SamplerDPMPP_SDE:
} }
} }
RETURN_TYPES = ("SAMPLER",) RETURN_TYPES = ("SAMPLER",)
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
FUNCTION = "get_sampler" FUNCTION = "get_sampler"
@ -201,7 +201,7 @@ class SamplerCustom:
FUNCTION = "sample" FUNCTION = "sample"
CATEGORY = "_for_testing/custom_sampling" CATEGORY = "sampling/custom_sampling"
def sample(self, model, add_noise, noise_seed, cfg, positive, negative, sampler, sigmas, latent_image): def sample(self, model, add_noise, noise_seed, cfg, positive, negative, sampler, sigmas, latent_image):
latent = latent_image latent = latent_image

View File

@ -200,6 +200,10 @@ app.registerExtension({
for (const input of this.inputs) { for (const input of this.inputs) {
if (input.widget && !input.widget[GET_CONFIG]) { if (input.widget && !input.widget[GET_CONFIG]) {
input.widget[GET_CONFIG] = () => getConfig.call(this, input.widget.name); input.widget[GET_CONFIG] = () => getConfig.call(this, input.widget.name);
const w = this.widgets.find((w) => w.name === input.widget.name);
if (w) {
hideWidget(this, w);
}
} }
} }
} }

View File

@ -450,6 +450,47 @@ export class ComfyApp {
} }
} }
function calculateGrid(w, h, n) {
let columns, rows, cellsize;
if (w > h) {
cellsize = h;
columns = Math.ceil(w / cellsize);
rows = Math.ceil(n / columns);
} else {
cellsize = w;
rows = Math.ceil(h / cellsize);
columns = Math.ceil(n / rows);
}
while (columns * rows < n) {
cellsize++;
if (w >= h) {
columns = Math.ceil(w / cellsize);
rows = Math.ceil(n / columns);
} else {
rows = Math.ceil(h / cellsize);
columns = Math.ceil(n / rows);
}
}
const cell_size = Math.min(w/columns, h/rows);
return {cell_size, columns, rows};
}
function is_all_same_aspect_ratio(imgs) {
// assume: imgs.length >= 2
let ratio = imgs[0].naturalWidth/imgs[0].naturalHeight;
for(let i=1; i<imgs.length; i++) {
let this_ratio = imgs[i].naturalWidth/imgs[i].naturalHeight;
if(ratio != this_ratio)
return false;
}
return true;
}
if (this.imgs && this.imgs.length) { if (this.imgs && this.imgs.length) {
const canvas = graph.list_of_graphcanvas[0]; const canvas = graph.list_of_graphcanvas[0];
const mouse = canvas.graph_mouse; const mouse = canvas.graph_mouse;
@ -460,44 +501,60 @@ export class ComfyApp {
this.pointerDown = null; this.pointerDown = null;
} }
let w = this.imgs[0].naturalWidth;
let h = this.imgs[0].naturalHeight;
let imageIndex = this.imageIndex; let imageIndex = this.imageIndex;
const numImages = this.imgs.length; const numImages = this.imgs.length;
if (numImages === 1 && !imageIndex) { if (numImages === 1 && !imageIndex) {
this.imageIndex = imageIndex = 0; this.imageIndex = imageIndex = 0;
} }
const shiftY = getImageTop(this); const top = getImageTop(this);
var shiftY = top;
let dw = this.size[0]; let dw = this.size[0];
let dh = this.size[1]; let dh = this.size[1];
dh -= shiftY; dh -= shiftY;
if (imageIndex == null) { if (imageIndex == null) {
let best = 0; var cellWidth, cellHeight, shiftX, cell_padding, cols;
let cellWidth;
let cellHeight;
let cols = 0;
let shiftX = 0;
for (let c = 1; c <= numImages; c++) {
const rows = Math.ceil(numImages / c);
const cW = dw / c;
const cH = dh / rows;
const scaleX = cW / w;
const scaleY = cH / h;
const scale = Math.min(scaleX, scaleY, 1); const compact_mode = is_all_same_aspect_ratio(this.imgs);
const imageW = w * scale; if(!compact_mode) {
const imageH = h * scale; // use rectangle cell style and border line
const area = imageW * imageH * numImages; cell_padding = 2;
const { cell_size, columns, rows } = calculateGrid(dw, dh, numImages);
cols = columns;
if (area > best) { cellWidth = cell_size;
best = area; cellHeight = cell_size;
cellWidth = imageW; shiftX = (dw-cell_size*cols)/2;
cellHeight = imageH; shiftY = (dh-cell_size*rows)/2 + top;
cols = c; }
shiftX = c * ((cW - imageW) / 2); else {
cell_padding = 0;
let best = 0;
let w = this.imgs[0].naturalWidth;
let h = this.imgs[0].naturalHeight;
// compact style
for (let c = 1; c <= numImages; c++) {
const rows = Math.ceil(numImages / c);
const cW = dw / c;
const cH = dh / rows;
const scaleX = cW / w;
const scaleY = cH / h;
const scale = Math.min(scaleX, scaleY, 1);
const imageW = w * scale;
const imageH = h * scale;
const area = imageW * imageH * numImages;
if (area > best) {
best = area;
cellWidth = imageW;
cellHeight = imageH;
cols = c;
shiftX = c * ((cW - imageW) / 2);
}
} }
} }
@ -542,7 +599,14 @@ export class ComfyApp {
let imgWidth = ratio * img.width; let imgWidth = ratio * img.width;
let imgX = col * cellWidth + shiftX + (cellWidth - imgWidth)/2; let imgX = col * cellWidth + shiftX + (cellWidth - imgWidth)/2;
ctx.drawImage(img, imgX, imgY, imgWidth, imgHeight); ctx.drawImage(img, imgX+cell_padding, imgY+cell_padding, imgWidth-cell_padding*2, imgHeight-cell_padding*2);
if(!compact_mode) {
// rectangle cell and border line style
ctx.strokeStyle = "#8F8F8F";
ctx.lineWidth = 1;
ctx.strokeRect(x+cell_padding, y+cell_padding, cellWidth-cell_padding*2, cellHeight-cell_padding*2);
}
ctx.filter = "none"; ctx.filter = "none";
} }
@ -552,6 +616,9 @@ export class ComfyApp {
} }
} else { } else {
// Draw individual // Draw individual
let w = this.imgs[imageIndex].naturalWidth;
let h = this.imgs[imageIndex].naturalHeight;
const scaleX = dw / w; const scaleX = dw / w;
const scaleY = dh / h; const scaleY = dh / h;
const scale = Math.min(scaleX, scaleY, 1); const scale = Math.min(scaleX, scaleY, 1);
@ -594,14 +661,14 @@ export class ComfyApp {
}; };
if (numImages > 1) { if (numImages > 1) {
if (drawButton(x + w - 35, y + h - 35, 30, `${this.imageIndex + 1}/${numImages}`)) { if (drawButton(dw - 40, dh + top - 40, 30, `${this.imageIndex + 1}/${numImages}`)) {
let i = this.imageIndex + 1 >= numImages ? 0 : this.imageIndex + 1; let i = this.imageIndex + 1 >= numImages ? 0 : this.imageIndex + 1;
if (!this.pointerDown || !this.pointerDown.index === i) { if (!this.pointerDown || !this.pointerDown.index === i) {
this.pointerDown = { index: i, pos: [...mouse] }; this.pointerDown = { index: i, pos: [...mouse] };
} }
} }
if (drawButton(x + w - 35, y + 5, 30, `x`)) { if (drawButton(dw - 40, top + 10, 30, `x`)) {
if (!this.pointerDown || !this.pointerDown.index === null) { if (!this.pointerDown || !this.pointerDown.index === null) {
this.pointerDown = { index: null, pos: [...mouse] }; this.pointerDown = { index: null, pos: [...mouse] };
} }