Skip to content

v.1.7.0

Latest
Compare
Choose a tag to compare
@ereator ereator released this 21 Feb 12:34
· 84 commits to master since this release

This is our grand winter release which includes dense graphical models, supports Linux, OpenCV v.4.0, C++17 and has many other new features. The library interface has also undergone changes as massive refactoring was performed. The main emphasis of refactoring was on simplifying the user code needed to initialize and use the basic library classes. We have also started to monitor the quality of our code with CodeFactor and got grade score A (97,6%).

Release highlights

  • DGM is now available for Linux (Ubuntu 18.04) operating system (many thanks to @Genj1n).
  • DGM is now C++17 library and requires C++17-compliant compiler. However the roll-back to C++11 is straightforward.
  • DGM now supports recently released OpenCV v.4.0 (many thanks to @TechnikEmpire). The support of OpenCV v.3.4 is still present.
  • Two new tutorials:
  • Almost 10 new tests were added

DGM Module

  • Complete (dense) graphical models were added to the model:
  • Graph extensions classes derived from CGraphExt, which significantly simplify building and filling the 2D graphical models used for image classification. In addition, with help of the CGraphPairwiseExt class the training of the graph edges was also simplified in terms of the required user code.
  • Factory methods were added, which allow for creating objects of a library in a way such that it doesn’t have tight coupling with the class hierarchy of the library.
  • Refactored classes (with subsequent change of the interface). Refactoring mainly included substitution of pointers with references, raw pointers with smart pointers, protected member-variables with private
    member-variables and removing friend classes.
  • Boost library was removed from the 3rdparty code. Subsequently CGraphBoost was moved to a separate branch.

VIS Module

  • Visualization module now supports recently released glew v.2.1