Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only import numpy when necessary #5323

Merged
merged 1 commit into from Mar 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions src/PIL/ImageFilter.py
Expand Up @@ -16,11 +16,6 @@
#
import functools

try:
import numpy
except ImportError: # pragma: no cover
numpy = None


class Filter:
pass
Expand Down Expand Up @@ -369,6 +364,13 @@ def __init__(self, size, table, channels=3, target_mode=None, **kwargs):
items = size[0] * size[1] * size[2]
wrong_size = False

numpy = None
if hasattr(table, "shape"):
try:
import numpy
except ImportError: # pragma: no cover
pass

if numpy and isinstance(table, numpy.ndarray):
if copy_table:
table = table.copy()
Expand Down