Created
November 13, 2022 12:57
-
-
Save straussmaximilian/ed20d88c86d3bba64b9f70e4ea3b4228 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
from PIL import Image | |
import os | |
import random | |
state = st.session_state | |
BASE_PATH = "./DICE_IMAGES_100/" | |
OPTIONS = ["1", "2", "3", "4", "5", "6", "NA"] | |
if "annotations" not in state: | |
state.annotations = {} | |
state.files = os.listdir(BASE_PATH) | |
state.current_file = state.files[0] | |
def annotate(label): | |
state.annotations[state.current_file] = label | |
if state.files: | |
state.current_file = random.choice(state.files) | |
state.files.remove(state.current_file) | |
st.header("Dataset annotation") | |
if state.files: | |
selected_file = state.current_file | |
filename = os.path.join(BASE_PATH, selected_file) | |
st.write(f"Current file: {selected_file}") | |
image = Image.open(filename) | |
st.image(image) | |
c = st.columns(len(OPTIONS)) | |
for idx, option in enumerate(OPTIONS): | |
c[idx].button(f"{option}", on_click=annotate, args=(option,)) | |
else: | |
st.info("Everything annotated.") | |
st.info(f"Annotated: {len(state.annotations)}, Remaining: {len(state.files)}") | |
st.download_button( | |
"Download annotations as CSV", | |
"\n".join([f"{k}\t{v}" for k, v in state.annotations.items()]), | |
file_name="export.csv", | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment