-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Imagery does not load and render in the labelling window #57
Comments
It is set by
|
I tried switching backend server, from flask
to
but that did not fix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have made doodler python conda environments following the posted instructions (py38) as well as envs based on python versions 3.7, 3.9, and 3.10. I also trialled firefox, chrome and edge browsers. I made environments using WSL on windows 11 and windows 10 (2 different machines). Each time, I ran into the same issue. When I select an image, and navigate to the labeling screen, the image does not appear.
I suspect something is going wrong with the timing
dash_doodler/app.py
Line 506 in 41ce96b
@2320sharon investigated this some (thank you) and her summary is below:
In
update_output
which is called periodically to update the figure I configured it to display the default image if theselect_image_value
(which is the filename of the image selected by the user to label) is None. When I did this the main page kept updating to the default image even after I selected an image which displayed for a second then updated to the default image.Something is causing
select_image_value
to be set to None andupdate_output
is being called every 500ms causing the main figure to clear the image. The question is why isselect_image_value
being clearedI can't seem to figure out where
select_image_value
is from. I can only find it defined in theupdate_output
function where it is passed in as a variableThe text was updated successfully, but these errors were encountered: