feat(app): added visualization of image
Browse files
app.py
CHANGED
@@ -52,6 +52,9 @@ st.markdown(
|
|
52 |
|
53 |
uploaded_file = st.file_uploader("Choose a file")
|
54 |
|
|
|
|
|
|
|
55 |
if uploaded_file is not None:
|
56 |
try:
|
57 |
bytes_data = uploaded_file.getvalue()
|
@@ -65,9 +68,6 @@ if uploaded_file is not None:
|
|
65 |
|
66 |
img_input_cellpose = img_input_cellpose / (2**16 - 1)
|
67 |
|
68 |
-
col1, col2, col3 = st.columns(3)
|
69 |
-
st.image("assets/cellpose_benchmark.svg")
|
70 |
-
|
71 |
col1.write("Input")
|
72 |
col2.write("CellPose")
|
73 |
col3.write("OpenVINO")
|
|
|
52 |
|
53 |
uploaded_file = st.file_uploader("Choose a file")
|
54 |
|
55 |
+
col1, col2, col3 = st.columns(3)
|
56 |
+
st.image("assets/cellpose_benchmark.svg")
|
57 |
+
|
58 |
if uploaded_file is not None:
|
59 |
try:
|
60 |
bytes_data = uploaded_file.getvalue()
|
|
|
68 |
|
69 |
img_input_cellpose = img_input_cellpose / (2**16 - 1)
|
70 |
|
|
|
|
|
|
|
71 |
col1.write("Input")
|
72 |
col2.write("CellPose")
|
73 |
col3.write("OpenVINO")
|