Releases: rainyl/opencv_dart
Releases · rainyl/opencv_dart
v1.0.0
What's changed
- Refactor all API to opencv-python styles
- Better Exceptions, #13
- fix #19
- Refactor
T Mat.at<T>(int row, int col, [int i2])
andMat.set<T>(int row, int col, T val)
, now T can be int, double and CvVec(wrapper of cv::Vec, e.g., Vec3b) - Convert to native wrappers fast by adding suffix to variable like GetX's
.obs
, find and explore more in the documentations from pub.dev and tests, example:
final a = <int>[1, 2, 3];
cv.VecUChar vec = a.u8;
cv.VecInt vec1 = a.i32;
final a = <cv.Point>[cv.Point(0, 0), cv.Point(1, 1)];
VecPoint vec = a.cvd; // here cvd means 'cv dart'
- Find more usage in https://pub.dev/documentation/opencv_dart/1.0.0/
Full Changelog: v0.6.7...v1.0.0
v0.6.7
v0.6.6
What's Changed
Full Changelog: v0.6.5...v0.6.6
v0.6.5
v0.6.4
What's Changed
Full Changelog: v0.6.3...v0.6.4
v0.6.3
v0.6.2
add macos support
v0.6.1
Full Changelog: v0.6.0...v0.6.1
v0.6.0
Full Changelog: v0.5.0...v0.6.0
v0.5.0
Full Changelog: v0.4.0...v0.5.0