| 577 | //------------------------------------------------------------------------------ |
| 578 | template <class OT> |
| 579 | void vtkTIFFReader::Process2(OT* outPtr, int*) |
| 580 | { |
| 581 | if (!this->InternalImage->Open(this->GetInternalFileName())) |
| 582 | { |
| 583 | return; |
| 584 | } |
| 585 | // if orientation information is provided, overwrite the value |
| 586 | // read from the tiff image |
| 587 | if (this->GetOrientationTypeSpecifiedFlag()) |
| 588 | { |
| 589 | this->InternalImage->Orientation = this->GetOrientationType(); |
| 590 | } |
| 591 | |
| 592 | this->Initialize(); |
| 593 | this->ReadImageInternal(outPtr); |
| 594 | } |
| 595 | |
| 596 | //------------------------------------------------------------------------------ |
| 597 | // This function reads in one data of data. |
no test coverage detected