Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
8c8c3617
Commit
8c8c3617
authored
Jun 03, 2023
by
ramyma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use a more concise calculation for dest dims
parent
31f57455
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/upscaler.py
modules/upscaler.py
+2
-2
No files found.
modules/upscaler.py
View file @
8c8c3617
...
@@ -53,8 +53,8 @@ class Upscaler:
...
@@ -53,8 +53,8 @@ class Upscaler:
def
upscale
(
self
,
img
:
PIL
.
Image
,
scale
,
selected_model
:
str
=
None
):
def
upscale
(
self
,
img
:
PIL
.
Image
,
scale
,
selected_model
:
str
=
None
):
self
.
scale
=
scale
self
.
scale
=
scale
dest_w
=
round
((
img
.
width
*
scale
-
4
)
/
8
)
*
8
if
img
.
width
*
scale
%
8
!=
0
else
img
.
width
*
scale
dest_w
=
int
((
img
.
width
*
scale
)
//
8
*
8
)
dest_h
=
round
((
img
.
height
*
scale
-
4
)
/
8
)
*
8
if
img
.
height
*
scale
%
8
!=
0
else
img
.
height
*
scale
dest_h
=
int
((
img
.
height
*
scale
)
//
8
*
8
)
for
_
in
range
(
3
):
for
_
in
range
(
3
):
shape
=
(
img
.
width
,
img
.
height
)
shape
=
(
img
.
width
,
img
.
height
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment