update readme, move seed to SD settings in control panel

This commit is contained in:
tim h 2022-11-19 16:23:44 -06:00
parent 0abac48d3f
commit ef7bc7e5ac
2 changed files with 5 additions and 5 deletions

View file

@ -59,8 +59,8 @@ this is a completely vanilla javascript and html canvas outpainting convenience
- scale factor affects the size of both the painting reticle __and__ mask blob
- overmask and related px value expands the area masked in img2img outpaint requests, so as to attempt to minimize the seam between images; it's _partially_ functional currently and correcting the flaws are already in the //todo and issue tracker
- ...everything else is pretty much just a regular stable diffusion option so i presume you know how you use those
12. click "dl canvas" to save the cropped region of outpainted canvas
13. click "new image" to blank the canvas and start all over only to discover that it's like 2 AM and you have to go to sleep because you have work in about 4 hours
12. click "save canvas" to save the cropped region of outpainted canvas
13. click "clear canvas" to blank the canvas and start all over only to discover that it's like 2 AM and you have to go to sleep because you have work in about 4 hours
*if it _doesn't_ create an image, check your console output to see if you've got CORS errors

View file

@ -24,13 +24,13 @@
<label for="negPrompt">Negative prompt:</label> <br>
<textarea
id="negPrompt">people, person, humans, human, divers, diver, glitch, error, text, watermark, bad quality, blurry</textarea><br />
<label for="seed">Seed (-1 for random):</label> <br>
<input type="number" id="seed" onchange="changeSeed()" min="1" max="9999999999" value="-1"
step="1" /><br />
<hr>
</div>
<button type="button" class="collapsible">Stable Diffusion settings</button>
<div class="content">
<label for="seed">Seed (-1 for random):</label> <br>
<input type="number" id="seed" onchange="changeSeed()" min="1" max="9999999999" value="-1"
step="1" /><br />
<label for="samplerSelect">Sampler:</label>
<select id="samplerSelect" onchange="changeSampler()">
<option value="DDIM">DDIM</option>