Spaces:
Runtime error
Runtime error
[MOD] blur_image.py now redirect to a good output
Browse files- blur_image.py +4 -1
blur_image.py
CHANGED
|
@@ -42,4 +42,7 @@ def blur_image():
|
|
| 42 |
|
| 43 |
#fusion des trois nouvelles images
|
| 44 |
imgnew = Image.merge('RGB',(nr,ng,nb))
|
| 45 |
-
imgnew.save("AI_generated_blurred.png")
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
#fusion des trois nouvelles images
|
| 44 |
imgnew = Image.merge('RGB',(nr,ng,nb))
|
| 45 |
+
imgnew.save("AI_generated_blurred.png")
|
| 46 |
+
|
| 47 |
+
if __name__ == '__main__':
|
| 48 |
+
blur_image()
|