OzoneAsai commited on
Commit
c37459f
1 Parent(s): 8ca8419

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -87,7 +87,8 @@ def blur_image(image: Image.Image, blur_enabled: bool, nsfw_score: float) -> Ima
87
  nsfw_score = nsfw_result.get('nsfw', 0.0)
88
  if nsfw_score >= 0.75:
89
  blur_radius=20*nsfw_score
90
- image = image.filter(ImageFilter.BLUR(radius=blur_radius))
 
91
  return image
92
 
93
  # ページングと並び替えのためのデータを取得する関数
 
87
  nsfw_score = nsfw_result.get('nsfw', 0.0)
88
  if nsfw_score >= 0.75:
89
  blur_radius=20*nsfw_score
90
+ image = image.filter(ImageFilter.GaussianBlur(radius=blur_radius))
91
+
92
  return image
93
 
94
  # ページングと並び替えのためのデータを取得する関数