Skip to content

Commit b2a2f5f

Browse files
authored
Merge pull request #1290 from shimat/4.5.3
4.5.3
2 parents 5c10f5c + b2cdb56 commit b2a2f5f

File tree

14 files changed

+70
-54
lines changed

14 files changed

+70
-54
lines changed

.github/workflows/docker-amazonlinux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919

2020
- name: docker build
2121
run: |
22-
cd docker/al2-dotnet5-opencv4.5.1
23-
docker build -t shimat/al2-dotnet5-opencv4.5.1 .
22+
cd docker/al2-dotnet5-opencv4.5.3
23+
docker build -t shimat/al2-dotnet5-opencv4.5.3 .

.github/workflows/linux-arm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
DEBIAN_FRONTEND: noninteractive
12-
OPENCV_VERSION: 4.5.2
12+
OPENCV_VERSION: 4.5.3
1313

1414
jobs:
1515
build:
@@ -31,7 +31,7 @@ jobs:
3131
--output=type=docker \
3232
--platform=linux/arm/v7 \
3333
--build-arg OPENCV_VERSION \
34-
./docker/ubuntu18-dotnetcore3.1-opencv4.5.1
34+
./docker/ubuntu18-dotnetcore3.1-opencv4.5.3
3535
3636
- name: Extract build files from Docker instance
3737
run: |

.github/workflows/macos10.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
DEBIAN_FRONTEND: noninteractive
12-
OPENCV_VERSION: 4.5.2
12+
OPENCV_VERSION: 4.5.3
1313

1414
jobs:
1515
build:
@@ -53,7 +53,9 @@ jobs:
5353
-DBUILD_opencv_python_tests=OFF \
5454
-DBUILD_opencv_ts=OFF \
5555
-DBUILD_opencv_js=OFF \
56+
-DBUILD_opencv_js_bindings_generator=OFF \
5657
-DBUILD_opencv_app=OFF \
58+
-DBUILD_opencv_barcode=OFF \
5759
-DBUILD_opencv_bioinspired=OFF \
5860
-DBUILD_opencv_ccalib=OFF \
5961
-DBUILD_opencv_datasets=OFF \
@@ -63,11 +65,13 @@ jobs:
6365
-DBUILD_opencv_gapi=ON \
6466
-DBUILD_opencv_intensity_transform=OFF \
6567
-DBUILD_opencv_mcc=OFF \
68+
-DBUILD_opencv_objc_bindings_generator=OFF \
6669
-DBUILD_opencv_rapid=OFF \
6770
-DBUILD_opencv_reg=OFF \
6871
-DBUILD_opencv_stereo=OFF \
6972
-DBUILD_opencv_structured_light=OFF \
7073
-DBUILD_opencv_surface_matching=OFF \
74+
-DBUILD_opencv_wechat_qrcode=OFF \
7175
-DBUILD_opencv_videostab=OFF \
7276
-DWITH_GSTREAMER=OFF \
7377
-DWITH_EIGEN=OFF \

.github/workflows/ubuntu18.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
DEBIAN_FRONTEND: noninteractive
12-
OPENCV_VERSION: 4.5.2
12+
OPENCV_VERSION: 4.5.3
1313

1414
jobs:
1515
build:
@@ -78,11 +78,13 @@ jobs:
7878
-D BUILD_TESTS=OFF \
7979
-D BUILD_JAVA=OFF \
8080
-D BUILD_opencv_app=OFF \
81+
-D BUILD_opencv_barcode=OFF \
8182
-D BUILD_opencv_java_bindings_generator=OFF \
8283
-D BUILD_opencv_python_bindings_generator=OFF \
8384
-D BUILD_opencv_python_tests=OFF \
8485
-D BUILD_opencv_ts=OFF \
8586
-D BUILD_opencv_js=OFF \
87+
-D BUILD_opencv_js_bindings_generator=OFF \
8688
-D BUILD_opencv_bioinspired=OFF \
8789
-D BUILD_opencv_ccalib=OFF \
8890
-D BUILD_opencv_datasets=OFF \
@@ -92,11 +94,13 @@ jobs:
9294
-D BUILD_opencv_gapi=ON \
9395
-D BUILD_opencv_intensity_transform=OFF \
9496
-D BUILD_opencv_mcc=OFF \
97+
-D BUILD_opencv_objc_bindings_generator=OFF \
9598
-D BUILD_opencv_rapid=OFF \
9699
-D BUILD_opencv_reg=OFF \
97100
-D BUILD_opencv_stereo=OFF \
98101
-D BUILD_opencv_structured_light=OFF \
99102
-D BUILD_opencv_surface_matching=OFF \
103+
-D BUILD_opencv_wechat_qrcode=OFF \
100104
-D BUILD_opencv_videostab=OFF \
101105
-D WITH_GSTREAMER=OFF \
102106
-D OPENCV_ENABLE_NONFREE=ON \

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- master
99

