forked from songwan/HTPPs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_Home.py
More file actions
49 lines (41 loc) · 1023 Bytes
/
1_Home.py
File metadata and controls
49 lines (41 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import streamlit as st
def intro():
import streamlit as st
st.write("# High-throughput Drone Phenotyping Hub")
st.sidebar.success("")
st.markdown(
"""
The hub is a collection of resources for drone images, database and image analysis using machine learning.
"""
)
intro()
col1, col2, col3 = st.columns(3)
with col1:
st.header("Imagebreed")
st.image("./images/imagebreedlogo_noBackground.png")
st.markdown(
"""
[Imagebreed](https://imagebreed.org)
"""
)
with col2:
st.header("CropGalaxy")
st.image("./images/GS-Galaxy_logo.jpg")
st.markdown(
"""
[cropgalaxy](http://cropgalaxy.excellenceinbreeding.org/)
"""
)
with col3:
st.header("AI/ML")
st.image("./images/aiml.png")
st.markdown(
"""
[phenotype prediction](./Phenotype_Prediction)
"""
)
st.markdown(
"""
[disease identifier](./Rice_Disease_Identifier)
"""
)