Updates the qt_threading, VVTerminal, and image_processing pipelines with a simple check to determine whether images are binary.
When I first made the app, I had this check integrated, but I was running the checks on the entire images. This was obviously too slow for large datasets, so I decided to table the check, and frankly I forgot about it.
After discussion with another developer, he suggested a quick solution of just checking a single slice of the images to determine whether they are binary or not.
Updates the
qt_threading
,VVTerminal
, andimage_processing
pipelines with a simple check to determine whether images are binary.When I first made the app, I had this check integrated, but I was running the checks on the entire images. This was obviously too slow for large datasets, so I decided to table the check, and frankly I forgot about it.
After discussion with another developer, he suggested a quick solution of just checking a single slice of the images to determine whether they are binary or not.
That is completed here.
Fixes #42