-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from swarm-lab/develop
Merge develop branch with master branch in preparation for v0.6.0 release.
- Loading branch information
Showing
293 changed files
with
12,843 additions
and
2,538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: Rvision | ||
Type: Package | ||
Title: Computer vision library for R | ||
Version: 0.5.0 | ||
Date: 2021-02-19 | ||
Title: Computer Vision Library for R | ||
Version: 0.6.0 | ||
Date: 2021-03-21 | ||
Authors@R: c( | ||
person("Simon", "Garnier", email = "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0002-3886-3974")), | ||
|
@@ -18,14 +18,14 @@ Depends: | |
R (>= 3.5.0) | ||
Imports: | ||
Rcpp (>= 1.0.1), | ||
ROpenCVLite (>= 4.50.0), | ||
ROpenCVLite (>= 4.51.0), | ||
methods, | ||
pbapply, | ||
stats, | ||
graphics | ||
LinkingTo: Rcpp, RcppArmadillo | ||
SystemRequirements: C++11 | ||
RcppModules: class_Image, class_Video, class_Stream, class_VideoWriter, | ||
RcppModules: class_Image, class_Capture, class_VideoWriter, | ||
methods_Arithmetic, methods_Statistics, methods_Comparisons, methods_Logical, | ||
methods_OpticalFlow, methods_Blob, methods_Morphology, methods_Filters, | ||
methods_Display, methods_Draw, methods_Geometry, methods_Shape, methods_Transform, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Rvision 0.6.0 | ||
|
||
## New features | ||
|
||
* We now have a changelog (yes, I know, finally). | ||
* A large portion of the code base has been rewritten for improving performance | ||
and facilitating code maintenance (hopefully). | ||
* In-place operations have been reworked to allow for saving results in target | ||
images for more flexibility while maintaining performance. | ||
* GPU support has been added wherever possible. Stupid-fast mode enabled on | ||
compatible hardware :-) | ||
* An experimental dynamic queuing system operating on a separate thread has been | ||
introduced to allow for reading frames in parallel with image processing on the | ||
main R thread. | ||
* New, hopefully more useful vignettes have been added. | ||
* More OpenCV functions are now accessible through Rvision (e.g., histogram | ||
equalization). | ||
|
||
## Minor improvements and fixes | ||
|
||
* The documentation has been fixed/improved in several places. | ||
* Minor bug fixes here and there. | ||
|
||
--- |
Oops, something went wrong.