Embed opencv in java project
Hi, Is there a way to kind of embed opencv in a java project so that it can run on a remote computer? I'm working on a project that involves writing image processing code in an AWS Lambda function and it is giving an unsatisfied link error. Please help. I'm using eclipse IDE for Java by the way and created the AWS Lambda Project using the AWS toolkit.
bear in mind, that opencv is mainly a c++ library, so you'll either have to build opencv binaries (and java wrappers) on that aws box, or cross-compile from your local box.
(and somehow, i come to think, that this is not supported by the java AWS Lambda workflow at all )
Thanks. But this this page says "Lambda functions can include libraries, even native ones", so I'm guessing opencv can be used with it.
still, that would be native libs for their os/architecture, not yours