comparison Core/DicomFormat/DicomMap.cpp @ 1206:f5b0207967bc

Fix issue #19 (YBR_FULL are decoded incorrectly)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 03 Nov 2014 15:19:02 +0100
parents a811bdf8b8eb
children 6e7e5ed91c2d
comparison
equal deleted inserted replaced
1205:bb1ad2fbf914 1206:f5b0207967bc
34 #include "DicomMap.h" 34 #include "DicomMap.h"
35 35
36 #include <stdio.h> 36 #include <stdio.h>
37 #include <memory> 37 #include <memory>
38 #include "DicomString.h" 38 #include "DicomString.h"
39 #include "DicomArray.h"
39 #include "../OrthancException.h" 40 #include "../OrthancException.h"
40 41
41 42
42 namespace Orthanc 43 namespace Orthanc
43 { 44 {
385 GetMainDicomTagsInternal(result, ResourceType_Patient); 386 GetMainDicomTagsInternal(result, ResourceType_Patient);
386 GetMainDicomTagsInternal(result, ResourceType_Study); 387 GetMainDicomTagsInternal(result, ResourceType_Study);
387 GetMainDicomTagsInternal(result, ResourceType_Series); 388 GetMainDicomTagsInternal(result, ResourceType_Series);
388 GetMainDicomTagsInternal(result, ResourceType_Instance); 389 GetMainDicomTagsInternal(result, ResourceType_Instance);
389 } 390 }
391
392
393 void DicomMap::Print(FILE* fp) const
394 {
395 DicomArray a(*this);
396 a.Print(fp);
397 }
390 } 398 }