ez_wsi_dicomweb/slide_level_map.py [538:551]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  frame_offset = (
      dicom_object.get_value(tags.CONCATENATION_FRAME_OFFSET_NUMBER) or 0
  )
  if frame_offset != 0:
    raise ez_wsi_errors.DicomSlideInitError(
        'Label, thumbnail and overview images should have frame offset 0 or'
        ' have the tag unset.'
    )
  frame_count = dicom_object.get_value(tags.NUMBER_OF_FRAMES) or 1
  if frame_count != 1:
    raise ez_wsi_errors.DicomSlideInitError(
        'Label, thumbnail and overview images should have frame count 1 or'
        ' have the tag unset.'
    )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ez_wsi_dicomweb/slide_level_map.py [1495:1508]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    frame_offset = (
        dicom_object.get_value(tags.CONCATENATION_FRAME_OFFSET_NUMBER) or 0
    )
    if frame_offset != 0:
      raise ez_wsi_errors.DicomSlideInitError(
          'Label, thumbnail and overview images should have frame offset 0 or'
          ' have the tag unset.'
      )
    frame_count = dicom_object.get_value(tags.NUMBER_OF_FRAMES) or 1
    if frame_count != 1:
      raise ez_wsi_errors.DicomSlideInitError(
          'Label, thumbnail and overview images should have frame count 1 or'
          ' have the tag unset.'
      )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



