pydicom.filereader.read_partial¶
- pydicom.filereader.read_partial(fileobj: BinaryIO, stop_when: Optional[Callable[[BaseTag, Optional[str], int], bool]] = None, defer_size: Optional[Union[int, float, str]] = None, force: bool = False, specific_tags: Optional[List[BaseTag]] = None) Union[FileDataset, DicomDir][source]¶
Parse a DICOM file until a condition is met.
- Parameters
Notes
Use
dcmread()unless you need to stop on some condition other than reaching pixel data.- Returns
The read dataset.
- Return type
See also
dcmreadMore generic file reading function.