This commit is contained in:
恍兮惚兮 2024-11-05 16:03:00 +08:00
parent dc34c5556b
commit 194544706a
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -42,3 +42,4 @@ src/plugins/libs/opencv-static.zip
src/plugins/libs/onnxruntime-static.zip
src/plugins/libs/onnxruntime-static/onnxruntime-static.7z
src/plugins/libs/opencv-static/opencv-static.7z
src/plugins/libs/opencv-static/opencv-4.8.1-windows-vs2022-mt.7z

View File

@ -30,7 +30,7 @@ onnx = os.path.normpath(
opencv = os.path.normpath(
os.path.join(
os.path.dirname(__file__),
r"..\libs\opencv-static\windows-x64\x64\vc16\staticlib\opencv_core470.lib",
r"..\libs\opencv-static\windows-x64\x64\vc17\staticlib\opencv_core481.lib",
)
)
onnx_1 = os.path.normpath(
@ -50,6 +50,6 @@ if os.path.exists(onnx) == False:
if os.path.exists(opencv) == False:
os.makedirs(os.path.dirname(opencv_1), exist_ok=True)
os.system(
rf'curl -SLo "{opencv_1}" https://github.com/RapidAI/OpenCVBuilder/releases/download/4.7.0/opencv-4.7.0-windows-vs2019-mt.7z'
rf'curl -SLo "{opencv_1}" https://github.com/RapidAI/OpenCVBuilder/releases/download/4.8.1/opencv-4.8.1-windows-vs2022-mt.7z'
)
os.system(rf'7z x -y "{opencv_1}" -o{os.path.dirname(opencv_1)}')