first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

14
third_party/cpp_base64/README.md vendored Normal file
View File

@@ -0,0 +1,14 @@
base64 library from github: https://github.com/ReneNyffenegger/cpp-base64, merged .cpp and .h files together.
**NOTE**
used for encoding image to base64 string when interact with mLLM in VidepPipe.
test file `base64_test.cpp`, which convert cv::Mat to base64 string and convert back to cv::Mat
```
mkdir build
cd build
cmake ..
make -j8
./base64_test
```