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

Support all PIL resampling filters for resize operation #180 #181

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions Augmentor/Pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Pipeline(object):
_probability_error_text = "The probability argument must be between 0 and 1."
_threshold_error_text = "The value of threshold must be between 0 and 255."
_valid_formats = ["PNG", "BMP", "GIF", "JPEG"]
_legal_filters = ["NEAREST", "BICUBIC", "ANTIALIAS", "BILINEAR"]
_legal_filters = ["NEAREST", "BICUBIC", "ANTIALIAS", "BILINEAR", "LANCZOS", "BOX", "HAMMING"]

def __init__(self, source_directory=None, output_directory="output", save_format=None):
"""
Expand Down Expand Up @@ -1339,7 +1339,7 @@ def resize(self, probability, width, height, resample_filter="BICUBIC"):
:param width: The new width that the image should be resized to.
:param height: The new height that the image should be resized to.
:param resample_filter: The resampling filter to use. Must be one of
BICUBIC, BILINEAR, ANTIALIAS, or NEAREST.
BICUBIC, BILINEAR, ANTIALIAS, NEAREST, LANCZOS, BOX or HAMMING.
:type probability: Float
:type width: Integer
:type height: Integer
Expand Down