1
Python and Java API / Re: Cannot achieve multi-threading with concurrent.futures.ThreadPoolExecutor
« on: April 06, 2022, 09:47:54 PM »If it's all pure Python code, you could use the multiprocessing module (https://docs.python.org/3/library/multiprocessing.html), which creates new python processes and passes data between the processesThanks for the suggestion. I remembered I tried it before but it spawned other Metashape application windows with an empty project there and the program stuck there because the data was not passed to other Metashape programs. Is it the case? Maybe my memory is wrong.