I have a python program that uses OpenCV. The program runs as expected as it is at the moment. Now I would like to use Cython to compile my python code to C code. I am doing this instead of re-writing the entire program in C because I would still like other python programs to be able to import my_program
.
I have never used Cython before but have just read few blog posts about it. Can someone please tell me what I should be prepared for and how much of an uphill task it would be.... My current python program is ~200 LoC.