void DcmFilePyramidSource::debugLog()

in src/dcmFilePyramidSource.cpp [485:507]


void DcmFilePyramidSource::debugLog() const {
  std::string tile = "";
  if (tiledFull()) {
      tile += "tile_full";
  }
  if (tiledSparse()) {
      tile += "tile_sparse";
  }
  if (tile == "") {
    tile = "unknown";
  }
  BOOST_LOG_TRIVIAL(info) << "Image Dim: " << imageWidth() << ", " <<
                             imageHeight() <<  "\n" << "Dim mm: " <<
                             imageHeightMM() << ", " << imageWidthMM() <<
                             "\n" << "Downsample: " << downsample() << "\n" <<
                             "Photometric: " <<
                      static_cast<std::string>(photometricInterpretation()) <<
                             "\n" << "Frame Count: " << fileFrameCount() <<
                             "\n" << "Tile: " << tile << "\n" <<
                             "Frame Dim: " << frameWidth() << ", " <<
                             frameHeight() <<  "\n"  << "Transfer Syntax: " <<
                             transferSyntax();
}