Files
FastDeploy/c_api/README_CN.md
chenjian 4ee783b1ea [Tutorial Doc] add tutorial for how to use c and c sharp api (#1392)
* add tutorialfor how to use c and c sharp api

* update english doc

* update doc

* update doc

* update doc

* update doc

* update doc
2023-02-28 21:29:44 +08:00

1.8 KiB
Raw Blame History

C API指南

该目录下为FastDeploy C SDK的接口实现为用户需要C API的场景提供解决方案。

如何编译安装

在编译fastdeploy库的时候打开编译选项 --WITH_CAPI=ON即可开启对于该目录的编译。编译后的C库和fastdeploy库在同一个动态库文件中如linux下为libfastdeploy.a。比如编译CPU版本的fastdeploy并且将C API一同编入库可以使用如下命令

git clone https://github.com/PaddlePaddle/FastDeploy.git
cd FastDeploy
mkdir build && cd build
cmake .. -DENABLE_ORT_BACKEND=ON \
         -DENABLE_PADDLE_BACKEND=ON \
         -DENABLE_OPENVINO_BACKEND=ON \
         -DCMAKE_INSTALL_PREFIX=${PWD}/compiled_fastdeploy_sdk \
         -DENABLE_VISION=ON \
         -DWITH_CAPI=ON \
         -DOPENCV_DIRECTORY=/usr/lib/x86_64-linux-gnu/cmake/opencv4 \
         -DENABLE_TEXT=ON
make -j12
make install

关于编译fastdeploy库的更多详情信息可以参考文档

如何使用

因为提供的C API的头文件即可进行使用如果是手动编译安装比如上述命令make install之后,头文件将会在目录${PWD}/compiled_fastdeploy_sdk/include/fastdeploy_capi/下。如果是下载的预编译好的库解压缩之后include/fastdeploy_capi/下即是C API的头文件。关于使用示例可以参考examples下的用例

其它文档