14 lines
301 B
Markdown
14 lines
301 B
Markdown
## AI工具箱
|
||
|
||
|
||
### 代码编译
|
||
|
||
注意:在Windows下编译时,需要打开Visual Studio命令行
|
||
|
||
```
|
||
# 编译第三方库
|
||
node thirdpart/install.js --with-onnx --with-mnn --with-opencv
|
||
# 编译主库
|
||
cmake -B build -G Ninja . -DCMAKE_BUILD_TYPE=Release
|
||
cmake --build build --config Release
|
||
``` |