Releases: rainyl/opencv_dart
Releases · rainyl/opencv_dart
v1.0.7
What's Changed
- setup in platform specific build scripts by @rainyl in #87
- remove CVD_TYPEDEF_PTR to clean codes by @rainyl in #89
- Face objdetect by @abdelaziz-mahdy in #91
- Add Mat.dataPtr to allow get raw data pointer by @rainyl in #92
- update lint rules and format by @rainyl in #93
Full Changelog: v1.0.6...v1.0.7
v1.0.6
What's Changed
- free cExt before exception by @rainyl in #73
- add data getter for Vec<int,uchar,chat,float,double>, cache type of Mat by @rainyl in #74
- add auto build by @rainyl in #78
- docs(contributor): contributors readme action update by @github-actions in #79
- hotfix: update binary version of v1.0.5+1 by @rainyl in #84
- fix auto setup by @rainyl in #83
- make VecUChar.toU8List() return a copy of data by @rainyl in #83
- upgrade to OpenCV 4.10.0 by @rainyl in #83
New Contributors
- @github-actions made their first contribution in #79
Full Changelog: v1.0.5...v1.0.6
v1.0.5+2
What's Changed
- free cExt before exception by @rainyl in #73
- add data getter for Vec<int,uchar,chat,float,double>, cache type of Mat by @rainyl in #74
- add auto build by @rainyl in #78
- docs(contributor): contributors readme action update by @github-actions in #79
- hotfix: update binary version of v1.0.5+1 by @rainyl in #84
New Contributors
- @github-actions made their first contribution in #79
Full Changelog: v1.0.5...v1.0.5+2
v1.0.5
What's Changed
- Auto setup by @abdelaziz-mahdy in #66
- Improve performance and optimize memory by @rainyl in #67
- better exception for cv.imencode by @rainyl in #69
- more api for objdetect by @rainyl in #70
- Optimize vector returns by @rainyl in #71
New Contributors
- @abdelaziz-mahdy made their first contribution in #66
Full Changelog: v1.0.4...v1.0.5
v1.0.4
What's Changed
- Fix: Stitcher.composePanorama by @rainyl in #49
- Fix: Pyr down up border type by @rainyl in #51
- Revert to 3.19.6 due to coverage wont exit by @rainyl in #54
- Add LUT for cv_8u cv_8s cv_16u and cv_16s by @rainyl in #57
- Improve the performance of at and set, add Mat.atU8, Mat.setU8, etc. by @rainyl in #58
- New API: cv.Subdiv2D by @rainyl and @Jiinwoo in #60 #56
Full Changelog: v1.0.3...v1.0.4
v1.0.3
v1.0.2
v1.0.1
What's Changed
- Update test.yaml by @rainyl in #22
- Add Dnn test models to enable test in workflow by @rainyl in #25
- separate opencv to speedup compile by @rainyl in #26
- Add more test for array.dart and CvVec by @rainyl in #27
- [New Module] contrib:wechat_qrcode by @rainyl in #28
- API change: cv.Mat.fromScalar(Scalar s, MatType type, {int rows = 1, int cols = 1}) -> (int rows, int cols, MatType type, Scalar s)
- API change: cv.VideoCapture.getProp(int propId) -> cv.VideoCapture.get(int propId), cv.VideoCapture.setProp(int propId, double value) -> cv.VideoCapture.get(int propId, double value)
- Include ffmpeg.dll for windows
Full Changelog: v1.0.0+1...v1.0.1
DNN: Test Files
This release contains test models for DNN, which are large and shouldn't include in the repo, so published here.
Model source:
- https://github.com/axinc-ai/ailia-models-tflite
- https://github.com/BVLC/caffe/blob/master/models/bvlc_googlenet/readme.md
- https://github.com/pyannote/pyannote-data/blob/master/openface.nn4.small2.v1.t7
- https://github.com/martinwicke/tensorflow-tutorial/blob/master/tensorflow_inception_graph.pb
- https://github.com/onnx/models/
- https://github.com/opencv/opencv_3rdparty
- https://github.com/opencv/opencv_zoo/tree/master/models/face_detection_yunet
- https://github.com/opencv/opencv_zoo/tree/master/models/face_recognition_sface
v1.0.0+1
What's Changed
- Replace Finalizer with ffi.NativeFinalizer by @rainyl in #21
- update Mat.toList(), Mat.toList3d<T, P>(), remove Mat.toList4D()
- update Mat.data, now return a view of data pointer, same as v0.6.*
- fix memory leak caused by Finalizer, now GC will also be triggered correctly in pure dart
Full Changelog: v1.0.0...v1.0.0+1