I’m trying to make an interface for labelling/cleaning an image dataset, and would like to use streamlit to built a simple responsive interface for rapidly cycling through images and interacting with them.
I’d like to load in a image and then draw boxes on it, after each box is drawn to push a key to label that box. Is this possible from streamlit?
For the pagination part you will probably need a mix of Streamlit button + Streamlit Session State + callback to store the page number in it and increment it on button click, then clear the drawing, load the correct image as background to the canvas and start drawing again.
So yes it is possible read the docs carefully, try to bring features little by little and you should be able to build it!