Paras Shah
commited on
Commit
·
b07f96b
1
Parent(s):
c758a23
Final beautification
Browse files
app.py
CHANGED
@@ -47,9 +47,10 @@ st.markdown(
|
|
47 |
st.sidebar.markdown(
|
48 |
body=
|
49 |
"<div style='text-align: justify; color: #ffff00'>"
|
50 |
-
"<h1 style='color: #ffff00; font-size: 4rem;'>About</h1>
|
51 |
-
"(Scots Pine), Fagus sylvatica
|
52 |
-
"
|
|
|
53 |
"of Asia but are also found in India (Parts of Himachal Pradesh, "
|
54 |
"Uttarakhand, Jammu and Kashmir, Sikkim and Arunachal Pradesh). "
|
55 |
"These temperate species, typically thriving in boreal and montane ecosystems, "
|
@@ -60,9 +61,9 @@ st.sidebar.markdown(
|
|
60 |
"and environmental factors.<br><br>"
|
61 |
"This AI-powered application employs the PointNet++ deep learning "
|
62 |
"architecture, optimized for processing 3D point cloud data from "
|
63 |
-
"individual <code>.laz</code> files
|
64 |
-
"to classify tree species up to four classes
|
65 |
-
"Fagus sylvatica, Picea abies, and Betula pendula</strong>) "
|
66 |
"with associated confidence scores. Additionally, it calculates critical "
|
67 |
"metrics such as Diameter at Breast Height (DBH), actual height and "
|
68 |
"customizable canopy volume, enabling precise refinement of predictions "
|
@@ -108,7 +109,8 @@ st.markdown(
|
|
108 |
"a density-based clustering algorithm that groups densely packed points within "
|
109 |
"a specified distance 'eps' and minimum points 'minpoints', while treating "
|
110 |
"sparse points as noise. It effectively identifies arbitrarily shaped clusters "
|
111 |
-
"and handles outliers, making it suitable for spatial data and anomaly detection."
|
|
|
112 |
unsafe_allow_html=True
|
113 |
)
|
114 |
|
|
|
47 |
st.sidebar.markdown(
|
48 |
body=
|
49 |
"<div style='text-align: justify; color: #ffff00'>"
|
50 |
+
"<h1 style='color: #ffff00; font-size: 4rem;'>About</h1>"
|
51 |
+
"The species <strong>Pinus sylvestris (Scots Pine), Fagus sylvatica "
|
52 |
+
"(European Beech), Picea abies (Norway Spruce), and Betula pendula "
|
53 |
+
"(Silver Birch)</strong> are native to Europe and parts "
|
54 |
"of Asia but are also found in India (Parts of Himachal Pradesh, "
|
55 |
"Uttarakhand, Jammu and Kashmir, Sikkim and Arunachal Pradesh). "
|
56 |
"These temperate species, typically thriving in boreal and montane ecosystems, "
|
|
|
61 |
"and environmental factors.<br><br>"
|
62 |
"This AI-powered application employs the PointNet++ deep learning "
|
63 |
"architecture, optimized for processing 3D point cloud data from "
|
64 |
+
"individual <code>.las</code> <code>.laz</code> <code>.pcd</code> files "
|
65 |
+
"(fused aerial and terrestrial LiDAR) to classify tree species up to four classes "
|
66 |
+
"(<strong>Pinus sylvestris, Fagus sylvatica, Picea abies, and Betula pendula</strong>) "
|
67 |
"with associated confidence scores. Additionally, it calculates critical "
|
68 |
"metrics such as Diameter at Breast Height (DBH), actual height and "
|
69 |
"customizable canopy volume, enabling precise refinement of predictions "
|
|
|
109 |
"a density-based clustering algorithm that groups densely packed points within "
|
110 |
"a specified distance 'eps' and minimum points 'minpoints', while treating "
|
111 |
"sparse points as noise. It effectively identifies arbitrarily shaped clusters "
|
112 |
+
"and handles outliers, making it suitable for spatial data and anomaly detection."
|
113 |
+
"</div><br>",
|
114 |
unsafe_allow_html=True
|
115 |
)
|
116 |
|