X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=creaImageIO.git;a=blobdiff_plain;f=src%2FcreaImageIOSimpleView.h;fp=src%2FcreaImageIOSimpleView.h;h=669af13a0ddf1b9dd5eb890fc4c3a2fad85194fe;hp=25cff51862f798cd2b6912316981339d7a0b1c87;hb=f4345fcbbb606af15d5af72b6179d5103ff75565;hpb=bae8afe7ee037a3368be7060c3a0708582e7d413 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 + + + }; }