Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,6 @@
|
|
4 |
# "marimo",
|
5 |
# "numba==0.60.0",
|
6 |
# "numpy==2.0.2",
|
7 |
-
# "requests==2.32.3",
|
8 |
# "scikit-image==0.24.0",
|
9 |
# ]
|
10 |
# ///
|
@@ -46,14 +45,9 @@ def __(mo):
|
|
46 |
|
47 |
@app.cell(hide_code=True)
|
48 |
def __():
|
49 |
-
|
50 |
|
51 |
-
input_image
|
52 |
-
img_data = requests.get(
|
53 |
-
"https://upload.wikimedia.org/wikipedia/en/d/dd/The_Persistence_of_Memory.jpg"
|
54 |
-
).content
|
55 |
-
|
56 |
-
return img_data, input_image, requests
|
57 |
|
58 |
|
59 |
@app.cell(hide_code=True)
|
|
|
4 |
# "marimo",
|
5 |
# "numba==0.60.0",
|
6 |
# "numpy==2.0.2",
|
|
|
7 |
# "scikit-image==0.24.0",
|
8 |
# ]
|
9 |
# ///
|
|
|
45 |
|
46 |
@app.cell(hide_code=True)
|
47 |
def __():
|
48 |
+
input_image = "https://upload.wikimedia.org/wikipedia/en/d/dd/The_Persistence_of_Memory.jpg"
|
49 |
|
50 |
+
return input_image,
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
|
53 |
@app.cell(hide_code=True)
|