[pubgit-commits-list] cpPlugins branch master updated. 4110cff7e90092a77cd272abe468db9013dd3863

root root at tux.creatis.insa-lyon.fr
Wed Jun 22 00:46:13 CEST 2016


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 "Plugin system to encapsulate pipeline objects (data, filters, sources and sinks)".

The branch, master has been updated
       via  4110cff7e90092a77cd272abe468db9013dd3863 (commit)
       via  1df9496bf2f5d456616947d377f991a1022ebf6f (commit)
       via  17f052241f7ab67015e3a34f7564da17da8a0e07 (commit)
      from  b689862afd79f8fdc07a10153404936110ccb440 (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=cpPlugins.git;a=commitdiff;h=4110cff7e90092a77cd272abe468db9013dd3863
commit 4110cff7e90092a77cd272abe468db9013dd3863
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Tue Jun 21 17:45:56 2016 -0500

    More and more...


http://git.creatis.insa-lyon.fr/pubgit/?p=cpPlugins.git;a=commitdiff;h=1df9496bf2f5d456616947d377f991a1022ebf6f
commit 1df9496bf2f5d456616947d377f991a1022ebf6f
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Tue Jun 21 17:27:27 2016 -0500

    Even more plugins.


http://git.creatis.insa-lyon.fr/pubgit/?p=cpPlugins.git;a=commitdiff;h=17f052241f7ab67015e3a34f7564da17da8a0e07
commit 17f052241f7ab67015e3a34f7564da17da8a0e07
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Tue Jun 21 17:09:33 2016 -0500

    New plugins added.


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

Summary of changes:
 lib/cpExtensions/Algorithms/FluxMedialness.h       |  74 +++++++
 lib/cpExtensions/Algorithms/FluxMedialness.hxx     | 108 +++++++++
 lib/cpExtensions/Algorithms/GradientFunctionBase.h |  84 -------
 .../Algorithms/GradientFunctionBase.hxx            |  82 -------
 .../Algorithms/GradientImageFunctionBase.h         |  68 ++++++
 .../Algorithms/GradientImageFunctionBase.hxx       |  59 +++++
 lib/cpExtensions/Algorithms/GulsunTekMedialness.h  |  53 ++---
 .../Algorithms/GulsunTekMedialness.hxx             | 235 +++++++-------------
 lib/cpExtensions/Algorithms/MFluxMedialness.h      |  74 +++++++
 lib/cpExtensions/Algorithms/MFluxMedialness.hxx    | 159 +++++++++++++
 .../Algorithms/RegionOfInterestImageCalculator.h   |  73 ++++++
 .../Algorithms/RegionOfInterestImageCalculator.hxx |  92 ++++++++
 .../Algorithms/UnaryThresholdImageFilter.h         | 102 +++++++++
 .../Algorithms/UnaryThresholdImageFilter.hxx       | 245 +++++++++++++++++++++
 lib/cpPlugins_Instances/CMakeLists.txt             |   6 +
 lib/cpPlugins_Instances/ExtractImageFilters.i      |  18 ++
 lib/cpPlugins_Instances/MedialnessFilters.i        |  22 ++
 .../MorphologicalImageFilters.i                    |  21 ++
 lib/cpPlugins_Instances/ThresholdFilters.i         |   2 +
 plugins/CMakeLists.txt                             |   1 +
 .../BinaryDilateParaImageFilter.cxx                |  53 +++++
 .../BinaryDilateParaImageFilter.h                  |  44 ++++
 .../BinaryErodeParaImageFilter.cxx                 |  53 +++++
 ...tImageFilter.h => BinaryErodeParaImageFilter.h} |  25 +--
 plugins/cpPluginsImageFilters/CastImageFilter.h    |   2 +-
 plugins/cpPluginsImageFilters/OrImageFilter.h      |   2 +-
 .../RegionOfInterestImageFilter.cxx                |  72 ++++++
 ...ImageFilter.h => RegionOfInterestImageFilter.h} |  23 +-
 .../UnaryThresholdImageFilter.cxx                  |  59 +++++
 ...leImageFilter.h => UnaryThresholdImageFilter.h} |  23 +-
 .../CMakeLists.txt                                 |   2 +-
 .../GulsunTekMedialness.cxx                        |  30 +++
 .../GulsunTekMedialness.h                          |  44 ++++
 third_party_installers/cpPlugins_Install_ITK.sh    |   1 +
 34 files changed, 1612 insertions(+), 399 deletions(-)
 create mode 100644 lib/cpExtensions/Algorithms/FluxMedialness.h
 create mode 100644 lib/cpExtensions/Algorithms/FluxMedialness.hxx
 delete mode 100644 lib/cpExtensions/Algorithms/GradientFunctionBase.h
 delete mode 100644 lib/cpExtensions/Algorithms/GradientFunctionBase.hxx
 create mode 100644 lib/cpExtensions/Algorithms/GradientImageFunctionBase.h
 create mode 100644 lib/cpExtensions/Algorithms/GradientImageFunctionBase.hxx
 create mode 100644 lib/cpExtensions/Algorithms/MFluxMedialness.h
 create mode 100644 lib/cpExtensions/Algorithms/MFluxMedialness.hxx
 create mode 100644 lib/cpExtensions/Algorithms/RegionOfInterestImageCalculator.h
 create mode 100644 lib/cpExtensions/Algorithms/RegionOfInterestImageCalculator.hxx
 create mode 100644 lib/cpExtensions/Algorithms/UnaryThresholdImageFilter.h
 create mode 100644 lib/cpExtensions/Algorithms/UnaryThresholdImageFilter.hxx
 create mode 100644 lib/cpPlugins_Instances/ExtractImageFilters.i
 create mode 100644 lib/cpPlugins_Instances/MedialnessFilters.i
 create mode 100644 lib/cpPlugins_Instances/MorphologicalImageFilters.i
 create mode 100644 plugins/cpPluginsImageFilters/BinaryDilateParaImageFilter.cxx
 create mode 100644 plugins/cpPluginsImageFilters/BinaryDilateParaImageFilter.h
 create mode 100644 plugins/cpPluginsImageFilters/BinaryErodeParaImageFilter.cxx
 copy plugins/cpPluginsImageFilters/{CastImageFilter.h => BinaryErodeParaImageFilter.h} (50%)
 create mode 100644 plugins/cpPluginsImageFilters/RegionOfInterestImageFilter.cxx
 copy plugins/cpPluginsImageFilters/{CastImageFilter.h => RegionOfInterestImageFilter.h} (53%)
 create mode 100644 plugins/cpPluginsImageFilters/UnaryThresholdImageFilter.cxx
 copy plugins/cpPluginsImageFilters/{ResampleImageFilter.h => UnaryThresholdImageFilter.h} (52%)
 copy plugins/{cpPluginsImageMeshFilters => cpPluginsMedialnessFilters}/CMakeLists.txt (94%)
 create mode 100644 plugins/cpPluginsMedialnessFilters/GulsunTekMedialness.cxx
 create mode 100644 plugins/cpPluginsMedialnessFilters/GulsunTekMedialness.h


hooks/post-receive
-- 
Plugin system to encapsulate pipeline objects (data, filters, sources and sinks)


More information about the Pubgit-commits-list mailing list