Delete workingapp.py
Browse files- workingapp.py +0 -28
workingapp.py
DELETED
@@ -1,28 +0,0 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
import numpy as np
|
3 |
-
import time
|
4 |
-
|
5 |
-
def sepia(input_img, num_copies):
|
6 |
-
sepia_filter = np.array([
|
7 |
-
[0.393, 0.769, 0.189],
|
8 |
-
[0.349, 0.686, 0.168],
|
9 |
-
[0.272, 0.534, 0.131]
|
10 |
-
])
|
11 |
-
# Normalize input image to 0-1 range
|
12 |
-
input_img = input_img / 255.0
|
13 |
-
sepia_img = np.dot(input_img[...,:3], sepia_filter.T)
|
14 |
-
sepia_img = np.clip(sepia_img, 0, 1)
|
15 |
-
|
16 |
-
# Iterate to yield multiple sepia images
|
17 |
-
for _ in range(num_copies):
|
18 |
-
# Simulating a delay for demonstration, you might not need this
|
19 |
-
time.sleep(1)
|
20 |
-
yield (sepia_img * 255).astype(np.uint8)
|
21 |
-
|
22 |
-
demo = gr.Interface(fn=sepia,
|
23 |
-
inputs=[gr.Image(), gr.Number()],
|
24 |
-
outputs="image",
|
25 |
-
title="Sepia Tone Generator")
|
26 |
-
|
27 |
-
if __name__ == "__main__":
|
28 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|