Astridkraft commited on
Commit
e9345f5
·
verified ·
1 Parent(s): 3e5901e

Update controlnet_module.py

Browse files
Files changed (1) hide show
  1. controlnet_module.py +1 -1
controlnet_module.py CHANGED
@@ -1265,7 +1265,7 @@ class ControlNetProcessor:
1265
  print(" • MORPH_OPEN (3x3) - Rauschen entfernen")
1266
 
1267
  # Leichter Dilate für mehr Abdeckung
1268
- kernel_dilate = np.ones((9x9), np.uint8)
1269
  mask_array = cv2.dilate(mask_array, kernel_dilate, iterations=1)
1270
  print(" • DILATE (3x3) - Natürliche Abdeckung")
1271
 
 
1265
  print(" • MORPH_OPEN (3x3) - Rauschen entfernen")
1266
 
1267
  # Leichter Dilate für mehr Abdeckung
1268
+ kernel_dilate = np.ones((9, 9), np.uint8)
1269
  mask_array = cv2.dilate(mask_array, kernel_dilate, iterations=1)
1270
  print(" • DILATE (3x3) - Natürliche Abdeckung")
1271