This commit is contained in:
2021-11-17 14:57:56 -06:00
commit f17b64232d
177 changed files with 6639 additions and 0 deletions

7
scripts/init_windows.ps1 Normal file
View File

@@ -0,0 +1,7 @@
Invoke-WebRequest -Uri "https://sourceforge.net/projects/opencvlibrary/files/4.5.4/opencv-4.5.4-vc14_vc15.exe" -OutFile ".\download\opencv-4.5.4-vc14_vc15.exe" -UserAgent [Microsoft.PowerShell.Commands.PSUserAgent]::FireFox
.\download\opencv-4.5.4-vc14_vc15.exe | Out-Null
$pathToOpenCV = Read-Host 'Type path to opencv build folder (like D:\src\opencv\build)'
[System.Environment]::SetEnvironmentVariable('OpenCV_DIR',$pathToOpenCV)
New-Item -ItemType HardLink -Name .\..\native_opencv_windows\windows\native_opencv.cpp -Target .\..\native_opencv\ios\Classes\native_opencv.cpp
Write-Host 'Done'
Read-Host 'Press any key to continue'