Issue
I have an image processing Matlab Algorithm
and want to deploy it on android. I convert Matlab codes to c++ and use generated native codes on Android OS by NDK.
Now my matlab coder use header files of dll.
matlab coder output files
How can I include these files in my Android Studio project? I search and found windows dll can't run on Android. if this is right for my problem, Is there any way which say to Matlab Coder
doesn't use dll ?
Solution
See the following documentation link:
Also see the beginning of the following page:
http://www.mathworks.com/help/images/list-of-supported-functions-with-usage-notes.html
You should try a hardware target different than "MATLAB Host Computer". When targeting "MATLAB Host Computer" if there is a platform specific shared library implementation available for the image processing function it is used. But for other targets coder will use a standalone c-code implementation for the function if it is available.
Answered By - ksurable
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.