Skip to content

Latest commit

 

History

History
395 lines (311 loc) · 19.8 KB

CHANGES.md

File metadata and controls

395 lines (311 loc) · 19.8 KB
  • 0.70.0

    • Internal improvements and reorganization
  • 0.69.0

    • Fix building with clang-15.
    • Rename distort_points to fisheye_distort_points for consistency.
  • 0.68.0

    • Make sure that howToGetFeatures argument of the createStructuredEdgeDetection() is nullable.
    • Add OutputArray and InputOutputArray implementations for Mat_.
  • 0.67.0

    • Change fourcc method to accept chars instead of i8s.
    • Remove gapi feature as this module is not supported at the moment.
  • 0.66.0

    • Generate valid_pix_roi argument of get_optimal_new_camera_matrix as optional argument (fixes #349).
    • clang-runtime feature has been dropped and the associated behavior is now the default. It's caused by the changed API of the clang crate.
  • 0.65.0

    • Improve generation for OpenCV 4.6.0.
  • 0.64.1

    • Improve function documentation generation (fixes #266).
  • 0.64.0

    • Fix documentation for conditional compilation macros.
    • Make sure to generate VectorOfPoint3f and VectorOfVectorOfPoint3f for calib3d module.
    • Disable generation of merge_slice function because it's not usable from Rust.
  • 0.63.2

    • Introduce macros that allow external crates to conditionally include code based on the OpenCV branch (3.2, 3.4 or 4).
  • 0.63.1

    • Provide From implementations from tuples and similar C++ conversions for Point, Size, Rect and Point3.
  • 0.63.0

    • Provide bindings for ++ and -- operators (fixes #319)
    • Drop type restrictions for Rect_, Point_, Size_, Point3_, VecN (and related structs) (fixes #316)
    • Make sure that VectorOfVectorOff64 is generated for calib3d module (fixes #321)
  • 0.62.0

    • Fixed a segfault when using functions that return small structures (like Point2f) with some C++ compiler combinations, e.g. when using repository OpenCV with the default compiler in Ubuntu 20.04.
    • Fix segfault and error handling while casting to descendant classes.
    • Test with OpenCV 4.5.5 and 3.4.17.
  • 0.61.3

    • Implement ToInput/OutputArray for Scalar and all other often used combinations of VecN.
    • Fix building on macOS with OpenCV as framework.
  • 0.61.2

    • Add support for parsing CV_NODISCARD attributes, they are converted to #[must_use].
  • 0.61.1

    • Make sure that VectorOfVectorOfPoint type is generated for the imgproc module.
  • 0.61.0

    • The QR code decoding function in objdetect module are now returning Vec<u8> instead of String because the codes can contain binary raw binary data and are not always UTF-8.
    • You can now iterate over Mat using for loop. The iterator will yield elements of type (Point, T), a position and an element.
  • 0.60.0

    • The features for OpenCV module selections now have inter-dependencies so that you can't exclude a module that's needed for some other one.
    • Infallible functions returning references should be faster now due to the streamlined error handling.
    • More simple functions are marked as infallible (e.g. Mat::total(), Mat::depth()).
    • Functions that returned references to some internal data (e.g. Mat::ptr(), Mat::data_mut()) now return raw pointers, it makes more sense and allows checking for null pointer outside of call. The corresponding property setters also accept pointers.
    • Functions that accept raw pointers are now marked as unsafe.
  • 0.59.0

    • You can now select which OpenCV modules you want to include in generation using the crate features, there is a feature for every OpenCV module except core. This supersedes the old system with environment variables OPENCV_MODULE_WHITELIST and OPENCV_MODULE_BLACKLIST, they are no longer supported (kudos to nsabovic).
    • You can now use the rgb crate types as elements of Mat, just enable the rgb feature (kudos to fzyzcjy).
    • You can now use Vector::from_slice() for a faster construction of Vector from a slice. This only works for simple types like u8 or Point.
  • 0.58.0

    • Infallible functions are no longer using exception handling internally so they should be faster.
    • core::Vec is renamed to core::VecN to avoid name conflict with std's Vec.
    • The dnn::TextDetectionModel struct is now generated correctly for newer OpenCV's.
  • 0.57.0

    • Add support for mathematical operations on Mat (kudos to fzyzcjy).
    • VecNT (e.g. Vec3b) are now rewritten using const generics which makes them more flexible. That raises the minimum Rust version requirement to 1.51. Also be mindful of the name clash between opencv::core::Vec and std::vec::Vec.
    • Added mathematical operations on Vec that are available in the OpenCV library.
    • Added support for generating bindings for the == operator.
  • 0.56.1

    • Structs that have infallible default constructors (e.g. Mat) now implement Default trait.
    • Make sure to generate std::vector<cv::Vec[23][fd]> bindings for imgproc::HoughLines function.
  • 0.56.0

    • Mark most exported functions as #[inline] to facilitate inter-crate inlining. Those function calls are just wrappers around the corresponding FFI function.
    • Adjust the code to support OpenCV 4.5.4 better.
    • Allow passing None to minMaxLoc and minMaxIdx functions.
  • 0.55.0

    • add Mat::data_bytes[_mut]() methods to access byte data inside Mat as slice, Mat::data() now returns raw pointer instead of reference.
  • 0.54.0

    • highgui::create_trackbar now takes Option<&mut i32> for value to fix the deprecation warning (fixes #261).
    • Class traits are now split into const and mut variants. So what previously was MatTrait is now MatTraitConst with only const methods and MatTrait with only mut methods.
  • 0.53.2

    • Fix building with cmake versions below 3.15.
  • 0.53.1

    • Add support for casting classes to their bases. You can now call .into() on the descendant class to cast it to the parent.
    • Add support for newly released OpenCV 4.5.3 and 3.4.15.
    • Minor improvements in the vcpkg support.
  • 0.53.0

    • This release removes some features and environment variables to make the crate easier to use:
      • buildtime-bindgen is removed. With all the possible OpenCV configurations out there it was practically impossible to build the crate without regenerating bindings to fit your exact installation.
      • opencv-32, opencv-34 and opencv-4 branch selection features are removed too. Version selection is now performed in build-time. If you were using those features in your Cargo.toml then just remove them (and default-features = false can probably go too).
      • Support for OPENCV_CLANG_STDLIB_PATH environment variable is removed. If you were using it, then you can add that directory as part of OPENCV_INCLUDE_PATHS. E.g.:
        OPENCV_INCLUDE_PATHS="<path_to_clang_stdlib_path>,+" 
        
      • Support for OPENCV_HEADER_DIR is also removed. It was meant to be development-only environment variable, and it's no longer needed in the development process.
    • The crate is now smaller due to dropping of the bundled headers and bindings.
    • Fixes for building with older OpenCV versions (fixes #227)
  • 0.52.0

    • Add support for OpenCV 4.5.2 and 3.4.14
    • In those new OpenCV versions some methods are now marked NOEXCEPT which makes them return result directly, without the wrapping Result. Most notable of those new methods is Mat::default, which now returns a Mat directly. To keep the examples and tests running those methods are also manually marked as NOEXCEPT for previous versions of OpenCV.
    • The "contrib" feature flag is there no more, the crate now uses build-time module set detection, so just drop it from your Cargo.toml if you've been using it.
  • 0.51.0

    • Make sure that casts to Ptr are also generated (fixes #218)
    • Port text detection example (requires OpenCV 4.5.1)
    • Adjust some function names
  • 0.50.0

    • Improve smart pointer handling (Ptr), deeper analysis now generates more necessary Ptr<T> bindings and all Ptr<Child> types are now castable to Ptr<Parent> when it's required by the OpenCV API (fixes #217)
    • Module-level documentation generation for tracking module is now fixed
  • 0.49.1

    • Improved processing of environment variables
  • 0.49.0

    • Fix conversion of slice arguments, allow nullable slices (fixes #201)
  • 0.48.0

    • Fix binding-generator build in cross-compilation environment (kudos to tylerhawkes)
    • Using dnn_superres now requires contrib feature enabled, it was incorrectly marked as core module
  • 0.47.0

    • Fix building with OpenCV 4.5.1 and 3.4.13
    • Due to the code adjustments, some VectorOf... types are no longer generated (e.g. VectorOfPoint3i)
    • The documentation for tracking module is now a copy of imgproc, which is a bug
  • 0.46.3

    • Specify minimum required vcpkg version
  • 0.46.2

    • Bring back deprecated cmake find-package discovery as a fallback, it's still useful in some cases
  • 0.46.1

    • Improve cmake package detection (and remove deprecated find-package)
    • Re-enable parallel building with clang-runtime feature enabled
    • Add support for appending user values to detected OpenCV build configurations like include paths or link paths
    • Fix generation with OpenCV 4.5.0
    • Minimal required rust version is now 1.45.0 due to usage of str::strip_prefix
  • 0.46.0

    • Fix linking in some configurations (#164)
    • Fix argument name clashing in external functions
  • 0.45.1

    • Internal improvements in const handling
    • Fix warnings in beta
    • Misc CI improvements
  • 0.45.0

    • Add implementation of From<Vec<T>> for Vector<T> + misc vector improvements
    • Enable OpenGL functions and classes from the core module
  • 0.44.2

    • Fix building with Apple clang
    • Show libclang diagnostics during binding generation
  • 0.44.1

    • Fix docs.rs build
  • 0.44.0

    • Add support for ovis module
    • Add implementation of Ptr::new for non-abstract types
    • Rework string handling, that fixed core::convert_type_str() function which was handling memory very unsafely before
    • Internal refactor of cpp const handling, that changed the internal function identifiers
  • 0.43.3

    • Test with the newly released OpenCV 3.4.11 and 4.4.0
    • Internal cleanups and CI fixes
  • 0.43.2

    • Fix build on RPi (fixes #157)
  • 0.43.1

    • Fix docs.rs build
  • 0.43.0

    • Add Clone implementation (that panics on error) for Mat, SparseMat, UMat, GpuMat and HostMem.
    • Add Vector::as_mut_slice() for copy types.
    • Add Vector::clone() for types with Clone implementation (based on work of carbotaniuman).
  • 0.42.0

    • Enable CUDA support, check examples/cuda.rs for a bootstrap.
    • buildtime-bindgen is now enabled by default, compilation without it enabled rarely worked in reality. You can still disable it by disabling default features.
    • Vector now implements Into<Vec>, Debug, AsRef, Borrow, Default, Extend and FromIterator, Vector::to_slice was renamed to Vector::as_slice (kudos to jerry73204 and carbotaniuman).
    • Improve tests and examples.
    • Internal reorganization for better logic separation.
  • 0.41.1

    • Revert the parallelization of the build when clang-runtime is enabled, it led to #145
  • 0.41.0

    • Enable parallel build even if clang-runtime is enabled (it uses helper generator binary in multiple threads)
    • Enable most of the remaining contrib modules, namely: quality, saliency, stereo, ximgproc, tracking, rgbd, hfs and optflow.
    • Move all the remaining methods from VectorTrait to Vector struct and remove VectorTrait.
    • Improve Mat_ usability.
    • Enable class constant generations (these were previously methods).
    • Fix the issue where functions accepting strings will not reject strings with null characters in them, but silently truncate them.
  • 0.40.1

    • Fix parsing of cmake output during package discovery (fixes #136)
    • Prefer vcpkg over cmake when building on Windows (fixes #137)
  • 0.40.0

    • Optimized dependencies, the crate has now 19 (including transitional) dependencies less.
    • Fixed pre-generated bindings for version 3.4 that got left out in the previous release.
  • 0.39.0

    • Iterators for Vector now correctly return remaining length in size_hint and len methods.
    • Internal improvements and cleanups
  • 0.38.0

    • Fix crosscompilation when targeting Windows platform.
    • Fix generation of bigger binaries
  • 0.37.0

    • Add clang-runtime feature for compatiblity with dependencies that require clang or clang-sys that enable its runtime feature unconditionally (like bindgen).
    • Add OPENCV_CLANG_STDLIB_PATH environment variable to allow working around header detection of libclang when it fails (should fix #125).
    • Stop using synchronization primitives for callback handling.
    • Improve cmake based library discovery.
  • 0.36.0

    • Large internal rework of Matx, PtrOf… and VectorOf… structs. They have been made generic and their code generation have been mostly moved to Rust macros. This change should have no user facing consequences, type aliases with the old names are kept for backwards compatibility and code brevity.
    • Methods for accessing raw pointers for boxed classes have been moved into a common Boxed trait. Additionally, from_raw_ptr() is now from_raw(), as_raw() is now returning *const c_void (as opposed to mut) and new methods have been added: as_raw_mut(), into_raw(). This applies to all structs that are allocated by C++ side (e.g. Mat), Ptr<T> and Vector<T>.
    • TermCriteria is now a simple class so you can write and read its properties directly without using accessor methods, APIs involving this class have also been updated.
    • C++ operators * (multiplication, dereferencing), / (division), + (addition) and - (subtraction) are now also exposed to Rust under function names mul_*/try_deref, div_*, add_* and sub_*.
  • 0.35.0

    • Add beta-level support for doing OpenCV library discovery using cmake, which is now a recommended method by the upstream.
    • Add ability to override OPENCV_LINK_LIBS, OPENCV_LINK_PATHS and OPENCV_INCLUDE_PATHS in case of library auto-discovery. This doesn't work for vcpkg yet.
    • Add ability to introduce to specify package names separately for different auto-discovery systems using OPENCV_PKGCONFIG_NAME, OPENCV_CMAKE_NAME and OPENCV_VCPKG_NAME.
  • 0.34.0

    • Bump bindings to OpenCV version 4.3.0 and 3.4.10
    • Mark Mat::new_*_with_data functions unsafe because they allow passing arbitrary data pointer
    • Sort out internal generation of string return type wrappers, should help on some platforms in avoiding buildtime-bindgen, see #110
    • Fix examples
  • 0.33.1

    • Internal rework of VectorOf… generation logic, fix #109
  • 0.33.0

    • Basic support for building against OpenCV.framework on macOS, for details see ci files
    • Fix internals of PtrOff32
    • Big internal refactoring getting rid of most instances of type casting and void*
  • 0.32.0

    • Improve Matx: better api ergonomics, add PartialEq, add ToInput/OutputArray implementations, add tests
    • 'u_mat' the method names is now 'umat' (underscore removed)
  • 0.31.1

    • Fix passing bigger simple classes as arguments
  • 0.31.0

    • Add from/to_vec method to Point_ and Point3_
    • Add basic implementations of Mat_, Matx and Affine3 generic types, and OpenCV methods that use them
    • Rename Mat::*_mut_unchecked methods to *_unchecked_mut for consistency with std library
  • 0.30.1

    • Dummy version to fix docs.rs build
  • 0.30

    • Total rewrite of the binding generator in Rust. It no longer relies on Python, but instead uses libclang to parse the C++ code. Please be sure to install clang/llvm in your system if you're going to regenerate bindings (mostly macOS and Windows users). You can expect all of the previous functionality to be there (sans name changes) and a lot of new functions and classes. Binding generation is now more precise and quick.

    • While most of the crate interface remain the same there are some quite changes in the API:

      • Some functions have changed name to the one hinted in the OpenCV headers, e.g. core::sum() is now core::sum_elems().
      • Some functions got renamed for more consistency (e.g. VideoCapture constructors) or to avoid the name clash with the newly generated functions (like MatConstIterator::getcurrent). Please use the documentation to discover the new name.
      • A bunch of functions got renamed from their _1 automatic names.
      • Names that coincide with Rust keywords now get underscore at the end, not the beginning, e.g. _ref becomes ref_. Moreover type_ is now typ.
      • Vector types now receive their Rust type suffix, so VectorOfuchar gets renamed to VectorOfu8.
    • FileStorage/FileNode API is now usable.

    • Some methods (like Mat::new_nd_with_default) now accept slices instead of Vectors. The length of the Rust slice is passed down to the OpenCV.

    • Traits are now used way more through the API, importing prelude is a must (use opencv::prelude::*;). There are also separate preludes per module should you want to use that (use opencv::imgproc::*;).

    • All enums are now generated.

    • Full property access, you can now read and write all public properties of the OpenCV classes through getters and setters.

    • You can now access properties for PtrOf... objects directly without the need to go through get() and get_mut() (those methods are now dropped, they were unsound).

    • All property setters and getters are now infallible so they don't return Result, but a value directly.

    • _OutputArray and _InputOutputArray have received a second set of constructors from_*_mut, so if you use those manually you most probably want to use *_mut version instead of the const one.

    • New modules: face, surface_matching, text

    • Calling Mat::data_typed() and Mat::data_typed_mut() will now do is_continuous() check and return an error if it's false.

  • 0.29.2

    • add ability to get reference to the inner value of non-trait PtrOf* types (kudos to jerry73204)
  • 0.29.1

    • fix generation of setters for properties (kudos to jerry73204)
  • 0.29

    • default features now target OpenCV 4.2.0 (instead of OpenCV 3.4.x). Feature opencv-42 was renamed to opencv-4. Bindings were bumped to OpenCV 4.2.0 and 3.4.9.

    • core::MAKETYPE was renamed to CV_MAKETYPE, core::MAT_DEPTH was renamed to CV_MAT_DEPTH

  • 0.28

    • dnn::BackendNode constructor as well as stitching::createStitcher and stitching::createStitcherScans are no longer generated for the OpenCV version where they are not available, fixing the linking issues
  • 0.27.0

    • add support for vcpkg when building for windows, it's being used by default in the absence of environment variables

    • with buildtime-bidngen feature enabled the crate no longer uses bundled source files for code generation by default, but the ones installed with OpenCV library detected by pkg_config, vcpkg or environment; set OPENCV_HEADER_DIR environment variable to override this behavior

  • 0.26.6

    • ...