MCPcopy Create free account
hub / github.com/MITK/MITK / Image

Method Image

Modules/Core/src/DataManagement/mitkImage.cpp:34–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 }
33
34mitk::Image::Image()
35 : m_Dimension(0),
36 m_Dimensions(nullptr),
37 m_ImageDescriptor(nullptr),
38 m_OffsetTable(nullptr),
39 m_CompleteData(nullptr),
40 m_ImageStatistics(nullptr)
41{
42 m_Dimensions = new unsigned int[MAX_IMAGE_DIMENSIONS];
43 FILL_C_ARRAY(m_Dimensions, MAX_IMAGE_DIMENSIONS, 0u);
44
45 m_Initialized = false;
46}
47
48mitk::Image::Image(const Image &other)
49 : SlicedData(other),

Calls 10

InitializeMethod · 0.95
GetDimensionMethod · 0.95
SetVolumeMethod · 0.95
GetDimensionsMethod · 0.80
SetTimeGeometryMethod · 0.80
GetPointerMethod · 0.80
GetPixelTypeMethod · 0.45
CloneMethod · 0.45
GetVolumeDataMethod · 0.45
GetDataMethod · 0.45