[pubgit-commits-list] creaVtk branch master updated. 4a280e4f9934a2d03dcb9a5f506e7c8152e7eee8
root
root at tux.creatis.insa-lyon.fr
Wed Nov 20 15:30:01 CET 2013
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 "Utilities in vtk".
The branch, master has been updated
via 4a280e4f9934a2d03dcb9a5f506e7c8152e7eee8 (commit)
via 90c71e060662977373f6cd7254e6e492f85d3935 (commit)
via 7bfc4edc9a0768d45faee896e9e95dad33147626 (commit)
via b29724c42f07b25ec62e96ff9bf4a7d82a69afe8 (commit)
from 755e53bc4442c6486fafda0e51395f87624ee2b2 (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=creaVtk.git;a=commitdiff;h=4a280e4f9934a2d03dcb9a5f506e7c8152e7eee8
commit 4a280e4f9934a2d03dcb9a5f506e7c8152e7eee8
Author: ctorres <carlos.torres at creatis.insa-lyon.fr>
Date: Wed Nov 20 15:29:33 2013 +0100
...
http://git.creatis.insa-lyon.fr/pubgit/?p=creaVtk.git;a=commitdiff;h=90c71e060662977373f6cd7254e6e492f85d3935
commit 90c71e060662977373f6cd7254e6e492f85d3935
Author: ctorres <carlos.torres at creatis.insa-lyon.fr>
Date: Wed Nov 20 15:29:09 2013 +0100
New functionality, obtain the angles of the vector from a heart image.
http://git.creatis.insa-lyon.fr/pubgit/?p=creaVtk.git;a=commitdiff;h=7bfc4edc9a0768d45faee896e9e95dad33147626
commit 7bfc4edc9a0768d45faee896e9e95dad33147626
Author: ctorres <carlos.torres at creatis.insa-lyon.fr>
Date: Wed Nov 20 15:28:31 2013 +0100
New functionality, obtain an 3D image vector from an image.
http://git.creatis.insa-lyon.fr/pubgit/?p=creaVtk.git;a=commitdiff;h=b29724c42f07b25ec62e96ff9bf4a7d82a69afe8
commit b29724c42f07b25ec62e96ff9bf4a7d82a69afe8
Author: ctorres <carlos.torres at creatis.insa-lyon.fr>
Date: Wed Nov 20 15:27:10 2013 +0100
New functionality, transforms a vtk image 4D into a itk image 4D.
-----------------------------------------------------------------------
Summary of changes:
appli/CMakeLists.txt | 2 +-
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.cxx | 57 +++++++
...sorsVisu.cxx => bbcreaVtkFromVtk4DToItk4D.cxx~} | 47 ++----
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.h | 48 ++++++
bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.h~ | 45 +++++
bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.cxx | 62 +++++++
bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.cxx~ | 62 +++++++
bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.h | 50 ++++++
bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.h~ | 49 ++++++
lib/CMakeLists.txt | 2 +-
lib/creaVtk/creaVtkFromVtk4DToItk4D.cpp | 181 +++++++++++++++++++++
lib/creaVtk/creaVtkFromVtk4DToItk4D.cpp~ | 181 +++++++++++++++++++++
.../creaVtk/creaVtkFromVtk4DToItk4D.h | 39 +++--
.../creaVtk/creaVtkFromVtk4DToItk4D.h~ | 39 +++--
lib/creaVtk/creaVtkHeartAngles.cpp | 173 ++++++++++++++++++++
lib/creaVtk/creaVtkHeartAngles.cpp~ | 173 ++++++++++++++++++++
.../{vtkVectorsVisu.h => creaVtkHeartAngles.h} | 52 ++----
.../{vtkVectorsVisu.h => creaVtkHeartAngles.h~} | 28 +---
lib/creaVtk/creaVtkIma3DVector.cpp | 110 +++++++++++++
.../creaVtk/creaVtkIma3DVector.cpp~ | 33 ++--
.../{vtkVectorsVisu.h => creaVtkIma3DVector.h} | 33 ++--
.../{vtkVectorsVisu.h => creaVtkIma3DVector.h~} | 28 +---
22 files changed, 1322 insertions(+), 172 deletions(-)
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.cxx
copy bbtk_creaVtk_PKG/src/{bbcreaVtkTensorsVisu.cxx => bbcreaVtkFromVtk4DToItk4D.cxx~} (50%)
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.h
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkFromVtk4DToItk4D.h~
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.cxx
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.cxx~
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.h
create mode 100644 bbtk_creaVtk_PKG/src/bbcreaVtkImage3DVector.h~
create mode 100644 lib/creaVtk/creaVtkFromVtk4DToItk4D.cpp
create mode 100644 lib/creaVtk/creaVtkFromVtk4DToItk4D.cpp~
copy bbtk_creaVtk_PKG/doc/doxygen/DoxyMainPage.txt.in => lib/creaVtk/creaVtkFromVtk4DToItk4D.h (66%)
copy bbtk_creaVtk_PKG/doc/doxygen/DoxyMainPage.txt.in => lib/creaVtk/creaVtkFromVtk4DToItk4D.h~ (66%)
create mode 100644 lib/creaVtk/creaVtkHeartAngles.cpp
create mode 100644 lib/creaVtk/creaVtkHeartAngles.cpp~
copy lib/creaVtk/{vtkVectorsVisu.h => creaVtkHeartAngles.h} (54%)
copy lib/creaVtk/{vtkVectorsVisu.h => creaVtkHeartAngles.h~} (82%)
create mode 100644 lib/creaVtk/creaVtkIma3DVector.cpp
copy bbtk_creaVtk_PKG/doc/doxygen/DoxyMainPage.txt.in => lib/creaVtk/creaVtkIma3DVector.cpp~ (76%)
copy lib/creaVtk/{vtkVectorsVisu.h => creaVtkIma3DVector.h} (78%)
copy lib/creaVtk/{vtkVectorsVisu.h => creaVtkIma3DVector.h~} (82%)
hooks/post-receive
--
Utilities in vtk
More information about the Pubgit-commits-list
mailing list