Skip to content

Releases: ukoethe/vigra

Release 1.11.2

30 Sep 15:53
501c99c
Compare
Choose a tag to compare
  • Updated CMake minimum version to 3.12.
  • Added support for PyPy as python runtime (Mark Harfouche).
  • Updated/Fixed CI, including various fixes for the build system (Mark Harfouche, John Kirkham, Dominik Kutra)
  • Various fixes / improved compatility to support updated dependencies (hdf5 5.12, numpy>=1.20, sphinx>=1.8.0, python 3, h5py 3.0) (Mark Harfouche, John Kirkham, Ullrich Koethe, Dominik Kutra, Hans Meine)
  • Fixed Matlab compilation (Joachim Börger)
  • Fixed compilation with cpp17 (Constantin Pape)

Version 1.11.1

19 May 17:34
Compare
Choose a tag to compare

Changes from Version 1.11.0 to 1.11.1

  • Added 3D convex hull computation and features (David Stöckel).
  • Added Random Forest version 3, inspired by LEMON's graph API, to simplify customization of RF variants (Philip Schill).
  • Improved hierarchical clustering (Constantin Pape).
  • Minor improvements and bug fixes in the code and documentation.

Version 1.11.0

17 Mar 14:47
Compare
Choose a tag to compare

Changes from Version 1.10.0 to 1.11.0

  • Ported vigranumpy to Python 3.5.
  • Added chunked arrays to store data larger than RAM as a collection of rectangular blocks.
  • Added vigra::ThreadPool and parallel_foreach() for portable algorithm parallelization based on std::thread.
  • Implemented parallel versions of Gaussian smoothing, Gaussian derivatives, connected components labeling, and union-find watersheds.
  • Added graph-based image analysis, e.g. agglomerative clustering
  • Included the callback mechanism described in Impossibly Fast C++ Delegates by Sergey Ryazanov (needed for agglomerative clustering).
  • Added many image registration functions.
  • Extended the collection of multi-dimensional distance transform algorithms by vectorial DT, boundary DT, and eccentricity transform.
  • Added skeletonizeImage(), nonLocalMean(), multi-dimensional integral images.
  • Added new 2D shape features based on skeletonization and the convex hull.
  • Additional arithmetic and algebraic functions for vigra::TinyVector.
  • Added vigra::CountingIterator.
  • Minor improvements and bug fixes in the code and documentation.

Version 1.10.0

26 Nov 13:14
Compare
Choose a tag to compare

Changes from Version 1.9.0 to 1.10.0

  • VIGRA got a tutorial.
  • Significant simplification of the API: MultiArrayView arguments can now be passed to functions directly. The old syntax with Argument Object Factories (srcImageRange(), srcMultiArray() and relatives) remains valid, but is only required when the arguments are old-style BasicImages.
  • Made StridedArrayTag the default for vigra::MultiArrayView .
  • Added an efficient multi-dimensional vigra::GridGraph class which support both the LEMON and boost::graph APIs.
  • Generalized various algorithms to arbitrary dimensions (gaussianGradientMultiArray(), hessianOfGaussianMultiArray(), gaussianDivergenceMultiArray(), localMinima(), localMaxima(), labelMultiArray(), watershedsMultiArray()).
  • Added slicSuperpixels() for arbitrary dimensions.
  • Added automatic differentiation (see vigra::autodiff::DualVector).
  • Added nonlinearLeastSquares() using the Levenberg-Marquardt algorithm and automatic differentiation.
    More information about the changes can be found on the changelog page.