[opengm] branch master updated (3e0c403 -> f0c167b)

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Sun Feb 14 16:06:00 UTC 2016


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a change to branch master
in repository opengm.

      from  3e0c403   Update ChangeLog.txt
       new  819601a   minor changes
       new  933fad7   add matching converters
       new  59664c0   add converter
       new  df279fe   add converter
       new  21ee9d4   change name of brain-converter binary to a less generic one.
       new  e91870b   Merge branch 'master' of https://github.com/opengm/opengm
       new  7e4cdfc   Merge pull request #102 from opengm/master
       new  9f4e788   Merge branch 'master' of https://github.com/joergkappes/opengm
       new  3acdc4f   fix problems on 32bit systems
       new  e98c703   bugfix == -> =
       new  34c8b90   add simple python and matlab demos
       new  5a5e11b   add new ibfs patch
       new  537cb42   reactivate patch
       new  068d7dc   fix patch
       new  9123963   Merge pull request #402 from joergkappes/master
       new  6cacc6f   Merge pull request #403 from joergkappes/master
       new  3993109   add tolarance for floating point operation-tests
       new  22b034b   Merge pull request #103 from opengm/master
       new  b6c88a2   Merge pull request #404 from joergkappes/master
       new  93c9533   uncomment IBFS from graphcut test because of problems - have to be fixed
       new  8f89597   Merge branch 'master' of https://github.com/joergkappes/opengm
       new  c999a6b   Merge pull request #405 from joergkappes/master
       new  83611ee   fix amazing bug in test-marco
       new  03a653e   Merge pull request #406 from joergkappes/master
       new  22e3f68   avoid exception when no feasible solution is found
       new  e5cc7e5   add ibfs test
       new  9db3620   add ibfs test
       new  8a3e4c8   char to int
       new  83b9f72   Merge pull request #408 from joergkappes/master
       new  1e27a07   deletepython-demos
       new  2fa0a3c   read python demos
       new  3f68450   Merge pull request #409 from joergkappes/master
       new  5b790d9   Merge pull request #8 from opengm/master
       new  ddb6690   Merge pull request #412 from DerThorsten/master
       new  111184d   cmake: apple: Removed linker flag "-undefined dynamic_lookup"
       new  5e9cb7a   Merge pull request #415 from stuarteberg/no-undefined-dynamic-lookup
       new  3e0fb48   Fixed __repr__ function
       new  d1946b5   Merge pull request #414 from Erotemic/fix_numpy_repr
       new  0fc8dd1   fix wrong use of IndexType and LabelType
       new  f0c167b   fix incomplete bugfix

The 40 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 include/opengm/graphicalmodel/graphicalmodel.hxx   |   6 +-
 .../fusion_move/permutable_label_fusion_mover.hxx  |   5 +-
 include/opengm/inference/lpcplex.hxx               |   1 +
 include/opengm/unittests/test.hxx                  |   2 +-
 include/opengm/utilities/tribool.hxx               |  16 +-
 src/converter/CMakeLists.txt                       |  15 +-
 src/converter/matching2opengm-N2N.cxx              | 151 ++++++
 src/converter/matching2opengm.cxx                  | 516 +++++++++++++++++++++
 src/external/patches/IBFS/ibfs-new.patch           |  20 +
 src/external/patches/IBFS/patchIBFS.sh             |  22 +-
 src/interfaces/python/opengm/hdf5/CMakeLists.txt   |   3 -
 .../python/opengm/inference/CMakeLists.txt         |   3 -
 .../python/opengm/inference/inference.cpp          |   4 +-
 src/interfaces/python/opengm/inference/pyCgc.cxx   | 166 ++++++-
 src/interfaces/python/opengm/inference/pyCgc.hxx   |   5 +-
 .../opengm/inference/pyIntersectionBased.cxx       |   6 +-
 .../python/opengm/opengmcore/CMakeLists.txt        |   3 -
 .../python/opengm/opengmcore/function_injector.py  |   2 +-
 src/tutorials/matlab/applications/binaryNDSeg.m    |  57 +++
 src/tutorials/matlab/demo/demo1.m                  |   5 +
 src/tutorials/matlab/demo/demo2.m                  |  67 +++
 src/tutorials/matlab/demo/demo3.m                  |  43 ++
 src/tutorials/matlab/demo/demo4.m                  |  52 +++
 src/tutorials/matlab/demo/denoise_fast.m           |  41 ++
 src/tutorials/matlab/demo/setup.m                  |   5 +
 src/tutorials/python/demo/demo1.py                 |  56 +++
 src/tutorials/python/demo/demo2.py                 |  56 +++
 src/tutorials/python/demo/demo3.py                 |  50 ++
 src/tutorials/python/demo/demo4.py                 |  62 +++
 src/tutorials/python/demo/demo5.py                 |  92 ++++
 src/unittest/inference/CMakeLists.txt              |   6 +
 src/unittest/inference/test_graphcut.cxx           |   9 +-
 src/unittest/inference/test_ibfs.cxx               |  39 ++
 src/unittest/test_functions.cxx                    |  36 +-
 src/unittest/test_partitions.cxx                   |  13 +-
 35 files changed, 1547 insertions(+), 88 deletions(-)
 create mode 100644 src/converter/matching2opengm-N2N.cxx
 create mode 100644 src/converter/matching2opengm.cxx
 create mode 100644 src/external/patches/IBFS/ibfs-new.patch
 create mode 100644 src/tutorials/matlab/applications/binaryNDSeg.m
 create mode 100644 src/tutorials/matlab/demo/demo1.m
 create mode 100644 src/tutorials/matlab/demo/demo2.m
 create mode 100644 src/tutorials/matlab/demo/demo3.m
 create mode 100644 src/tutorials/matlab/demo/demo4.m
 create mode 100644 src/tutorials/matlab/demo/denoise_fast.m
 create mode 100644 src/tutorials/matlab/demo/setup.m
 create mode 100644 src/tutorials/python/demo/demo1.py
 create mode 100644 src/tutorials/python/demo/demo2.py
 create mode 100644 src/tutorials/python/demo/demo3.py
 create mode 100644 src/tutorials/python/demo/demo4.py
 create mode 100644 src/tutorials/python/demo/demo5.py
 create mode 100644 src/unittest/inference/test_ibfs.cxx

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/opengm.git



More information about the debian-science-commits mailing list