JacobBumgarner / VesselVio

An open-source application for the analysis and visualization of segmented vasculature datasets
https://jacobbumgarner.github.io/VesselVio/
GNU General Public License v3.0
99 stars 21 forks source link

Non-binary image spot check. #43

Closed JacobBumgarner closed 2 years ago

JacobBumgarner commented 2 years ago

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.

That is completed here.

Fixes #42