Communicating between Python and .NET Core with Boost Interprocess
Jared Rhodes, Microsoft MVP and Pluralsight Author, showcases how to use shared memory to communicate between .net core and python
Jared Rhodes
Jared Rhodes, Microsoft MVP and Pluralsight Author, showcases how to use shared memory to communicate between .net core and python
I am trying out the Lead Tools SDK for a Linux based OCR embedded project. In the demo for the OCR portion there is a make file and the project I am trying to integrate it with uses CMake. I wrote a CMake equivalent for integration: https://gist.github.com/QiMata/f1591881a758a405b63ddfc6f63b4154
Just to see if it was possible on my current project, I tried to generate C++ code files from their .proto definitions whenever CMake ran. To do this, I added a few lines to the CMakeLists.txt file of the project. The idea is to use execute_process to call protoc and generate the files in the […]