Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion monai/data/image_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def verify_suffix(self, filename: Union[Sequence[str], str]) -> bool:
filename: file name or a list of file names to read.
if a list of files, verify all the suffixes.
"""
suffixes: Sequence[str] = ["png", "jpg", "bmp"]
suffixes: Sequence[str] = ["png", "jpg", "jpeg", "bmp"]
return has_pil and is_supported_format(filename, suffixes)

def read(self, data: Union[Sequence[str], str, np.ndarray], **kwargs):
Expand Down