[pubgit-commits-list] FrontAlgorithms branch master updated. 40fb0405cfef444001429f8ba49c407ce9168a94

root root at tux.creatis.insa-lyon.fr
Sat Mar 4 00:06:09 CET 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Generic implementation of front propagation algorithms with some extra features".

The branch, master has been updated
       via  40fb0405cfef444001429f8ba49c407ce9168a94 (commit)
      from  cf298be2de026712c5ab3487978e3a6954a809cd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.creatis.insa-lyon.fr/pubgit/?p=FrontAlgorithms.git;a=commitdiff;h=40fb0405cfef444001429f8ba49c407ce9168a94
commit 40fb0405cfef444001429f8ba49c407ce9168a94
Author: Leonardo Flórez-Valencia <florez-l at javeriana.edu.co>
Date:   Fri Mar 3 11:49:42 2017 -0500

    ...


-----------------------------------------------------------------------

Summary of changes:
 examples/CMakeLists.txt                            |   1 +
 examples/FastMarching_00.cxx                       |  55 ++++++++
 lib/fpa/Base/Algorithm.h                           |  20 +++
 lib/fpa/Base/Algorithm.hxx                         |  13 ++
 lib/fpa/Base/Dijkstra.h                            |  39 +-----
 lib/fpa/Base/Dijkstra.hxx                          |  43 +-----
 lib/fpa/Base/DijkstraCostFunctionBase.h            |  51 -------
 lib/fpa/Base/FastMarching.h                        |  59 ++++++++
 lib/fpa/Base/FastMarching.hxx                      |  81 +++++++++++
 lib/fpa/Base/Functors/RegionGrow/Base.h            |  26 +++-
 lib/fpa/Base/Functors/RegionGrow/Tautology.h       |  13 +-
 lib/fpa/Base/Functors/VertexCostFunctionBase.h     |  55 ++++++++
 lib/fpa/Base/PriorityQueueAlgorithm.h              |  64 +++++++++
 lib/fpa/Base/PriorityQueueAlgorithm.hxx            |  60 ++++++++
 lib/fpa/Base/QueueAlgorithm.h                      |  59 ++++++++
 lib/fpa/Base/QueueAlgorithm.hxx                    |  57 ++++++++
 lib/fpa/Base/RegionGrow.h                          |  40 ++----
 lib/fpa/Base/RegionGrow.hxx                        | 110 ++++++++++-----
 lib/fpa/Image/Algorithm.h                          |   6 +-
 lib/fpa/Image/Algorithm.hxx                        |  31 ++++-
 lib/fpa/Image/Dijkstra.h                           |   4 -
 lib/fpa/Image/Dijkstra.hxx                         |  23 +--
 lib/fpa/Image/FastMarching.h                       |  55 ++++++++
 lib/fpa/Image/FastMarching.hxx                     |  50 +++++++
 .../Image/Functors/RegionGrow/BinaryThreshold.h    |   9 +-
 .../Image/Functors/RegionGrow/BinaryThreshold.hxx  |  21 +--
 lib/fpa/Image/Functors/SimpleNeighborhood.h        |   7 +-
 lib/fpa/Image/Functors/SimpleNeighborhood.hxx      |  28 ++--
 .../{SimpleDijkstraCost.h => VertexCost.h}         |  26 ++--
 .../{SimpleDijkstraCost.hxx => VertexCost.hxx}     |  18 +--
 lib/fpa/Image/MoriRegionGrowHelper.h               |   6 +-
 lib/fpa/Image/RegionGrow.hxx                       |   6 +-
 lib/fpa/Image/SkeletonFilter.hxx                   |   5 +-
 lib/fpaInstances/BaseFilters.i                     |  12 ++
 lib/fpaInstances/CMakeLists.txt                    |  30 ++--
 lib/fpaInstances/DataObjects.i                     |  10 +-
 lib/fpaInstances/Filters.i                         |  12 --
 lib/fpaInstances/ImageFilters.i                    |  28 ++++
 lib/fpaInstances/ImageFunctors.i                   |  16 +++
 plugins/CMakeLists.txt                             |  40 ++++--
 .../DijkstraFunctors/SimpleImageDijkstraCost.cxx   |  29 ++--
 plugins/ImageAlgorithms/BaseFilter.cxx             |   1 -
 plugins/ImageAlgorithms/BaseFilter.h               |  58 ++++----
 plugins/ImageAlgorithms/Dijkstra.cxx               |  35 +++--
 .../{Dijkstra.cxx => FastMarching.cxx}             |  55 +++++---
 .../{RegionGrow.h => FastMarching.h}               |  10 +-
 plugins/ImageAlgorithms/ImageAlgorithms.i          |  36 ++---
 plugins/ImageAlgorithms/MoriRegionGrow.cxx         |  76 +++++-----
 plugins/ImageAlgorithms/RegionGrow.cxx             |  13 +-
 plugins/ImageAlgorithms/SkeletonFilter.cxx         |  57 ++++----
 plugins/RegionGrowFunctors/BinaryThreshold.cxx     | 154 +++++++++++----------
 plugins/RegionGrowFunctors/RegionGrowFunctors.i    |   2 +-
 52 files changed, 1235 insertions(+), 580 deletions(-)
 create mode 100644 examples/FastMarching_00.cxx
 delete mode 100644 lib/fpa/Base/DijkstraCostFunctionBase.h
 create mode 100644 lib/fpa/Base/FastMarching.h
 create mode 100644 lib/fpa/Base/FastMarching.hxx
 create mode 100644 lib/fpa/Base/Functors/VertexCostFunctionBase.h
 create mode 100644 lib/fpa/Base/PriorityQueueAlgorithm.h
 create mode 100644 lib/fpa/Base/PriorityQueueAlgorithm.hxx
 create mode 100644 lib/fpa/Base/QueueAlgorithm.h
 create mode 100644 lib/fpa/Base/QueueAlgorithm.hxx
 create mode 100644 lib/fpa/Image/FastMarching.h
 create mode 100644 lib/fpa/Image/FastMarching.hxx
 rename lib/fpa/Image/Functors/{SimpleDijkstraCost.h => VertexCost.h} (64%)
 rename lib/fpa/Image/Functors/{SimpleDijkstraCost.hxx => VertexCost.hxx} (64%)
 create mode 100644 lib/fpaInstances/BaseFilters.i
 delete mode 100644 lib/fpaInstances/Filters.i
 create mode 100644 lib/fpaInstances/ImageFilters.i
 create mode 100644 lib/fpaInstances/ImageFunctors.i
 copy plugins/ImageAlgorithms/{Dijkstra.cxx => FastMarching.cxx} (53%)
 copy plugins/ImageAlgorithms/{RegionGrow.h => FastMarching.h} (54%)


hooks/post-receive
-- 
Generic implementation of front propagation algorithms with some extra features


More information about the Pubgit-commits-list mailing list