Files
ai-box/README.md
2025-03-10 15:18:30 +08:00

14 lines
301 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 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
```