Embed opencv in java project

asked 2016-07-25 10:55:37 -0600

valium123 gravatar image

updated 2016-07-25 16:34:22 -0600

berak gravatar image

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.

edit retag flag offensive close merge delete

Comments

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 )

berak gravatar imageberak ( 2016-07-27 02:07:12 -0600 )edit

Thanks. But this this page says "Lambda functions can include libraries, even native ones", so I'm guessing opencv can be used with it.

valium123 gravatar imagevalium123 ( 2016-07-27 16:45:21 -0600 )edit

still, that would be native libs for their os/architecture, not yours

berak gravatar imageberak ( 2016-07-27 19:53:06 -0600 )edit