Paras Shah
commited on
Commit
·
3e0941e
1
Parent(s):
30fcc55
Change images used
Browse files- app.py +4 -4
- static/{DBH_info.png → canopy.png} +0 -0
- static/canopy_info.JPG +0 -0
- static/canopy_info.png +0 -0
- static/{DBH_info.JPG → dbh.png} +0 -0
app.py
CHANGED
|
@@ -68,9 +68,9 @@ uploaded_file = st.file_uploader(
|
|
| 68 |
help="Please upload trees with ground points removed"
|
| 69 |
)
|
| 70 |
|
| 71 |
-
col1, col2 = st.columns(
|
| 72 |
with col1:
|
| 73 |
-
st.image("static/
|
| 74 |
with col2:
|
| 75 |
CANOPY_VOLUME = st.slider(
|
| 76 |
label="Canopy Volume in % (Z)",
|
|
@@ -94,9 +94,9 @@ with col2:
|
|
| 94 |
"and handles outliers, making it suitable for spatial data and anomaly detection."
|
| 95 |
)
|
| 96 |
|
| 97 |
-
col1, col2 = st.columns(
|
| 98 |
with col1:
|
| 99 |
-
st.image("static/
|
| 100 |
with col2:
|
| 101 |
DBH_HEIGHT = st.slider(
|
| 102 |
label="DBH (Diameter above Breast Height, in metres) (H)",
|
|
|
|
| 68 |
help="Please upload trees with ground points removed"
|
| 69 |
)
|
| 70 |
|
| 71 |
+
col1, col2 = st.columns(2)
|
| 72 |
with col1:
|
| 73 |
+
st.image("static/canopy.png", use_column_width=True)
|
| 74 |
with col2:
|
| 75 |
CANOPY_VOLUME = st.slider(
|
| 76 |
label="Canopy Volume in % (Z)",
|
|
|
|
| 94 |
"and handles outliers, making it suitable for spatial data and anomaly detection."
|
| 95 |
)
|
| 96 |
|
| 97 |
+
col1, col2 = st.columns(2)
|
| 98 |
with col1:
|
| 99 |
+
st.image("static/dbh.png", use_column_width=True)
|
| 100 |
with col2:
|
| 101 |
DBH_HEIGHT = st.slider(
|
| 102 |
label="DBH (Diameter above Breast Height, in metres) (H)",
|
static/{DBH_info.png → canopy.png}
RENAMED
|
File without changes
|
static/canopy_info.JPG
DELETED
|
Binary file (22.3 kB)
|
|
|
static/canopy_info.png
DELETED
|
Binary file (22.3 kB)
|
|
|
static/{DBH_info.JPG → dbh.png}
RENAMED
|
File without changes
|