You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -46,7 +46,7 @@ The smart part of the name comes from the fact that it uses some simple pixel ca
46
46
## Basic Quick Get Started GUI Version
47
47
1. Open the application.
48
48
2. Browse to your raw folder.
49
-
4. Select a the output file type. (Supported types: png, jpg, webp, bmp, tiff, tga)
49
+
4. Select a the output file type. (Supported types: png, jpg, webp, bmp, psd, tiff, tga)
50
50
3. Set the Rough Panel Height of the output files.
51
51
5. Click start process.
52
52
6. Done, Enjoy!
@@ -71,7 +71,7 @@ The smart part of the name comes from the fact that it uses some simple pixel ca
71
71
Keep in mind that this setup is only needed once, after running the setup.py, you can just launch ```SmartStitchGUI.py``` directly every time
72
72
73
73
## Reporting Bugs [New to 3.0+]:
74
-
A very robust logging system has been implemented in the GUI version of SmartStitch for almost every interaction with the program, when an error occur the application will inform you about it, and leaves the details in a file called in the ```__logs__``` folder, There will be a file created for every day of usage. you can open an issue ticket here and attach the file, so it can be easily debugged and fixed.
74
+
A very robust logging system has been implemented in the GUI version of SmartStitch for almost every interaction with the program, when an error occur the application will inform you about it, and leaves the details in a file called in the ```__logs__``` folder, There will be a file created for every day of usage. you can open an issue ticket here and attach the file, so it can be easily debugged and fixed.
75
75
76
76
And since it's just one person maintaining this application, only accepted tickets will be for version 3.0 and above. Please don't open tickets for lower versions, since your problem could have been already solved.
77
77
@@ -83,17 +83,17 @@ You can also contact me at Discord if you don't want to use the GitHub Issue Sys
83
83
Here is the complete documentation for the application, it is broken down into 4 sections, basic settings, advanced settings, how to build your own version, how to run the console version.
84
84
85
85
## Basic Settings
86
-
These are the required settings that all users should be mindful of.
86
+
These are the required settings that all users should be mindful of.
87
87
88
88
### Input Folder Path
89
89
Here you have to set the path for the Input Folder which contains the raws that will be processed by the program. If batch mode is enabled, it will search for subfolder within the given input path. So make sure your folder and files are in order.
90
90
91
91
*Console Parameter Name: --input_folder, -i*
92
92
93
93
### Output type
94
-
The default output type is png since it is lossless, however you can always change to other types, such as jpg, the program does save jpg at 100 quality, so there should be not noticable loss in quality but it is up to the user what format they want.
94
+
The default output type is png since it is lossless, however you can always change to other types, such as jpg, the program does save jpg at 100 quality, so there should be not noticeable loss in quality but it is up to the user what format they want. (You can also now use PSD files for convenience if you are a Photoshop user, however output files will not contain the layers of the original input psd file)
Here you set the size that you want most output panels to roughly be, the program will uses it as a guide to see where to slice/cut the images, however it IS ROUGH, meaning if the program finds bubbles/sfx/whatever at that specific pixel length, it will try to find the next closest position where it can cut the image. Thus the output size of each image will vary because of that, but they all will be roughly around this size.
@@ -135,7 +135,7 @@ This is the step at which the program moves if it find the line it's on to be un
This gives the option to ignore pixels on the border of the image when checking for bubbles/sfw/whatever. Why you might ask, Borders do not make the detection algorithm happy, so in some cases you want it to start its detection only inside said border, be careful to what value you want it to be since if it's larger that image it will case the program to crash/stop its operation.
140
140
141
141
*Default: 0* --- *Console Parameter Name: -ip*
@@ -174,22 +174,22 @@ Of course you can use whatever version of waifu2x or process that you want, this
174
174
175
175
### Console Version Usage
176
176
```
177
-
python SmartStitchConsole.py [-h] -i INPUT_FOLDER
178
-
-sh SPLIT_HEIGHT
179
-
[-t {.png,.jpg,.webp,.bmp,.tiff,.tga}]
180
-
[-cw CUSTOM_WIDTH]
181
-
[-dt {none,pixel}]
182
-
[-s [0-100]]
183
-
[-lq [1-100]]
184
-
[-ip IGNORABLE_PIXELS]
177
+
python SmartStitchConsole.py [-h] -i INPUT_FOLDER
178
+
-sh SPLIT_HEIGHT
179
+
[-t {.png,.jpg,.webp,.bmp,.psd,.tiff,.tga}]
180
+
[-cw CUSTOM_WIDTH]
181
+
[-dt {none,pixel}]
182
+
[-s [0-100]]
183
+
[-lq [1-100]]
184
+
[-ip IGNORABLE_PIXELS]
185
185
[-sl [1-100]]
186
186
required arguments:
187
187
--input_folder INPUT_FOLDER, -i INPUT_FOLDER Sets the path of Input Folder
188
188
optional arguments:
189
189
-h, --help show this help message and exit
190
190
-i INPUT_FOLDER Sets the path of Input Folder
191
191
-sh SPLIT_HEIGHT Sets the value of the Rough Panel Height
192
-
-t {.png,.jpg,.webp,.bmp,.tiff,.tga}
192
+
-t {.png,.jpg,.webp,.bmp,.psd,.tiff,.tga}
193
193
Sets the type/format of the Output Image Files
194
194
-cw CUSTOM_WIDTH [Advanced] Forces Fixed Width for All Output Image Files, Default=None (Disabled)
195
195
-dt {none,pixel} [Advanced] Sets the type of Slice Location Detection, Default=pixel (Pixel Comparison)
@@ -202,7 +202,7 @@ optional arguments:
202
202
### Console Version Command Example
203
203
```
204
204
python SmartStitchConsole.py -i "Review me" -sh 7500 -t ".png"
205
-
# This will Run the application on for input_folder of "./Review me" with split_height of 7500 and output_tyoe of ".png"
205
+
# This will Run the application on for input_folder of "./Review me" with split_height of 7500 and output_type of ".png"
0 commit comments