1010
env:
11-
OPENCV_VERSION: 4.5.2
11+
OPENCV_VERSION: 4.5.3
1212

1313
jobs:
1414
build:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This issue may be helpful: https://github.com/shimat/opencvsharp/issues/920
6868
If you do not use NuGet, get DLL files from the [release page](https://github.com/shimat/opencvsharp/releases).
6969

7070
## Target OpenCV
71-
* [OpenCV 4.5.2](http://opencv.org/) with [opencv_contrib](https://github.com/opencv/opencv_contrib)
71+
* [OpenCV 4.5.3](http://opencv.org/) with [opencv_contrib](https://github.com/opencv/opencv_contrib)
7272

7373
## Requirements
7474
* [.NET Framework 4.6.1](http://www.microsoft.com/ja-jp/download/details.aspx?id=1639) / [.NET Core 2.0](https://www.microsoft.com/net/download) / [Mono](http://www.mono-project.com/Main_Page)
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM public.ecr.aws/lambda/dotnet:5.0
22

3-
ENV OPENCV_VERSION=4.5.1
3+
ENV OPENCV_VERSION=4.5.3
44

55
WORKDIR /
66

@@ -32,7 +32,9 @@ RUN cd opencv && mkdir build && cd build && \
3232
-D BUILD_TESTS=OFF \
3333
-D BUILD_JAVA=OFF \
3434
-D BUILD_opencv_app=OFF \
35+
-D BUILD_opencv_barcode=OFF \
3536
-D BUILD_opencv_java_bindings_generator=OFF \
37+
-D BUILD_opencv_js_bindings_generator=OFF \
3638
-D BUILD_opencv_python_bindings_generator=OFF \
3739
-D BUILD_opencv_python_tests=OFF \
3840
-D BUILD_opencv_ts=OFF \
@@ -46,13 +48,15 @@ RUN cd opencv && mkdir build && cd build && \
4648
-D BUILD_opencv_gapi=OFF \
4749
-D BUILD_opencv_intensity_transform=OFF \
4850
-D BUILD_opencv_mcc=OFF \
51+
-D BUILD_opencv_objc_bindings_generator=OFF \
4952
-D BUILD_opencv_rapid=OFF \
5053
-D BUILD_opencv_reg=OFF \
5154
-D BUILD_opencv_stereo=OFF \
5255
-D BUILD_opencv_structured_light=OFF \
5356
-D BUILD_opencv_surface_matching=OFF \
5457
-D BUILD_opencv_videostab=OFF \
55-
-D WITH_GSTREAMER=OFF \
58+
-D BUILD_opencv_wechat_qrcode=OFF \
59+
-D WITH_GSTREAMER=OFF \
5660
-D OPENCV_ENABLE_NONFREE=ON \
5761
.. && make -j8 && make install
5862

docker/ubuntu18-dotnetcore3.1-opencv4.5.1/Dockerfile renamed to docker/ubuntu18-dotnetcore3.1-opencv4.5.3/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM mcr.microsoft.com/dotnet/sdk:3.1-bionic
22

33
ENV DEBIAN_FRONTEND=noninteractive
4-
ARG OPENCV_VERSION=4.5.1
4+
ARG OPENCV_VERSION=4.5.3
55

66
WORKDIR /
77

@@ -59,7 +59,9 @@ RUN cd opencv && mkdir build && cd build && \
5959
-D BUILD_TESTS=OFF \
6060
-D BUILD_JAVA=OFF \
6161
-D BUILD_opencv_app=OFF \
62+
-D BUILD_opencv_barcode=OFF \
6263
-D BUILD_opencv_java_bindings_generator=OFF \
64+
-D BUILD_opencv_js_bindings_generator=OFF \
6365
-D BUILD_opencv_python_bindings_generator=OFF \
6466
-D BUILD_opencv_python_tests=OFF \
6567
-D BUILD_opencv_ts=OFF \
@@ -73,12 +75,14 @@ RUN cd opencv && mkdir build && cd build && \
7375
-D BUILD_opencv_gapi=OFF \
7476
-D BUILD_opencv_intensity_transform=OFF \
7577
-D BUILD_opencv_mcc=OFF \
78+
-D BUILD_opencv_objc_bindings_generator=OFF \
7679
-D BUILD_opencv_rapid=OFF \
7780
-D BUILD_opencv_reg=OFF \
7881
-D BUILD_opencv_stereo=OFF \
7982
-D BUILD_opencv_structured_light=OFF \
8083
-D BUILD_opencv_surface_matching=OFF \
8184
-D BUILD_opencv_videostab=OFF \
85+
-D BUILD_opencv_wechat_qrcode=OFF \
8286
-D WITH_GSTREAMER=OFF \
8387
-D OPENCV_ENABLE_NONFREE=ON \
8488
.. && make -j$(nproc) && make install && ldconfig

download_opencv_windows.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
$tag = "4.5.2.20210404"
2-
$version = "452"
1+
$tag = "4.5.3.20210711"
2+
$version = "453"
33
$uriArray =@(
44
"https://github.com/shimat/opencv_files/releases/download/${tag}/opencv${version}_win_x64.zip"
55
"https://github.com/shimat/opencv_files/releases/download/${tag}/opencv${version}_win_x86.zip"

nuget/OpenCvSharp4.runtime.uwp.nuspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<file src="..\src\Release\uwpOpenCvSharpExtern\x64\OpenCvSharpExtern.dll" target="runtimes\win-x64\native" />
2828
<file src="..\src\Release\uwpOpenCvSharpExtern\Win32\OpenCvSharpExtern.dll" target="runtimes\win-x86\native" />
2929
<file src="..\src\Release\uwpOpenCvSharpExtern\ARM\OpenCvSharpExtern.dll" target="runtimes\win-arm\native" />
30-
<file src="..\opencv_files\opencv452_uwp_x64\x64\vc16\bin\opencv_world452.dll" target="runtimes\win-x64\native" />
31-
<file src="..\opencv_files\opencv452_uwp_x86\x86\vc16\bin\opencv_world452.dll" target="runtimes\win-x86\native" />
32-
<file src="..\opencv_files\opencv452_uwp_arm\x86\vc16\bin\opencv_world452.dll" target="runtimes\win-arm\native" />
33-
<file src="..\opencv_files\opencv452_uwp_x64\x64\vc16\bin\opencv_img_hash452.dll" target="runtimes\win-x64\native" />
34-
<file src="..\opencv_files\opencv452_uwp_x86\x86\vc16\bin\opencv_img_hash452.dll" target="runtimes\win-x86\native" />
35-
<file src="..\opencv_files\opencv452_uwp_arm\x86\vc16\bin\opencv_img_hash452.dll" target="runtimes\win-arm\native" />
30+
<file src="..\opencv_files\opencv453_uwp_x64\x64\vc16\bin\opencv_world453.dll" target="runtimes\win-x64\native" />
31+
<file src="..\opencv_files\opencv453_uwp_x86\x86\vc16\bin\opencv_world453.dll" target="runtimes\win-x86\native" />
32+
<file src="..\opencv_files\opencv453_uwp_arm\x86\vc16\bin\opencv_world453.dll" target="runtimes\win-arm\native" />
33+
<file src="..\opencv_files\opencv453_uwp_x64\x64\vc16\bin\opencv_img_hash453.dll" target="runtimes\win-x64\native" />
34+
<file src="..\opencv_files\opencv453_uwp_x86\x86\vc16\bin\opencv_img_hash453.dll" target="runtimes\win-x86\native" />
35+
<file src="..\opencv_files\opencv453_uwp_arm\x86\vc16\bin\opencv_img_hash453.dll" target="runtimes\win-arm\native" />
3636
</files>
3737
</package>

0 commit comments

Comments
 (0)