From ae87c77ed84220dcfe6802a42ddfc7b147032c4e Mon Sep 17 00:00:00 2001 From: Tobi Delbruck Date: Thu, 26 Oct 2017 13:10:19 +0200 Subject: [PATCH] reduced min slice duration to 100us --- src/ch/unizh/ini/jaer/projects/minliu/PatchMatchFlow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch/unizh/ini/jaer/projects/minliu/PatchMatchFlow.java b/src/ch/unizh/ini/jaer/projects/minliu/PatchMatchFlow.java index 6a3dcaef5..daa53a444 100644 --- a/src/ch/unizh/ini/jaer/projects/minliu/PatchMatchFlow.java +++ b/src/ch/unizh/ini/jaer/projects/minliu/PatchMatchFlow.java @@ -130,7 +130,7 @@ public class PatchMatchFlow extends AbstractMotionFlow implements Observer, Fram // private float lastErrSign = Math.signum(1); // private final String outputFilename; private int sliceDeltaT; // The time difference between two slices used for velocity caluction. For constantDuration, this one is equal to the duration. For constantEventNumber, this value will change. - private int MIN_SLICE_DURATION_US = 1000; + private int MIN_SLICE_DURATION_US = 100; private int MAX_SLICE_DURATION_US = 300000; private boolean enableImuTimesliceLogging=false;