Skip to content

Commit

Permalink
v1.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Windwoes committed Feb 7, 2023
1 parent dbb802e commit c5e3663
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion easyopencv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'org.openftc'
PUBLISH_ARTIFACT_ID = 'easyopencv'
PUBLISH_VERSION = '1.5.3'
PUBLISH_VERSION = '1.6.0'
}

android {
Expand Down
12 changes: 11 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Unfortunately, due to a [known bug with OpenCV 4.x](https://github.com/opencv/op
3. At the bottom, add this:
```gradle
dependencies {
implementation 'org.openftc:easyopencv:1.5.3'
implementation 'org.openftc:easyopencv:1.6.0'
}
```
4. Now perform a Gradle Sync:
Expand All @@ -66,6 +66,16 @@ Unfortunately, due to a [known bug with OpenCV 4.x](https://github.com/opencv/op
## Changelog:
### v1.6.0
- Add support for getting WhiteBalanceControl for webcams
- Handle pipeline returning empty Mat for viewport display with an error message instead of an unclear exception
- Add SENSOR_NATIVE to camera rotation enum
- Desynchronize setPipeline() from active pipeline frame processing (fixes #58)
- Synchronize getting webcam controls with opening/closing camera
- Add support for getting the CameraCalibrationIdentity for an OpenCvWebcam
- Improve memory leak detection warning
### v1.5.3
- Dependency on OpenCV-Repackaged has been changed to a version which bundles the OpenCV native library with the artifact instead of requiring it to be copied to external storage manually. This change was made because:
Expand Down

0 comments on commit c5e3663

Please sign in to comment.