Skip to content

Commit

Permalink
reduced min slice duration to 100us
Browse files Browse the repository at this point in the history
  • Loading branch information
tobidelbruck committed Oct 26, 2017
1 parent 720b63d commit ae87c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch/unizh/ini/jaer/projects/minliu/PatchMatchFlow.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ae87c77

Please sign in to comment.