Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -23,6 +23,7 @@ from streamlit_modal import Modal
|
|
23 |
import streamlit.components.v1 as components
|
24 |
from datetime import datetime
|
25 |
|
|
|
26 |
def image_to_base64(image_path):
|
27 |
with open(image_path, "rb") as img_file:
|
28 |
return base64.b64encode(img_file.read()).decode()
|
@@ -95,6 +96,7 @@ def d4_to_3d(image):
|
|
95 |
|
96 |
st.set_page_config(layout="wide")
|
97 |
|
|
|
98 |
|
99 |
img_selection=None
|
100 |
# Specify canvas parameters in application
|
|
|
23 |
import streamlit.components.v1 as components
|
24 |
from datetime import datetime
|
25 |
|
26 |
+
|
27 |
def image_to_base64(image_path):
|
28 |
with open(image_path, "rb") as img_file:
|
29 |
return base64.b64encode(img_file.read()).decode()
|
|
|
96 |
|
97 |
st.set_page_config(layout="wide")
|
98 |
|
99 |
+
st.write(str(os.getcwd()))
|
100 |
|
101 |
img_selection=None
|
102 |
# Specify canvas parameters in application
|