Merge pull request #590 from lllyasviel/dev

fix incorrect cpds
This commit is contained in:
lllyasviel 2023-10-08 18:21:22 -07:00 committed by GitHub
commit 71e9ebc7a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View File

@ -37,7 +37,7 @@ def cpds(x):
# See http://www.cse.cuhk.edu.hk/leojia/projects/color2gray/index.html
# See https://docs.opencv.org/3.0-beta/modules/photo/doc/decolor.html
raw = cv2.GaussianBlur(x, (0, 0), 1.0)
raw = cv2.GaussianBlur(x, (0, 0), 0.8)
density, boost = cv2.decolor(raw)
raw = raw.astype(np.float32)
@ -48,8 +48,11 @@ def cpds(x):
result = density + offset
result -= np.min(result)
result /= np.max(result)
v_min = np.percentile(result, 4)
v_max = np.percentile(result, 96)
result -= v_min
result /= v_max - v_min
result *= 255.0

View File

@ -1 +1 @@
version = '2.1.22'
version = '2.1.24'