How to convert code using Image Processing Tool Box to Java for the use of Android?

2 ビュー (過去 30 日間)
I have written code in Matlab using Image Processing Toolbox for the purpose of compression technique...Now I want to know any procedure of converting it into Java Package for Android use.How to package it and deploy it??Thanks in advance for any help..

採用された回答

Subin Kuttappan Stellal Mary
Subin Kuttappan Stellal Mary 2017 年 3 月 2 日
One way to achieve this is by following the below steps :
1. Convert the MATLAB code that you have written into C code. This can be achieved by using MATLAB Coder toolbox.
Note: The in-built MATLAB functions used in your code must be supported for C/C++ code generation. For the list of MATLAB functions that are supported for code generation, refer this link .
2. Build this C code to a .so library.
3. Create a new Android project in Android Studio . From the base JAVA code of the sample application, call the C functions present in the .so file through JNI(Java Native Interface).
For more details on JNI, refer this and this .
  2 件のコメント
Muhammad Usman Aslam
Muhammad Usman Aslam 2018 年 7 月 12 日
Brother can i get the tutorial for this work ?
Suvitha Palani
Suvitha Palani 2020 年 12 月 26 日
Hi, can i get tutorial for this question?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSetup and Configuration についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by