Skip to content
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

Allow user to quickly review digitized images across multiple individuals #43

Closed
droglenc opened this issue Aug 23, 2020 · 1 comment · Fixed by #64
Closed

Allow user to quickly review digitized images across multiple individuals #43

droglenc opened this issue Aug 23, 2020 · 1 comment · Fixed by #64
Assignees
Labels
enhancement New feature or request

Comments

@droglenc
Copy link
Contributor

A user (Nathan Stewart) would like to be able to quickly look at (review) his digitized images across multiple individuals. This can be accomplished with the following code (using a list of rds files in a directory as an example).

setwd()
tmp <- listFiles(".rds")
for (i in tmp) {
  showDigitizedImage(i)
  invisible(readline(prompt="Press [enter] to continue"))
} 

but it requires the user to click back to the console to continue to the next image. It would be better if I created a reviewDigitizedImages() function that took a list of rds file names, cycled through those but allowed the user to press "N" to go to the next image or "P" to go to a previous image. The new function should be able to rely on many of the internals for showDigitizedImage() along with some of the key press code in iSelectPoints().

@droglenc
Copy link
Contributor Author

This is currently in the development branch version and will eventually be in v0.2.8.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
1 participant