MCPcopy Create free account
hub / github.com/Kitware/VTK / Process2

Method Process2

IO/Image/vtkTIFFReader.cxx:579–594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

577//------------------------------------------------------------------------------
578template <class OT>
579void 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.

Callers 1

ProcessMethod · 0.95

Calls 4

ReadImageInternalMethod · 0.95
GetOrientationTypeMethod · 0.80
OpenMethod · 0.45
InitializeMethod · 0.45

Tested by

no test coverage detected