[pubgit-commits-list] cpPlugins branch sandbox updated. f762078bd4c0284a3e42ddf0c9e78b2e541afd57

root root at tux.creatis.insa-lyon.fr
Mon Oct 9 18:22:27 CEST 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 "Plugin system to encapsulate pipeline objects (data, filters, sources and sinks)".

The branch, sandbox has been updated
       via  f762078bd4c0284a3e42ddf0c9e78b2e541afd57 (commit)
      from  e8e35aae57ebfb8e4cba46a08e78c15c1346be91 (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=f762078bd4c0284a3e42ddf0c9e78b2e541afd57
commit f762078bd4c0284a3e42ddf0c9e78b2e541afd57
Author: Leonardo Flórez-Valencia <florez-l at javeriana.edu.co>
Date:   Mon Oct 9 11:22:19 2017 -0500

    ...


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

Summary of changes:
 CMakeLists.txt                                     |  10 -
 cmake/cpPlgInstallCommands.cmake                   |  15 ++
 .../cpPlgUninstall.cmake.in                        |   0
 config/install_mxe.sh                              |  12 +-
 config/mxe.patch                                   |  11 +-
 lib/ivq/Config.h.in                                |  67 ++++++
 lib/ivq/ITK/BooleanMapSaliencyFunction.h           |  11 +-
 lib/ivq/ITK/BooleanMapSaliencyFunction.hxx         |  10 +-
 lib/ivq/ITK/CPRImageFilter.h                       |  17 +-
 lib/ivq/ITK/CPRImageFilter.hxx                     |  42 +---
 lib/ivq/ITK/ExtractLabelFunction.h                 |  11 +-
 lib/ivq/ITK/ExtractLabelFunction.hxx               |  10 +-
 lib/ivq/ITK/Graph.h                                | 167 +++++++++++++
 lib/ivq/ITK/Graph.hxx                              | 265 +++++++++++++++++++++
 lib/ivq/ITK/ImageMinimumSpanningTree.h             |  72 ++++++
 lib/ivq/ITK/ImageMinimumSpanningTree.hxx           |  71 ++++++
 lib/ivq/ITK/ImagePath.h                            |  92 +++++++
 lib/ivq/ITK/ImagePath.hxx                          | 224 +++++++++++++++++
 lib/ivq/ITK/ImagePathReader.h                      |  81 +++++++
 lib/ivq/ITK/ImagePathReader.hxx                    | 172 +++++++++++++
 lib/ivq/ITK/ImagePathWriter.h                      |  65 +++++
 lib/ivq/ITK/ImagePathWriter.hxx                    |  91 +++++++
 lib/ivq/ITK/ImageROIFromFunction.h                 |  11 +-
 lib/ivq/ITK/ImageROIFromFunction.hxx               |  10 +-
 lib/ivq/ITK/ImageSkeleton.h                        |  65 +++++
 lib/ivq/ITK/ImageSkeleton.hxx                      |  98 ++++++++
 lib/ivq/ITK/ImageSkeletonReader.h                  |  81 +++++++
 lib/ivq/ITK/ImageSkeletonReader.hxx                | 208 ++++++++++++++++
 lib/ivq/ITK/ImageSkeletonWriter.h                  |  70 ++++++
 lib/ivq/ITK/ImageSkeletonWriter.hxx                | 139 +++++++++++
 lib/ivq/ITK/ImageStatisticsFromSeeds.h             |  11 +-
 lib/ivq/ITK/ImageStatisticsFromSeeds.hxx           |  10 +-
 lib/ivq/ITK/ImageUnaryFunctionFilter.h             |  10 +-
 lib/ivq/ITK/ImageUnaryFunctionFilter.hxx           |  10 +-
 lib/ivq/ITK/IncrementalMeanAndVariance.h           |   3 +-
 lib/ivq/ITK/IsoImageSlicer.h                       |  11 +-
 lib/ivq/ITK/IsoImageSlicer.hxx                     |  10 +-
 lib/ivq/ITK/MinimumSpanningTree.h                  |  74 ++++++
 lib/ivq/ITK/MinimumSpanningTree.hxx                | 236 ++++++++++++++++++
 lib/ivq/ITK/PeakDetector.h                         |   3 +-
 lib/ivq/ITK/RasterContourFilter.h                  |  11 +-
 lib/ivq/ITK/RasterContourFilter.hxx                |  12 +-
 .../ITK/RegionOfInterestWithPaddingImageFilter.h   |   9 +-
 .../ITK/RegionOfInterestWithPaddingImageFilter.hxx |   9 +-
 lib/ivq/ITK/Simple3DCurve.cxx                      |   9 +-
 lib/ivq/ITK/Simple3DCurve.h                        |  12 +-
 lib/ivq/ITK/ThresholdFunction.h                    |  12 +-
 lib/ivq/ITK/ThresholdFunction.hxx                  |  10 +-
 48 files changed, 2463 insertions(+), 197 deletions(-)
 rename cmake_uninstall.cmake.in => cmake/cpPlgUninstall.cmake.in (100%)
 create mode 100644 lib/ivq/ITK/Graph.h
 create mode 100644 lib/ivq/ITK/Graph.hxx
 create mode 100644 lib/ivq/ITK/ImageMinimumSpanningTree.h
 create mode 100644 lib/ivq/ITK/ImageMinimumSpanningTree.hxx
 create mode 100644 lib/ivq/ITK/ImagePath.h
 create mode 100644 lib/ivq/ITK/ImagePath.hxx
 create mode 100644 lib/ivq/ITK/ImagePathReader.h
 create mode 100644 lib/ivq/ITK/ImagePathReader.hxx
 create mode 100644 lib/ivq/ITK/ImagePathWriter.h
 create mode 100644 lib/ivq/ITK/ImagePathWriter.hxx
 create mode 100644 lib/ivq/ITK/ImageSkeleton.h
 create mode 100644 lib/ivq/ITK/ImageSkeleton.hxx
 create mode 100644 lib/ivq/ITK/ImageSkeletonReader.h
 create mode 100644 lib/ivq/ITK/ImageSkeletonReader.hxx
 create mode 100644 lib/ivq/ITK/ImageSkeletonWriter.h
 create mode 100644 lib/ivq/ITK/ImageSkeletonWriter.hxx
 create mode 100644 lib/ivq/ITK/MinimumSpanningTree.h
 create mode 100644 lib/ivq/ITK/MinimumSpanningTree.hxx


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


More information about the Pubgit-commits-list mailing list