Python to CS entrypoint
how can i compile a python package into a dll or so and use it withhin c# ? or have both languages coexisting?
9 Replies
IronPython maybe
Or just calling Py scripts from C#
for a past project I invoked Python scripts through the executable using Process.Start
its more about having a python module (image converter and some more advanced stuff with image manipulation automated) but using it in a C# file so i can say
Unless you find some magic Python to IL converter, that's not possible
ah allright then ima just rewrite 7 packages i use in py to C# and my python code to C# then it should work :WishMeLuck:
ah no nitro anymore
still thanks alot for your help
I mean you can try using IronPython, but you'll never be able to fully use Python modules as if there were C# classes.
yes thats what i kinda need to achive
You could also try checking out ImageSharp if you need advanced image manipulation
need to create a BitMap from an video file repeatenly for each frame and then well process it to remove any kind of epileptic screen contents
i want to create a filter against those basicly
or i just let someone else do it from my team xD