Improve Manual Extraction process

Adds improvements to the manual selection process. You can now
click to lock the selection box, and can also go forward and backwards
to modify selections after they have been made. You can also now push
'Q' to skip all remaining images to quickly save the extractions you
have already made.
This commit is contained in:
Christopher Throwaway 2018-06-27 21:20:52 -05:00
parent c8c8e8dadc
commit a74b57d6e5
2 changed files with 63 additions and 8 deletions

View file

@ -75,7 +75,8 @@ class SubprocessorBase(object):
return None
def inc_progress_bar(self, c):
self.progress_bar.update(c)
self.progress_bar.n += c
self.progress_bar.refresh()
def safe_print(self, msg):
self.print_lock.acquire()