[Doc]Add English version of documents in docs/cn and api/vision_results (#931)

* 第一次提交

* 补充一处漏翻译

* deleted:    docs/en/quantize.md

* Update one translation

* Update en version

* Update one translation in code

* Standardize one writing

* Standardize one writing

* Update some en version

* Fix a grammer problem

* Update en version for api/vision result

* Merge branch 'develop' of https://github.com/charl-u/FastDeploy into develop

* Checkout the link in README in vision_results/ to the en documents

* Modify a title

* Add link to serving/docs/

* Finish translation of demo.md
This commit is contained in:
charl-u
2022-12-22 18:15:01 +08:00
committed by GitHub
parent ac255b8ab8
commit 02eab973ce
80 changed files with 1430 additions and 53 deletions

View File

@@ -1,12 +1,17 @@
[English](../../en/faq/use_cpp_sdk_on_android.md) | 中文
# 在 Android 中通过 JNI 使用 FastDeploy C++ SDK
本文档将以PicoDet为例讲解如何通过JNI将FastDeploy中的模型封装到Android中进行调用。阅读本文档您至少需要了解C++、Java、JNI以及Android的基础知识。如果您主要关注如何在Java层如何调用FastDeploy的API则可以不阅读本文档。
## 目录
- [新建Java类并定义native API](#Java)
- [Android Studio 生成JNI函数定义](#JNI)
- [在C++层实现JNI函数](#CPP)
- [编写CMakeLists.txt及配置build.gradle](#CMakeAndGradle)
- [更多FastDeploy Android 使用案例](#Examples)
- [在 Android 中通过 JNI 使用 FastDeploy C++ SDK](#在-android-中通过-jni-使用-fastdeploy-c-sdk)
- [目录](#目录)
- [新建Java类并定义native API](#新建java类并定义native-api)
- [Android Studio 生成JNI函数定义](#android-studio-生成jni函数定义)
- [在C++层实现JNI函数](#在c层实现jni函数)
- [编写CMakeLists.txt及配置build.gradle](#编写cmakeliststxt及配置buildgradle)
- [更多FastDeploy Android 使用案例](#更多fastdeploy-android-使用案例)
## 新建Java类并定义native API
<div id="Java"></div>