Skip to content

Commit 3003806

Browse files
authored
Merge pull request #46 from swarm-lab/develop
Develop
2 parents e1567bd + 3a00c2e commit 3003806

26 files changed

+61
-2936
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: ROpenCVLite
22
Type: Package
33
Title: Helper Package for Installing OpenCV with R
4-
Version: 4.90.0
5-
Date: 2024-01-08
4+
Version: 4.90.1
5+
Date: 2024-01-20
66
Authors@R: c(
77
person("Simon", "Garnier", email = "[email protected]", role = c("aut", "cre"),
88
comment = c(ORCID = "0000-0002-3886-3974")),
@@ -22,7 +22,7 @@ Imports:
2222
parallel
2323
SystemRequirements:
2424
cmake
25-
RoxygenNote: 7.2.3
25+
RoxygenNote: 7.3.0
2626
Biarch: false
2727
Encoding: UTF-8
2828
Depends:

NEWS.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# ROpenCVLite 4.90.1
2+
3+
## New features
4+
5+
* Adds WeChat QR code module (thanks to @wresch).
6+
* Adds pkgconfig files (thanks to @wresch).
7+
8+
## Minor improvements and fixes
9+
10+
* Remove some processor optimization to avoid errors on Windows with recent CPUs.
11+
12+
---
13+
114
# ROpenCVLite 4.90.0
215

316
## New features

R/install.R

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,14 @@ defaultOpenCVPath <- function() {
112112
' -DOpenCV_ARCH=x64',
113113
' -DOpenCV_RUNTIME=mingw',
114114
' -DBUILD_SHARED_LIBS=ON',
115-
if (grepl("11", config$os)) ' -DCPU_DISPATCH=SSE4_1,SSE4_2,FP16,AV')
115+
' -DCPU_DISPATCH=SSE4_1,SSE4_2,FP16,AV')
116116
),
117117
' -DCMAKE_MAKE_PROGRAM="', config$make_path, '"',
118118
' -DCMAKE_CXX_STANDARD=11',
119119
' -DENABLE_PRECOMPILED_HEADERS=OFF',
120120
' -DOPENCV_EXTRA_MODULES_PATH=', config$contrib_dir,
121-
' -DBUILD_LIST=calib3d,core,dnn,features2d,flann,gapi,highgui,imgcodecs,imgproc,ml,objdetect,photo,stitching,video,videoio,ximgproc',
121+
' -DBUILD_LIST=calib3d,core,dnn,features2d,flann,gapi,highgui,imgcodecs,imgproc,ml,objdetect,photo,stitching,video,videoio,ximgproc,wechat_qrcode',
122+
' -DOPENCV_GENERATE_PKGCONFIG=ON',
122123
' -DWITH_OPENMP=ON',
123124
' -DWITH_TBB=ON',
124125
' -DWITH_EIGEN=ON',
@@ -287,4 +288,4 @@ removeOpenCV <- function() {
287288
message("OpenCV is not installed on this system. Nothing to be done.")
288289
!isOpenCVInstalled()
289290
}
290-
}
291+
}

cran-comments.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616

1717
## R CMD check results
1818

19-
* Version jumps in minor (submitted: 4.90.0, existing: 4.80.1)
20-
21-
This is normal. The package numbering scheme is based on the OpenCV version number.
19+
* N/A.
2220

2321
## Downstream dependencies
2422

docs/404.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/install.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/usage.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/authors.html

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)