X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FcreaVtk.txx;h=b748e67a32987356194b465db25ff014772ea6d9;hb=b25a9c7f156b97660af55abb23d8e56ec8ef1397;hp=4d39387958debb94ce4b6316ccdff53b8986af9d;hpb=bfb05457f0fad7329768d34492a2a2149195471a;p=crea.git diff --git a/src/creaVtk.txx b/src/creaVtk.txx index 4d39387..b748e67 100644 --- a/src/creaVtk.txx +++ b/src/creaVtk.txx @@ -1,39 +1,112 @@ +/* +# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la Santé) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# Previous Authors : Laurent Guigues, Jean-Pierre Roux +# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ +*/ + + + #include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + #include -#include +#include +#include namespace crea -{ - +{ template - vtkImageData* CREA_EXPORT NewVtkImageDataFromRaw( T* data, + /*CREA_EXPORT*/ vtkImageData* NewVtkImageDataFromRaw( T* data, int nx, int ny, - int nz) + int nz, + bool do_not_desalloc) { - std::cout << "NV "<::SizedName() << std::endl; + vtkImageData *image = vtkImageData::New(); + + // Shouldn't we pass NumberOfScalarComponents to deal with RGB, RGBA images as well? // JPR + image->SetNumberOfScalarComponents(1); - image->SetScalarType(GetVtkIdType(*data)); - image->SetDimensions(nx,ny,nz); - image->SetSpacing(1,1,1); - std::cout << "alloc"<::VTKTypeID(); + image->SetScalarType(vtktype); + image->SetDimensions(nx, ny ,nz); + image->SetSpacing(1, 1, 1); image->AllocateScalars(); - std::cout << "alloc ok"<* array - = (vtkDataArrayTemplate*)vtkDataArrayTemplate::New(); - std::cout << "data array alloc ok"<SetNumberOfComponents( 1 ); - std::cout << "nb compo ok"<::SizedName() + <<" non implemented"); + } + vtkDataArrayTemplate* tarray + = dynamic_cast*>(array); + array->SetNumberOfComponents( 1 ); size_t size = (long)nx*(long)ny*(long)nz; - std::cout << "SetArray"<SetArray( data, size, 1 ); - //Pay attention in particular to the last param of SetArray: - //http://www.vtk.org/doc/nightly/html/classvtkUnsignedShortArray.html#z798_0 - std::cout << "SetScalars"<GetPointData( )->SetScalars( array ); - std::cout << "Delete"<SetArray( data, size, dndesa ); + image->GetPointData( )->SetScalars( tarray ); array->Delete( ); return image; }