Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ternaus authored Feb 21, 2018
1 parent d3a7413 commit 5823438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion albu/src/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __call__(self, img, mask=None):
factor = random.randint(0, 4)
img = np.rot90(img, factor)
mask = np.rot90(mask, factor)
return img, mask
return img, mask


class Rotate:
Expand Down

0 comments on commit 5823438

Please sign in to comment.