X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FcreaImageIOSimpleView.h;h=669af13a0ddf1b9dd5eb890fc4c3a2fad85194fe;hb=1be6b124bc950f4d6734c241ce591d662bf3efbc;hp=25cff51862f798cd2b6912316981339d7a0b1c87;hpb=0273cd213fbc2d2d95b412d05ba17fb32e4e3db0;p=creaImageIO.git diff --git a/src/creaImageIOSimpleView.h b/src/creaImageIOSimpleView.h index 25cff51..669af13 100644 --- a/src/creaImageIOSimpleView.h +++ b/src/creaImageIOSimpleView.h @@ -48,10 +48,19 @@ namespace creaImageIO ~SimpleView(){} /// read file(s) and return a vector of vtkImageData - bool readFile( std::vector i_filenames, std::vector< vtkImageData *> &i_img); + bool readFile( std::vector i_filenames, // in information names + std::vector i_attr, // in information attributes names + std::vector > &i_imgAttr, // out information attributes names-values + std::vector< vtkImageData *> &i_img); // out information vtkImageData /// read a directory and return a vector of vtkImageData - bool readDirectory(const std::string i_pathname, std::vector< vtkImageData *> &i_imgs); + bool readDirectory( const std::string i_pathname, // in information names + std::vector i_attr, // in information attributes names + std::vector > &i_imgAttr, // out information attributes names-values + std::vector &i_imgs); // out information vtkImageData + + + }; }