Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -3
src/streamlit_app.py
CHANGED
@@ -7,13 +7,13 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "../../0
|
|
7 |
from get_labels_from_samples import export_all_sensor_frames_and_annotations
|
8 |
|
9 |
# ---------------- Streamlit UI ----------------
|
10 |
-
st.title("Multi-Sensor: Overwrite Target Frame Annotations with Source Frame
|
11 |
|
12 |
api_key = st.text_input("API Key", type="password")
|
13 |
source_uuid = st.text_input("Source UUID", value="")
|
14 |
target_uuid = st.text_input("Target UUID", value="")
|
15 |
-
source_frame_num = st.number_input("Source Frame Number
|
16 |
-
target_frame_num = st.number_input("Target Frame Number
|
17 |
|
18 |
if st.button("Overwrite Target Frame Annotations"):
|
19 |
if not api_key or not source_uuid or not target_uuid:
|
|
|
7 |
from get_labels_from_samples import export_all_sensor_frames_and_annotations
|
8 |
|
9 |
# ---------------- Streamlit UI ----------------
|
10 |
+
st.title("Multi-Sensor - Cuboids: Overwrite Target Frame Annotations with Source Frame")
|
11 |
|
12 |
api_key = st.text_input("API Key", type="password")
|
13 |
source_uuid = st.text_input("Source UUID", value="")
|
14 |
target_uuid = st.text_input("Target UUID", value="")
|
15 |
+
source_frame_num = st.number_input("Source Frame Number", min_value=1, value=50, step=1)
|
16 |
+
target_frame_num = st.number_input("Target Frame Number", min_value=1, value=1, step=1)
|
17 |
|
18 |
if st.button("Overwrite Target Frame Annotations"):
|
19 |
if not api_key or not source_uuid or not target_uuid:
|