I am using FLIR Spinnaker python interface pyspin. I noticed that saving images takes a chunk of time and I want to Parallelize it so the system could be loading a new image while the current image is saving.
My confusion is on if the python threading will help or if I will need another process(which adds its own problems). Basically the system is IO bound but via the Spinnaker library call, not a python call. Will this block the thread since it's not a system IO through the python interpreter?