debugging button to help get information

Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
This commit is contained in:
Victor Seiji Hariki 2022-12-24 11:56:30 -03:00
parent 953aed236e
commit 14aed51a89
5 changed files with 68 additions and 16 deletions

View file

@ -174,6 +174,9 @@
<button id="resetToDefaults" onclick="resetToDefaults()"> <button id="resetToDefaults" onclick="resetToDefaults()">
Reset to defaults Reset to defaults
</button> </button>
<button id="toggleDebugBtn" onclick="global.toggledebug()">
Toggle Debug
</button>
<br /> <br />
<span id="version"> <span id="version">
<a href="https://github.com/zero01101/openOutpaint" target="_blank"> <a href="https://github.com/zero01101/openOutpaint" target="_blank">

View file

@ -19,4 +19,27 @@ const global = {
// If there is a selected input // If there is a selected input
hasActiveInput: false, hasActiveInput: false,
// If debugging is enabled
_debug: false,
set debug(v) {
if (debugLayer) {
if (v) {
debugLayer.unhide();
} else {
debugLayer.hide();
}
}
this._debug = v;
},
get debug() {
return this._debug;
},
/**
* Toggles debugging.
*/
toggledebug() {
this.debug = !this.debug;
},
}; };

View file

@ -18,7 +18,7 @@ mouse.listen.world.onmousemove.on((evn) => {
snapXInfo.textContent = evn.x + snap(evn.x); snapXInfo.textContent = evn.x + snap(evn.x);
snapYInfo.textContent = evn.y + snap(evn.y); snapYInfo.textContent = evn.y + snap(evn.y);
if (debug) { if (global.debug) {
debugLayer.clear(); debugLayer.clear();
debugCtx.fillStyle = "#F0F"; debugCtx.fillStyle = "#F0F";
debugCtx.beginPath(); debugCtx.beginPath();
@ -31,17 +31,3 @@ mouse.listen.world.onmousemove.on((evn) => {
debugCtx.fill(); debugCtx.fill();
} }
}); });
/**
* Toggles the debug layer (Just run toggledebug() in the console)
*/
const toggledebug = () => {
const hidden = debugCanvas.style.display === "none";
if (hidden) {
debugLayer.unhide();
debug = true;
} else {
debugLayer.hide();
debug = false;
}
};

View file

@ -308,7 +308,7 @@ mouse.listen.window.btn.middle.onpaint.on((evn) => {
} }
viewport.transform(imageCollection.element); viewport.transform(imageCollection.element);
if (debug) { if (global.debug) {
debugCtx.clearRect(0, 0, debugCanvas.width, debugCanvas.height); debugCtx.clearRect(0, 0, debugCanvas.width, debugCanvas.height);
debugCtx.fillStyle = "#F0F"; debugCtx.fillStyle = "#F0F";
debugCtx.beginPath(); debugCtx.beginPath();

View file

@ -86,6 +86,46 @@ const _monitorProgress = (bb, oncheck = null) => {
const _dream = async (endpoint, request) => { const _dream = async (endpoint, request) => {
const apiURL = `${host}${url}${endpoint}`; const apiURL = `${host}${url}${endpoint}`;
// Debugging is enabled
if (global.debug) {
// Run in parallel
(async () => {
// Create canvas
const canvas = document.createElement("canvas");
canvas.width = request.width;
canvas.height = request.height * (request.init_images.length + 1);
const ctx = canvas.getContext("2d");
// Load images and draw to canvas
for (let i = 0; i < request.init_images.length; i++) {
try {
const image = document.createElement("img");
image.src = request.init_images[i];
await image.decode();
ctx.drawImage(image, 0, i * request.height);
} catch (e) {}
}
// Load mask and draw to canvas
if (request.mask) {
try {
const mask = document.createElement("img");
mask.src = request.mask;
await mask.decode();
ctx.drawImage(mask, 0, canvas.height - request.height);
} catch (e) {}
}
downloadCanvas({
canvas,
cropToContent: false,
filename: `openOutpaint_debug_${new Date()}.png`,
});
})();
}
/** @type {StableDiffusionResponse} */ /** @type {StableDiffusionResponse} */
let data = null; let data = null;
try { try {