I have a Windows C++ application from which I would like to call python's scipy package to perform certain image processing functions. I would also like to include the necessary python interpreter and additional packages (numpy, scipy) along with the executable so that the user does not have to install anything.
Is this possible and what is the simples way to do it? Would it be possible with something like Boost/Python?