| 553 | } |
| 554 | |
| 555 | int vtkImageExport::GetDataScalarType() |
| 556 | { |
| 557 | if (this->GetInputAlgorithm() == nullptr) |
| 558 | { |
| 559 | return VTK_UNSIGNED_CHAR; |
| 560 | } |
| 561 | this->GetInputAlgorithm()->UpdateInformation(); |
| 562 | return vtkImageData::GetScalarType(this->GetExecutive()->GetInputInformation(0, 0)); |
| 563 | } |
| 564 | |
| 565 | int* vtkImageExport::GetDataExtent() |
| 566 | { |
no test coverage detected