Hello,
I am writing a multithreaded application and it seems that the documentation does not mention thread-safety.
May I assume that dcmread and FileDataset.save_as will not mutate global state and can be called from multiple threads?
I know that the GIL will probably makes this less than optimal, but I thought that maybe I would save some time if the GIL is released during the I/O transfer itself.
I read the code cursorily and there is no obvious thread-safety issues that stood out, but of course I could have overlooked many details.
Thanks in advance for any help or pointers you may have on this topic!
--Benjamin