ch.unizh.ini.jaer.projects.pawtracker
Class PawTrackerStereoBoard2.EventPoint
java.lang.Object
ch.unizh.ini.jaer.projects.pawtracker.PawTrackerStereoBoard2.EventPoint
- Enclosing class:
- PawTrackerStereoBoard2
public class PawTrackerStereoBoard2.EventPoint
- extends java.lang.Object
EventPoint : all data about a point in retina space
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PawTrackerStereoBoard2.EventPoint
public PawTrackerStereoBoard2.EventPoint()
PawTrackerStereoBoard2.EventPoint
public PawTrackerStereoBoard2.EventPoint(int x,
int y,
float value,
int updateTime)
PawTrackerStereoBoard2.EventPoint
public PawTrackerStereoBoard2.EventPoint(BinocularEvent e)
PawTrackerStereoBoard2.EventPoint
public PawTrackerStereoBoard2.EventPoint(int x,
int y)
updateFrom
public void updateFrom(BinocularEvent e,
int x,
int y,
int side)
updateLabel
public void updateLabel()
updateLabelFrom
public void updateLabelFrom(PawTrackerStereoBoard2.EventPoint ep)
updateLabel2From
public void updateLabel2From(PawTrackerStereoBoard2.EventPoint ep)
newLabel
public void newLabel()
newLabel2
public void newLabel2()
noLabel
public void noLabel()
getValue
public float getValue(int currentTime)
getAccValue
public float getAccValue(int currentTime)
- commented out for optimization
public float getValue( int currentTime ){
if(useFilter){
if (decayOn) return shortFilteredValue-decayedValue(shortFilteredValue,currentTime-updateTime);
else return shortFilteredValue;
} else {
if (decayOn) return accValue-decayedValue(accValue,currentTime-updateTime);
else return accValue;
}
}
getShortFilteredValue
public float getShortFilteredValue(int currentTime)
getDecayedFilteredValue
public float getDecayedFilteredValue(int currentTime)
getPreviousShortFilteredValue
public float getPreviousShortFilteredValue(int currentTime)
getX0
public int getX0(int method)
getY0
public int getY0(int method)
getZ0
public int getZ0(int method)
computeXYZ0
public void computeXYZ0(int method)