Skip to content

Commit

Permalink
Fixes issue with CV_Resize operation have fx socket hint twice instea…
Browse files Browse the repository at this point in the history
…d of fy (#596)
  • Loading branch information
PatrickPenguinTurtle authored and JLLeitschuh committed Jun 2, 2016
1 parent 405630c commit a6d6c07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public class CVOperations {
templateFactory.create(
SocketHints.Inputs.createMatSocketHint("src", false),
new SocketHint.Builder<>(Size.class).identifier("dsize").initialValueSupplier(() -> new Size(0, 0)).build(),
SocketHints.Inputs.createNumberSpinnerSocketHint("fx", .25), SocketHints.Inputs.createNumberSpinnerSocketHint("fx", .25),
SocketHints.Inputs.createNumberSpinnerSocketHint("fx", .25), SocketHints.Inputs.createNumberSpinnerSocketHint("fy", .25),
SocketHints.createEnumSocketHint("interpolation", InterpolationFlagsEnum.INTER_LINEAR),
SocketHints.Outputs.createMatSocketHint("dst"),
(src, dsize, fx, fy, interpolation, dst) -> {
Expand Down

0 comments on commit a6d6c07

Please sign in to comment.