Visualization Library 2.0.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
ioDICOM.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #if !defined(ioDICOM_INCLUDE_ONCE)
33 #define ioDICOM_INCLUDE_ONCE
34 
37 #include <vlCore/Image.hpp>
38 
39 namespace vl
40 {
41  class VirtualFile;
42  class String;
43 
45  VLCORE_EXPORT ref<Image> loadDICOM(VirtualFile* file);
47  VLCORE_EXPORT ref<Image> loadDICOM(const String& path);
49  VLCORE_EXPORT bool saveDICOM(const Image* src, const String& path);
51  VLCORE_EXPORT bool saveDICOM(const Image* src, VirtualFile* file);
53  VLCORE_EXPORT bool isDICOM(VirtualFile* file);
54 
55  //---------------------------------------------------------------------------
56  // LoadWriterDICOM
57  //---------------------------------------------------------------------------
61  {
63 
64  public:
65  LoadWriterDICOM(): ResourceLoadWriter("|dcm|dicom|dic|ima|ph|mag|", "|dcm|dicom|dic|ima|ph|mag|")
66  {
67  VL_DEBUG_SET_OBJECT_NAME()
68  }
69 
71  {
73  ref<Image> img = loadDICOM(path);
74  if (img)
75  res_db->resources().push_back(img);
76  return res_db;
77  }
78 
80  {
82  ref<Image> img = loadDICOM(file);
83  if (img)
84  res_db->resources().push_back(img);
85  return res_db;
86  }
87 
88  bool writeResource(const String&, ResourceDatabase*) const
89  {
90  return false;
91  }
92 
94  {
95  return false;
96  }
97  };
98 }
99 
100 #endif
101 
An abstract class representing a file.
Definition: VirtualFile.hpp:60
VLCORE_EXPORT ref< Image > loadDICOM(VirtualFile *file)
Loads a DICOM file.
Definition: ioDICOM.cpp:108
The String class implements an advanced UTF16 (Unicode BMP) string manipulation engine.
Definition: String.hpp:62
ref< ResourceDatabase > loadResource(const String &path) const
Definition: ioDICOM.hpp:70
#define VL_INSTRUMENT_CLASS(ClassName, BaseClass)
Definition: TypeInfo.hpp:122
VLCORE_EXPORT bool isDICOM(VirtualFile *file)
Checks if the given file is a DICOM file.
Definition: ioDICOM.cpp:372
Visualization Library main namespace.
VLCORE_EXPORT bool saveDICOM(const Image *src, const String &path)
Writes a DICOM file.
Definition: ioDICOM.cpp:384
The LoadWriterDICOM class is a ResourceLoadWriter capable of reading DICOM files (.dcm, .dicom, .dic, .ima, .ph, .mag) using GDCM 2.0 library.
Definition: ioDICOM.hpp:60
ref< ResourceDatabase > loadResource(VirtualFile *file) const
Definition: ioDICOM.hpp:79
bool writeResource(const String &, ResourceDatabase *) const
Definition: ioDICOM.hpp:88
bool writeResource(VirtualFile *, ResourceDatabase *) const
Definition: ioDICOM.hpp:93
The ref<> class is used to reference-count an Object.
Definition: Object.hpp:55
The ResourceLoadWriter class is an abstract class used to implement read/write support for one or mor...
The ResourceDatabase class contains and manipulates a set of resources.