47 lines
2.4 KiB
Batchfile
47 lines
2.4 KiB
Batchfile
echo off
|
|
|
|
if not exist "C:\opencv" mkdir "C:\opencv"
|
|
if not exist "C:\opencv\build" mkdir "C:\opencv\build"
|
|
|
|
echo Downloading OpenCV sources
|
|
echo.
|
|
echo For monitoring the download progress please check the C:\opencv directory.
|
|
echo.
|
|
|
|
REM This is why there is no progress bar:
|
|
REM https://github.com/PowerShell/PowerShell/issues/2138
|
|
|
|
echo Downloading: opencv-4.5.4.zip [91MB]
|
|
powershell -command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://github.com/opencv/opencv/archive/4.5.4.zip -OutFile c:\opencv\opencv-4.5.4.zip"
|
|
echo Extracting...
|
|
powershell -command "$ProgressPreference = 'SilentlyContinue'; Expand-Archive -Path c:\opencv\opencv-4.5.4.zip -DestinationPath c:\opencv"
|
|
del c:\opencv\opencv-4.5.4.zip /q
|
|
echo.
|
|
|
|
echo Downloading: opencv_contrib-4.5.4.zip [58MB]
|
|
powershell -command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri https://github.com/opencv/opencv_contrib/archive/4.5.4.zip -OutFile c:\opencv\opencv_contrib-4.5.4.zip"
|
|
echo Extracting...
|
|
powershell -command "$ProgressPreference = 'SilentlyContinue'; Expand-Archive -Path c:\opencv\opencv_contrib-4.5.4.zip -DestinationPath c:\opencv"
|
|
del c:\opencv\opencv_contrib-4.5.4.zip /q
|
|
echo.
|
|
|
|
echo Done with downloading and extracting sources.
|
|
echo.
|
|
|
|
echo on
|
|
|
|
cd /D C:\opencv\build
|
|
set PATH=%PATH%;C:\Program Files (x86)\CMake\bin;C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin
|
|
if [%1]==[static] (
|
|
echo Build static opencv
|
|
set enable_shared=OFF
|
|
) else (
|
|
set enable_shared=ON
|
|
)
|
|
cmake C:\opencv\opencv-4.5.4 -G "MinGW Makefiles" -BC:\opencv\build -DENABLE_CXX11=ON -DOPENCV_EXTRA_MODULES_PATH=C:\opencv\opencv_contrib-4.5.4\modules -DBUILD_SHARED_LIBS=%enable_shared% -DWITH_IPP=OFF -DWITH_MSMF=OFF -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DBUILD_opencv_java=OFF -DBUILD_opencv_python=OFF -DBUILD_opencv_python2=OFF -DBUILD_opencv_python3=OFF -DBUILD_DOCS=OFF -DENABLE_PRECOMPILED_HEADERS=OFF -DBUILD_opencv_saliency=OFF -DBUILD_opencv_wechat_qrcode=OFF -DCPU_DISPATCH= -DOPENCV_GENERATE_PKGCONFIG=ON -DWITH_OPENCL_D3D11_NV=OFF -DOPENCV_ALLOCATOR_STATS_COUNTER_TYPE=int64_t -Wno-dev
|
|
mingw32-make -j%NUMBER_OF_PROCESSORS%
|
|
mingw32-make install
|
|
rmdir c:\opencv\opencv-4.5.4 /s /q
|
|
rmdir c:\opencv\opencv_contrib-4.5.4 /s /q
|
|
chdir /D %GOPATH%\src\gocv.io\x\gocv
|