Skip to content

Releases: rainyl/opencv_dart

v1.0.0

06 Apr 16:08
Compare
Choose a tag to compare

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]) and Mat.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'

Full Changelog: v0.6.7...v1.0.0

v0.6.7

06 Apr 14:50
Compare
Choose a tag to compare

This is the last version of v0.6.x, please migrate to v1.0.0 if possible.

What's Changed

New Contributors

Full Changelog: v0.6.6...v0.6.7

v0.6.6

21 Mar 07:05
Compare
Choose a tag to compare

What's Changed

  • fix #8 #10
  • remove net.forwardAsync
  • add ios version info

Full Changelog: v0.6.5...v0.6.6

v0.6.5

18 Mar 14:34
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.4...v0.6.5

v0.6.4

17 Mar 03:27
Compare
Choose a tag to compare

What's Changed

  • Migrate to Conan by @rainyl in #3
  • speed up extract
  • clean up structure

Full Changelog: v0.6.3...v0.6.4

v0.6.3

09 Mar 10:30
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.6.2...v0.6.3

v0.6.2

06 Mar 11:10
Compare
Choose a tag to compare
add macos support

v0.6.1

04 Mar 14:56
Compare
Choose a tag to compare

Full Changelog: v0.6.0...v0.6.1

v0.6.0

03 Mar 10:55
Compare
Choose a tag to compare

Full Changelog: v0.5.0...v0.6.0

v0.5.0

01 Mar 11:57
Compare
Choose a tag to compare

Full Changelog: v0.4.0...v0.5.0