95a5ad4abb | ||
---|---|---|
.. | ||
app | ||
gradle/wrapper | ||
images | ||
.gitignore | ||
README.en.md | ||
README.md | ||
build.gradle | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
settings.gradle |
README.en.md
MindSpore Lite Style Transfer Demo (Android)
This sample application demonstrates how to use the MindSpore Lite API and MindSpore Lite style transfer model to perform inference on the device, replace the art style of the target image based on the built-in standard image in the demo, and display the image on the image preview screen of the app.
Running Dependencies
- Android Studio 3.2 or later (Android 4.0 or later is recommended.)
Building and Running
-
Load the sample source code to Android Studio.
Start Android Studio, click
File > Settings > System Settings > Android SDK
, and select the correspondingSDK Tools
. As shown in the following figure, select an SDK and clickOK
. Android Studio automatically installs the SDK.Android SDK Tools is the default installation. You can see this by unchecking the
Hide Obsolete Packages
box.If you have any Android Studio configuration problem when trying this demo, please refer to item 4 to resolve it.
-
Connect to an Android device and runs this application.
Connect to the Android device through a USB cable for debugging. Click
Run 'app'
to run the sample project on your device.Android Studio will automatically download MindSpore Lite, model files and other dependencies during the compilation process. Please be patient during this process.
For details about how to connect the Android Studio to a device for debugging, see https://developer.android.com/studio/run/device?hl=zh-cn.
The mobile phone needs to be turn on "USB debugging mode" before Android Studio can recognize the mobile phone. Huawei mobile phones generally turn on "USB debugging model" in Settings -> system and update -> developer Options -> USB debugging.
-
Continue the installation on the Android device. After the installation is complete, you can view the content captured by a camera and the inference result.
-
The solutions of configuration problems:
4.1 Problems of NDK, CMake, JDK Tools:
If the tools installed in Android Studio are not recognized, you can re-download and install them from the corresponding official website, and configure the path.
4.2 NDK version does not match:
Open
Android SDK
, clickShow Package Details
, and select the appropriate NDK version according to the error message.4.3 Problem of Android Studio version:
Update the Android Studio version in
Toolbar - Help - Checkout for Updates
.4.4 Gradle dependencies installed too slowly:
As shown in the picture, open the Demo root directory
build. Gradle
file, then add huawei mirror source address:maven {url 'https://developer.huawei.com/repo/'}
, modify the classpath to 4.0.0 and clicksync
. Once the download is complete, restore the classpath version and synchronize it again.
Detailed Description of the Sample Application
The style transfer sample application on the Android device uses the Android Camera 2 API to enable a camera to obtain image frames and process images, as well as using runtime to complete model inference.
Sample Application Structure
├── app
│ ├── build.gradle # Other Android configuration file.
│ ├── download.gradle # During app building, the .gradle file automatically downloads the dependent library files and model files from the Huawei server.
│ ├── proguard-rules.pro
│ └── src
│ ├── main
│ │ ├── AndroidManifest.xml # Android configuration file.
│ │ ├── java # Application code at the Java layer.
│ │ │ └── com
│ │ │ └── mindspore
│ │ │ └── posenetdemo # Image processing and inference process implementation
│ │ │ ├── CameraDataDealListener.java
│ │ │ ├── ImageUtils.java
│ │ │ ├── MainActivity.java
│ │ │ ├── PoseNetFragment.java
│ │ │ ├── Posenet.java #
│ │ │ └── TestActivity.java
│ │ └── res # Resource files related to Android.
│ └── test
└── ...
Downloading and Deploying the Model File
Download the model file from MindSpore Model Hub. The objective detection model file used in this sample application is style_predict_quant.ms
and style_transfer_quant.ms
, which is automatically downloaded during app building using the download.gradle
script and stored in the app/src/main/assets
project directory.
If the download fails, manually download the model files style_predict_quant.ms and style_transfer_quant.ms.
Writing On-Device Inference Code
In the style transfer demo, the Java API is used to implement on-device inference. Compared with the C++ API, the Java API can be directly called in the Java Class and does not need to implement the related code at the JNI layer. Therefore, the Java API is more convenient.
The inference code process of style transfer demo is as follows. For details about the complete code, see src/main/java/com/mindspore/styletransferdemo/StyleTransferModelExecutor.java
.
-
Load the MindSpore Lite model file and build the context, session, and computational graph for inference.
-
Loading a model: Read a MindSpore Lite model from the file system and parse it.
// Load the .ms model. style_predict_model = new Model(); if (!style_predict_model.loadModel(mContext, "style_predict_quant.ms")) { Log.e("MS_LITE", "Load style_predict_model failed"); } style_transform_model = new Model(); if (!style_transform_model.loadModel(mContext, "style_transfer_quant.ms")) { Log.e("MS_LITE", "Load style_transform_model failed"); }
-
Creating a configuration context: Create the configuration context
MSConfig
and save some basic configuration parameters required by the session for guiding graph building and execution.msConfig = new MSConfig(); if (!msConfig.init(DeviceType.DT_CPU, NUM_THREADS, CpuBindMode.MID_CPU)) { Log.e("MS_LITE", "Init context failed"); }
-
Creating a session: Create
LiteSession
and call theinit
method to configure theMSConfig
obtained in the previous step to the session.// Create the MindSpore lite session. Predict_session = new LiteSession(); if (!Predict_session.init(msConfig)) { Log.e("MS_LITE", "Create Predict_session failed"); msConfig.free(); } Transform_session = new LiteSession(); if (!Transform_session.init(msConfig)) { Log.e("MS_LITE", "Create Predict_session failed"); msConfig.free(); } msConfig.free();
-
Load the model file and build a computational graph for inference.
// Compile graph. if (!Predict_session.compileGraph(style_predict_model)) { Log.e("MS_LITE", "Compile style_predict graph failed"); style_predict_model.freeBuffer(); } if (!Transform_session.compileGraph(style_transform_model)) { Log.e("MS_LITE", "Compile style_transform graph failed"); style_transform_model.freeBuffer(); } // Note: when use model.freeBuffer(), the model can not be compile graph again. style_predict_model.freeBuffer(); style_transform_model.freeBuffer();
-
-
Input data. Currently, Java supports two types of data:
byte[]
andByteBuffer
. Set the data of the input tensor.-
Convert a float array to a byte array before data is input.
public static byte[] floatArrayToByteArray(float[] floats) { ByteBuffer buffer = ByteBuffer.allocate(4 * floats.length); buffer.order(ByteOrder.nativeOrder()); FloatBuffer floatBuffer = buffer.asFloatBuffer(); floatBuffer.put(floats); return buffer.array(); }
-
Input data through
ByteBuffer
.contentImage
is the image provided by users, andstyleBitmap
is the built-in style image.public ModelExecutionResult execute(Bitmap contentImage, Bitmap styleBitmap) { Log.i(TAG, "running models"); fullExecutionTime = SystemClock.uptimeMillis(); preProcessTime = SystemClock.uptimeMillis(); ByteBuffer contentArray = ImageUtils.bitmapToByteBuffer(contentImage, CONTENT_IMAGE_SIZE, CONTENT_IMAGE_SIZE, 0, 255); ByteBuffer input = ImageUtils.bitmapToByteBuffer(styleBitmap, STYLE_IMAGE_SIZE, STYLE_IMAGE_SIZE, 0, 255);
-
-
Perform inference on the input tensor based on the model, obtain the output tensor, and perform post-processing.
-
Use
runGraph
to perform model inference on the built-in image and obtain the resultPredict_results
.List<MSTensor> Predict_inputs = Predict_session.getInputs(); if (Predict_inputs.size() != 1) { return null; } MSTensor Predict_inTensor = Predict_inputs.get(0); Predict_inTensor.setData(input); preProcessTime = SystemClock.uptimeMillis() - preProcessTime; stylePredictTime = SystemClock.uptimeMillis();
if (!Predict_session.runGraph()) { Log.e("MS_LITE", "Run Predict_graph failed"); return null; } stylePredictTime = SystemClock.uptimeMillis() - stylePredictTime; Log.d(TAG, "Style Predict Time to run: " + stylePredictTime); // Get output tensor values. List<String> tensorNames = Predict_session.getOutputTensorNames(); Map<String, MSTensor> outputs = Predict_session.getOutputMapByTensor(); Set<Map.Entry<String, MSTensor>> entry = outputs.entrySet(); float[] Predict_results = null; for (String tensorName : tensorNames) { MSTensor output = outputs.get(tensorName); if (output == null) { Log.e("MS_LITE", "Can not find Predict_session output " + tensorName); return null; } int type = output.getDataType(); Predict_results = output.getFloatData(); }
-
Perform model inference on the user image again based on the previous result to obtain the style transfer result
transform_results
.List<MSTensor> Transform_inputs = Transform_session.getInputs(); // transform model have 2 input tensor, tensor0: 1*1*1*100, tensor1; 1*384*384*3 MSTensor Transform_inputs_inTensor0 = Transform_inputs.get(0); Transform_inputs_inTensor0.setData(floatArrayToByteArray(Predict_results)); MSTensor Transform_inputs_inTensor1 = Transform_inputs.get(1); Transform_inputs_inTensor1.setData(contentArray);
styleTransferTime = SystemClock.uptimeMillis(); if (!Transform_session.runGraph()) { Log.e("MS_LITE", "Run Transform_graph failed"); return null; } styleTransferTime = SystemClock.uptimeMillis() - styleTransferTime; Log.d(TAG, "Style apply Time to run: " + styleTransferTime); postProcessTime = SystemClock.uptimeMillis(); // Get output tensor values. List<String> Transform_tensorNames = Transform_session.getOutputTensorNames(); Map<String, MSTensor> Transform_outputs = Transform_session.getOutputMapByTensor(); float[] transform_results = null; for (String tensorName : Transform_tensorNames) { MSTensor output1 = Transform_outputs.get(tensorName); if (output1 == null) { Log.e("MS_LITE", "Can not find Transform_session output " + tensorName); return null; } transform_results = output1.getFloatData(); }
-
Process the output node data to obtain the final inference result.
float[][][][] outputImage = new float[1][][][]; // 1 384 384 3 for (int x = 0; x < 1; x++) { float[][][] arrayThree = new float[CONTENT_IMAGE_SIZE][][]; for (int y = 0; y < CONTENT_IMAGE_SIZE; y++) { float[][] arrayTwo = new float[CONTENT_IMAGE_SIZE][]; for (int z = 0; z < CONTENT_IMAGE_SIZE; z++) { float[] arrayOne = new float[3]; for (int i = 0; i < 3; i++) { int n = i + z * 3 + y * CONTENT_IMAGE_SIZE * 3 + x * CONTENT_IMAGE_SIZE * CONTENT_IMAGE_SIZE * 3; arrayOne[i] = transform_results[n]; } arrayTwo[z] = arrayOne; } arrayThree[y] = arrayTwo; } outputImage[x] = arrayThree; }
Bitmap styledImage = ImageUtils.convertArrayToBitmap(outputImage, CONTENT_IMAGE_SIZE, CONTENT_IMAGE_SIZE); postProcessTime = SystemClock.uptimeMillis() - postProcessTime; fullExecutionTime = SystemClock.uptimeMillis() - fullExecutionTime; Log.d(TAG, "Time to run everything: $" + fullExecutionTime); return new ModelExecutionResult(styledImage, preProcessTime, stylePredictTime, styleTransferTime, postProcessTime, fullExecutionTime, formatExecutionLog());
-