diff Core/DicomFormat/DicomImageInformation.cpp @ 863:3c0d0836f704 jpeg

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Jun 2014 17:20:33 +0200
parents 80c7e53a69b5
children f5b0207967bc
line wrap: on
line diff
--- a/Core/DicomFormat/DicomImageInformation.cpp	Sat Jun 07 10:51:28 2014 +0200
+++ b/Core/DicomFormat/DicomImageInformation.cpp	Tue Jun 10 17:20:33 2014 +0200
@@ -159,11 +159,6 @@
 
   bool DicomImageInformation::ExtractPixelFormat(PixelFormat& format) const
   {
-    if (IsPlanar())
-    {
-      return false;
-    }
-
     if (GetBitsStored() == 8 && GetChannelCount() == 1 && !IsSigned())
     {
       format = PixelFormat_Grayscale8;