Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkMultiLabelSegmentationIO.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkMultiLabelSegmentationIO_h
14 #define mitkMultiLabelSegmentationIO_h
15 
16 #include <mitkAbstractFileIO.h>
17 #include <mitkLabelSetImage.h>
18 
19 namespace mitk
20 {
26  // The export macro should be removed. Currently, the unit
27  // tests directly instantiate this class.
29  {
30  public:
32 
34 
35  // -------------- AbstractFileReader -------------
36 
38 
40 
41  // -------------- AbstractFileWriter -------------
42 
43  void Write() override;
45 
46  protected:
52  std::vector<itk::SmartPointer<BaseData>> DoRead() override;
53 
54  // Fills the m_DefaultMetaDataKeys vector with default values
56 
57  private:
58  MultiLabelSegmentationIO *IOClone() const override;
59 
60  std::vector<std::string> m_DefaultMetaDataKeys;
61  };
62 } // end of namespace mitk
63 
64 #endif
Abstract class for implementing a reader and writer.
std::vector< itk::SmartPointer< BaseData > > Read() override
Reads a path or stream and creates a list of BaseData objects.
virtual void InitializeDefaultMetaDataKeys()
mitk::MultiLabelSegmentation InputType
std::vector< itk::SmartPointer< BaseData > > DoRead() override
Reads a number of mitk::LabelSetImages from the file system.
ConfidenceLevel GetReaderConfidenceLevel() const override
void Write() override
Write the base data to the specified location or output stream.
ConfidenceLevel GetWriterConfidenceLevel() const override
MultiLabelSegmentation class for handling labels and layers in a segmentation session.
Find image slices visible on a given plane.
ConfidenceLevel
A confidence level describing the confidence of the reader or writer in handling the given data.
Definition: mitkIFileIO.h:46