Skip to content

Commit

Permalink
Fixed Java preprocessing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed May 15, 2024
1 parent bb43dc1 commit 5ebdee3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
public enum ResizeAlgorithm {
RESIZE_LINEAR(0),
RESIZE_CUBIC(1),
RESIZE_NEAREST(2);
RESIZE_NEAREST(2),
RESIZE_BILINEAR_PILLOW(3),
RESIZE_BICUBIC_PILLOW(4);

private int value;

Expand All @@ -17,4 +19,4 @@ private ResizeAlgorithm(int value) {
public int getValue() {
return value;
}
}
}

0 comments on commit 5ebdee3

Please sign in to comment.