[pubgit-commits-list] cpPlugins branch master updated. 73332fee95f5410c46e3b0cff1e2755d5e4a8b71

root root at tux.creatis.insa-lyon.fr
Mon Mar 21 04:09:25 CET 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  73332fee95f5410c46e3b0cff1e2755d5e4a8b71 (commit)
       via  10f490b762198b1e0fe5d4473874643243880883 (commit)
       via  b67cad9ff3c38b4e99ac48a4852e9e94cb879c6a (commit)
      from  0e56d02b312ee913da84f7d682aca3eedb89581c (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=73332fee95f5410c46e3b0cff1e2755d5e4a8b71
commit 73332fee95f5410c46e3b0cff1e2755d5e4a8b71
Merge: 10f490b 0e56d02
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Sun Mar 20 22:09:01 2016 -0500

    ...


http://git.creatis.insa-lyon.fr/pubgit/?p=cpPlugins.git;a=commitdiff;h=10f490b762198b1e0fe5d4473874643243880883
commit 10f490b762198b1e0fe5d4473874643243880883
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Sun Mar 20 16:40:38 2016 -0500

    ...


http://git.creatis.insa-lyon.fr/pubgit/?p=cpPlugins.git;a=commitdiff;h=b67cad9ff3c38b4e99ac48a4852e9e94cb879c6a
commit b67cad9ff3c38b4e99ac48a4852e9e94cb879c6a
Author: Leonardo Florez-Valencia <florez-l at javeriana.edu.co>
Date:   Sat Mar 19 11:07:11 2016 -0500

    ...


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

Summary of changes:
 CMakeLists.txt                                     |   2 +
 appli/PipelineEditor/PipelineEditor.cxx            |  26 +-
 appli/PipelineEditor/PipelineEditor.h              |  17 +-
 appli/bash/cpPlugins_CreateInstances.cxx           |   5 +-
 appli/examples/CMakeLists.txt                      |  14 +-
 appli/examples/extensions/CMakeLists.txt           |  11 +
 .../examples/extensions/example_KalmanVelocity.cxx |  59 ++
 appli/examples/{ => plugins}/CMakeLists.txt        |   0
 .../{ => plugins}/example_LoadPluginsDirectory.cxx |  19 +-
 .../{ => plugins}/example_LoadPluginsFile.cxx      |   0
 .../{ => plugins}/example_ReadWriteImage.cxx       |   0
 .../example_ReadWriteImageWithWorkspace.cxx        |   0
 lib/ItkVtkGlue/itkImageToVTKImageFilter.h          |   4 +-
 lib/ItkVtkGlue/itkVTKImageToImageFilter.h          |   4 +-
 lib/cpExtensions/Algorithms/KalmanVelocityFilter.h |   2 +-
 .../PolyLineParametricPathToPolyData.h             |  69 ++
 .../PolyLineParametricPathToPolyData.hxx           | 207 +++++
 lib/cpPlugins/BaseWidget.h                         |   4 +-
 lib/cpPlugins/CMakeLists.txt                       |   2 +
 lib/cpPlugins/Config.h.in                          |  13 +-
 lib/cpPlugins/Image.h                              |   4 +-
 lib/cpPlugins/Interface.cxx                        |  46 +-
 lib/cpPlugins/Interface.h                          |   1 +
 lib/cpPlugins/Mesh.cxx                             | 116 +++
 lib/cpPlugins/Mesh.h                               |  50 ++
 lib/cpPlugins/Mesh.hxx                             |  72 ++
 lib/cpPlugins/Object.h                             |   4 +-
 lib/cpPlugins_Config.h                             |  16 +
 .../Base_explicit_description.txt                  |   1 +
 lib/cpPlugins_ITKInstances/CMakeLists.txt          |  10 +
 .../{ImageFilters.cxx => Mesh.cxx}                 |   2 +-
 .../Mesh_explicit_description.txt                  |  16 +
 .../{ImageFilters.cxx => Paths.cxx}                |   2 +-
 .../Paths_explicit_description.txt                 |   5 +
 lib/third_party/CMakeLists.txt                     |   1 +
 .../dirent}/CMakeLists.txt                         |   0
 lib/third_party/dirent/cpPlugins_dirent.h          | 848 +++++++++++++++++++++
 plugins/CMakeLists.txt                             |   1 +
 plugins/cpPluginsIO/DicomSeriesReader.h            |   2 +-
 plugins/cpPluginsIO/ImageReader.h                  |   2 +-
 plugins/cpPluginsIO/ImageWriter.h                  |   2 +-
 .../ImageToHistogramFilter.cxx                     |   8 +-
 .../CMakeLists.txt                                 |   4 +-
 .../PolyLineParametricPathToPolyData.cxx           |  65 ++
 .../PolyLineParametricPathToPolyData.h             |  49 ++
 45 files changed, 1716 insertions(+), 69 deletions(-)
 create mode 100644 appli/examples/extensions/CMakeLists.txt
 create mode 100644 appli/examples/extensions/example_KalmanVelocity.cxx
 copy appli/examples/{ => plugins}/CMakeLists.txt (100%)
 rename appli/examples/{ => plugins}/example_LoadPluginsDirectory.cxx (69%)
 rename appli/examples/{ => plugins}/example_LoadPluginsFile.cxx (100%)
 rename appli/examples/{ => plugins}/example_ReadWriteImage.cxx (100%)
 rename appli/examples/{ => plugins}/example_ReadWriteImageWithWorkspace.cxx (100%)
 create mode 100644 lib/cpExtensions/Visualization/PolyLineParametricPathToPolyData.h
 create mode 100644 lib/cpExtensions/Visualization/PolyLineParametricPathToPolyData.hxx
 create mode 100644 lib/cpPlugins/Mesh.cxx
 create mode 100644 lib/cpPlugins/Mesh.h
 create mode 100644 lib/cpPlugins/Mesh.hxx
 create mode 100644 lib/cpPlugins_Config.h
 copy lib/cpPlugins_ITKInstances/{ImageFilters.cxx => Mesh.cxx} (51%)
 create mode 100644 lib/cpPlugins_ITKInstances/Mesh_explicit_description.txt
 copy lib/cpPlugins_ITKInstances/{ImageFilters.cxx => Paths.cxx} (51%)
 create mode 100644 lib/cpPlugins_ITKInstances/Paths_explicit_description.txt
 copy lib/{ItkVtkGlue => third_party/dirent}/CMakeLists.txt (100%)
 create mode 100644 lib/third_party/dirent/cpPlugins_dirent.h
 copy plugins/{cpPluginsWidgets => cpPluginsVisualization}/CMakeLists.txt (95%)
 create mode 100644 plugins/cpPluginsVisualization/PolyLineParametricPathToPolyData.cxx
 create mode 100644 plugins/cpPluginsVisualization/PolyLineParametricPathToPolyData.h


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


More information about the Pubgit-commits-list mailing list