| 51 | } |
| 52 | |
| 53 | vtkImageData* vtkImageExport::GetInput() |
| 54 | { |
| 55 | if (this->GetNumberOfInputConnections(0) < 1) |
| 56 | { |
| 57 | return nullptr; |
| 58 | } |
| 59 | return vtkImageData::SafeDownCast(this->GetExecutive()->GetInputData(0, 0)); |
| 60 | } |
| 61 | |
| 62 | //------------------------------------------------------------------------------ |
| 63 | vtkIdType vtkImageExport::GetDataMemorySize() |
no test coverage detected