Update src/streamlit_app.py
Browse files- src/streamlit_app.py +5 -4
src/streamlit_app.py
CHANGED
@@ -5,12 +5,13 @@ import copy
|
|
5 |
from get_labels_from_samples import export_all_sensor_frames_and_annotations
|
6 |
|
7 |
# ---------------- Streamlit UI ----------------
|
8 |
-
st.title("
|
|
|
9 |
|
10 |
-
api_key = st.text_input("API Key", type="password")
|
11 |
-
source_uuid = st.text_input("Source UUID", value="")
|
12 |
-
target_uuid = st.text_input("Target UUID", value="")
|
13 |
source_frame_num = st.number_input("Source Frame Number", min_value=1, value=50, step=1)
|
|
|
14 |
target_frame_num = st.number_input("Target Frame Number", min_value=1, value=1, step=1)
|
15 |
|
16 |
if st.button("Overwrite Target Frame Annotations"):
|
|
|
5 |
from get_labels_from_samples import export_all_sensor_frames_and_annotations
|
6 |
|
7 |
# ---------------- Streamlit UI ----------------
|
8 |
+
st.title("Copy annotations from one dataset to another")
|
9 |
+
st.description("For Multi-sensor datasets - Cuboids and bounding boxes")
|
10 |
|
11 |
+
api_key = st.text_input("Enter your API Key", type="password")
|
12 |
+
source_uuid = st.text_input("Source UUID (the sample you want to copy from)", value="")
|
|
|
13 |
source_frame_num = st.number_input("Source Frame Number", min_value=1, value=50, step=1)
|
14 |
+
target_uuid = st.text_input("Target UUID (the sample you want to copy to)", value="")
|
15 |
target_frame_num = st.number_input("Target Frame Number", min_value=1, value=1, step=1)
|
16 |
|
17 |
if st.button("Overwrite Target Frame Annotations"):
|