I need to embed some python scripts in C# application. The problem is these scripts use many packages like numpy, openCV etc. I've read that Ironpython may handle such embedding but it's limited to pure Python code without any packages. It would be awesome to have such script as an object in C# app so I would call it every time I need without redundant input/output operations. Time and performance are of the essence, beacause operations are performed on data captured from camera on Python script.
Is there any way to make it?