Skip to content

Commit

Permalink
Fix missing base class
Browse files Browse the repository at this point in the history
  • Loading branch information
BloodAxe committed Aug 27, 2018
1 parent 87ba867 commit 117c000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion albumentations/imgaug/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def __init__(self, scale=0, nb_rows=4, nb_cols=4, order=1, cval=0, mode="constan
self.processor = iaa.PiecewiseAffine(scale, nb_rows, nb_cols, order, cval, mode)


class IAAAffine:
class IAAAffine(DualIAATransform):
"""Places a regular grid of points on the input and randomly moves the neighbourhood of these point around
via affine transformations.
Expand Down

0 comments on commit 117c000

Please sign in to comment.