| 543 | } |
| 544 | |
| 545 | int vtkImageExport::GetDataNumberOfScalarComponents() |
| 546 | { |
| 547 | if (this->GetInputAlgorithm() == nullptr) |
| 548 | { |
| 549 | return 1; |
| 550 | } |
| 551 | this->GetInputAlgorithm()->UpdateInformation(); |
| 552 | return vtkImageData::GetNumberOfScalarComponents(this->GetExecutive()->GetInputInformation(0, 0)); |
| 553 | } |
| 554 | |
| 555 | int vtkImageExport::GetDataScalarType() |
| 556 | { |
no test coverage detected