]> Creatis software - clitk.git/blobdiff - common/clitkCommon.txx
- correct bug: string pixeltype is different in ITK and VTK
[clitk.git] / common / clitkCommon.txx
index bb4508a91a1866f81feed5dd9d8195096fbe0765..2441dcd2b27727bbe8cc62f43bd8b3c6018d39bb 100644 (file)
@@ -112,6 +112,9 @@ void GetSortedIndex(const std::vector<Type> & toSort, std::vector<int> & index,
 //--------------------------------------------------------------------
 template<class TPixel>
 std::string GetTypeAsString() {
+  //  http://www.vtk.org/doc/release/3/html/vtkSetGet_8h-source.html
+  // and
+  // itkImageIOBase.cxx
   const std::type_info & PixType = typeid(TPixel);
   std::string pixelName;
   if (PixType == typeid(char)) pixelName = "char"; // 'plain" char is different from signed char and unsigned char ...