Medical Imaging Interaction Toolkit  2023.12.00
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkSurfaceVtkIO.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 mitkSurfaceVtkIO_h
14 #define mitkSurfaceVtkIO_h
15 
16 #include <mitkAbstractFileIO.h>
17 
18 #include <vtkPolyData.h>
19 #include <vtkSmartPointer.h>
20 
21 namespace mitk
22 {
37  {
38  public:
39  SurfaceVtkIO(const std::string &baseDataType, const CustomMimeType &mimeType, const std::string &description);
40 
42 
43  protected:
44  vtkSmartPointer<vtkPolyData> GetPolyData(unsigned int t, std::string &fileName);
45  };
46 }
47 
48 #endif
mitk::SurfaceVtkIO::GetPolyData
vtkSmartPointer< vtkPolyData > GetPolyData(unsigned int t, std::string &fileName)
mitk::CustomMimeType
The CustomMimeType class represents a custom mime-type which may be registered as a service object....
Definition: mitkCustomMimeType.h:44
vtkSmartPointer< vtkPolyData >
mitk::SurfaceVtkIO::GetWriterConfidenceLevel
ConfidenceLevel GetWriterConfidenceLevel() const override
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitkAbstractFileIO.h
mitk::SurfaceVtkIO::SurfaceVtkIO
SurfaceVtkIO(const std::string &baseDataType, const CustomMimeType &mimeType, const std::string &description)
mitk::SurfaceVtkIO
Definition: mitkSurfaceVtkIO.h:36
mitk::IFileIO::ConfidenceLevel
ConfidenceLevel
A confidence level describing the confidence of the reader or writer in handling the given data.
Definition: mitkIFileIO.h:45
mitk::AbstractFileIO
Abstract class for implementing a reader and writer.
Definition: mitkAbstractFileIO.h:69