[pubgit-commits-list] cpPlugins branch master updated. 683fd9cb190ab6835d4c8b58eb2823dd8fbe0b8e

root root at tux.creatis.insa-lyon.fr
Sat Oct 29 05:04:24 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  683fd9cb190ab6835d4c8b58eb2823dd8fbe0b8e (commit)
       via  6bd5a267c827df95f0c1c8f8c0af0f918bf2b31c (commit)
       via  db0a767418f78b371c1e4fb0db00e6b75df74ff3 (commit)
      from  49d2d7db538d60008b9a5701ea8f26bb19997a82 (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=683fd9cb190ab6835d4c8b58eb2823dd8fbe0b8e
commit 683fd9cb190ab6835d4c8b58eb2823dd8fbe0b8e
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Fri Oct 28 22:04:09 2016 -0500

    ...


http://git.creatis.insa-lyon.fr/pubgit/?p=cpPlugins.git;a=commitdiff;h=6bd5a267c827df95f0c1c8f8c0af0f918bf2b31c
commit 6bd5a267c827df95f0c1c8f8c0af0f918bf2b31c
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Fri Oct 28 10:25:10 2016 -0500

    ...


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

    ...


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

Summary of changes:
 CMakeLists.txt                                     |   3 +-
 appli/CMakeLists.txt                               |   2 +-
 appli/PipelineEditor/CMakeLists.txt                |  15 +-
 appli/bash/Config.h.in                             |  16 +-
 appli/bash/CreateDemanglers.cxx                    |  83 +++----
 cmake/Functions.cmake                              |  58 ++++-
 cmake/Options.cmake                                |   2 +
 lib/Instances/BaseObjects.i                        |   7 +
 lib/Instances/CMakeLists.txt                       |   2 +
 lib/Instances/ImageFiltersBases.i                  |  10 +
 lib/Instances/ImageIterators.i                     |   4 +-
 lib/Instances/ImageNeighborhoodIterators.i         |  44 ++++
 lib/Instances/Meshes.i                             |   8 +
 lib/Instances/SimpleImages.i                       |   3 +
 lib/cpBaseQtApplication/Block.cxx                  |  12 +-
 lib/cpBaseQtApplication/Block.h                    |   2 +-
 lib/cpBaseQtApplication/Canvas.cxx                 |  38 ----
 lib/cpBaseQtApplication/Connection.cxx             |   8 +-
 lib/cpBaseQtApplication/Editor.cxx                 |  32 +--
 lib/cpBaseQtApplication/Port.cxx                   |  34 +--
 lib/cpBaseQtApplication/Port.h                     |  21 +-
 lib/cpPlugins/BaseObjects/Port.cxx                 |  32 +--
 lib/cpPlugins/BaseObjects/ProcessObject.cxx        |  11 +
 lib/cpPlugins/BaseObjects/ProcessObject.h          |   1 +
 lib/cpPlugins/DataObjects/BoundingBox.cxx          |   1 +
 lib/cpPlugins/DataObjects/Image.cxx                |  50 ++---
 lib/cpPlugins/DataObjects/Image.d                  |  10 +
 lib/cpPlugins/DataObjects/Mesh.cxx                 | 244 +++++++++++++--------
 lib/cpPlugins/DataObjects/Mesh.d                   |   2 +-
 lib/cpPlugins/DataObjects/Mesh.h                   |   4 +-
 lib/cpPlugins/DataObjects/Mesh.hxx                 |  67 ------
 lib/cpPlugins/Interface/Workspace.cxx              |  17 +-
 lib/cpPlugins/Interface/WorkspaceIO.cxx            |  33 +--
 .../CurvatureAnisotropicDiffusionImageFilter.cxx   |  30 +--
 .../CurvatureAnisotropicDiffusionImageFilter.h     |   4 +-
 plugins/CMakeLists.txt                             |  23 +-
 plugins/GenericFilters/JoinBoundingBoxes.cxx       |  31 +--
 plugins/GenericFilters/JoinBoundingBoxes.h         |   2 +-
 plugins/IO/IO.i                                    |   2 +
 plugins/IO/ImageReader.cxx                         |  44 +++-
 plugins/IO/ImageReader.h                           |   6 +-
 plugins/IO/ImageReaderQDialog.h                    |   6 +-
 plugins/IO/ImageWriter.cxx                         |  17 +-
 plugins/IO/ImageWriter.h                           |   6 +-
 plugins/IO/ImageWriterQDialog.h                    |   6 +-
 plugins/IO/MeshWriter.cxx                          |   7 +-
 plugins/IO/MeshWriter.h                            |   6 +-
 plugins/ImageArithmeticFilters/AddImageFilter.cxx  |  40 ++--
 plugins/ImageArithmeticFilters/AddImageFilter.h    |  11 +-
 .../ImageArithmeticFilters/DivideImageFilter.cxx   |  40 ++--
 plugins/ImageArithmeticFilters/DivideImageFilter.h |  11 +-
 .../DivideOrZeroOutImageFilter.cxx                 |  44 ++--
 .../DivideOrZeroOutImageFilter.h                   |  11 +-
 .../ImageArithmeticFilters.i                       |  16 ++
 .../ImageArithmeticFilters/MultiplyImageFilter.cxx |  40 ++--
 .../ImageArithmeticFilters/MultiplyImageFilter.h   |  11 +-
 .../ImageArithmeticFilters/NaryAddImageFilter.cxx  |  49 +++++
 .../ImageArithmeticFilters/NaryAddImageFilter.h    |  29 +++
 plugins/ImageArithmeticFilters/PowImageFilter.cxx  |  57 +++--
 plugins/ImageArithmeticFilters/PowImageFilter.h    |  11 +-
 .../ImageArithmeticFilters/SubtractImageFilter.cxx |  40 ++--
 .../ImageArithmeticFilters/SubtractImageFilter.h   |  11 +-
 plugins/ImageBooleanFilters/AndImageFilter.cxx     |  28 +--
 plugins/ImageBooleanFilters/AndImageFilter.h       |   4 +-
 plugins/ImageBooleanFilters/ImageBooleanFilters.i  |  12 +
 plugins/ImageBooleanFilters/OrImageFilter.cxx      |  28 +--
 plugins/ImageBooleanFilters/OrImageFilter.h        |   4 +-
 plugins/ImageBooleanFilters/XorImageFilter.cxx     |  28 +--
 plugins/ImageBooleanFilters/XorImageFilter.h       |   4 +-
 .../ImageDistanceMaps/BinaryContourImageFilter.cxx |  76 +++++++
 .../ImageDistanceMaps/BinaryContourImageFilter.h   |  32 +++
 plugins/ImageDistanceMaps/ImageDistanceMaps.i      |  20 ++
 .../SignedMaurerDistanceMapImageFilter.cxx         |  48 ++--
 .../SignedMaurerDistanceMapImageFilter.h           |  11 +-
 plugins/ImageGenericFilters/ImageGenericFilters.i  |  18 ++
 .../MinimumMaximumCalculator.cxx                   |  16 +-
 .../ImageGenericFilters/MinimumMaximumCalculator.h |   2 +-
 .../RegionOfInterestImageFilter.cxx                |  19 +-
 .../RegionOfInterestImageFilter.h                  |   2 +-
 .../RescaleIntensityImageFilter.cxx                |  10 +-
 .../ImageGradientFilters/GulsunTekImageFilter.cxx  |  19 +-
 .../ImageGradientFilters/GulsunTekImageFilter.h    |   2 +-
 .../MultiScaleGaussianImageFilter.cxx              |  32 +--
 .../MultiScaleGaussianImageFilter.h                |   6 +-
 plugins/ImageMeshFilters/MarchingCubes.cxx         |   7 +-
 plugins/ImageMeshFilters/MarchingCubes.h           |   6 +-
 plugins/ImageMeshFilters/RasterMeshFilter.h        |   4 +-
 plugins/ImageSources/RandomImageSource.cxx         |  32 +--
 .../BinaryThresholdImageFilter.cxx                 |  57 ++---
 .../BinaryThresholdImageFilter.h                   |   4 +-
 .../ImageThresholdFilters/ImageThresholdFilters.i  |  14 ++
 .../ImageToBoundingBoxFromThreshold.cxx            |  54 +++--
 .../ImageToBoundingBoxFromThreshold.h              |   2 +-
 .../UnaryThresholdImageFilter.cxx                  |  45 ++--
 .../UnaryThresholdImageFilter.h                    |   4 +-
 plugins/MeshFilters/AppendMeshesFilter.cxx         |  27 +--
 plugins/Widgets/LineWidget.cxx                     |   1 +
 plugins/Widgets/SplineWidget.cxx                   |   1 +
 98 files changed, 1349 insertions(+), 817 deletions(-)
 create mode 100644 lib/Instances/ImageNeighborhoodIterators.i
 delete mode 100644 lib/cpPlugins/DataObjects/Mesh.hxx
 create mode 100644 plugins/ImageArithmeticFilters/ImageArithmeticFilters.i
 create mode 100644 plugins/ImageArithmeticFilters/NaryAddImageFilter.cxx
 create mode 100644 plugins/ImageArithmeticFilters/NaryAddImageFilter.h
 create mode 100644 plugins/ImageBooleanFilters/ImageBooleanFilters.i
 create mode 100644 plugins/ImageDistanceMaps/BinaryContourImageFilter.cxx
 create mode 100644 plugins/ImageDistanceMaps/BinaryContourImageFilter.h
 create mode 100644 plugins/ImageDistanceMaps/ImageDistanceMaps.i
 create mode 100644 plugins/ImageGenericFilters/ImageGenericFilters.i
 create mode 100644 plugins/ImageThresholdFilters/ImageThresholdFilters.i


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


More information about the Pubgit-commits-list mailing list