Skip to content

Commit

Permalink
[SYSTEMDS-3545] Image Crop Linearized (Credit)
Browse files Browse the repository at this point in the history
  • Loading branch information
slnkahveci authored and Baunsgaard committed Oct 17, 2023
1 parent 2c0cff0 commit 2b05e9f
Showing 1 changed file with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,17 @@ public class BuiltinImageCropLinTest extends AutomatedTestBase {

@Parameterized.Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {{10, 12, 20, 2, 3, 0.5}, {12, 12, 40, 5, 5, 0.4}, {32, 32, 200, 13, 10, 0.2},
{31, 33, 200, 7, 10, 0.2}, {64, 64, 50, 2, 0, 0.8}, {125, 123, 32, 7, 37, 0.3}, {128, 128, 83, 23, 14, 0.123},
{256, 50, 2, 0, 0, 0.8}, {256, 255, 2, 0, 0, 0.8}, {512, 300, 47, 6, 7, 0.7}});
return Arrays.asList(new Object[][] {
{10, 12, 20, 2, 3, 0.5},
{12, 12, 40, 5, 5, 0.4},
{32, 32, 200, 13, 10, 0.2},
{31, 33, 200, 7, 10, 0.2},
{64, 64, 50, 2, 0, 0.8},
{125, 123, 32, 7, 37, 0.3},
{128, 128, 83, 23, 14, 0.123},
{256, 50, 2, 0, 0, 0.8},
{256, 255, 2, 0, 0, 0.8},
{512, 300, 47, 6, 7, 0.7}});
}

@Override
Expand Down

0 comments on commit 2b05e9f

Please sign in to comment.