1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
package tim.prune.function.compress;
import java.awt.Component;
import java.awt.event.ActionListener;
import tim.prune.data.DataPoint;
import tim.prune.data.Track;
/**
* Algorithm for detecting duplicate points to compress
*/
public class DuplicatePointAlgorithm extends CompressionAlgorithm
{
/** Number of points before this one to consider as duplicates */
private static final int NUM_POINTS_TO_BACKTRACK = 20;
/**
* Constructor
* @param inTrack track object
* @param inDetails track details object
* @param inListener listener to attach to activation control
*/
public DuplicatePointAlgorithm(Track inTrack, TrackDetails inDetails, ActionListener inListener)
{
super(inTrack, inDetails, inListener);
}
/**
* Perform the compression and work out which points should be deleted
* @param inFlags deletion flags from previous algorithms
* @return number of points deleted
*/
protected int compress(boolean[] inFlags)
{
int numPoints = _track.getNumPoints();
int numDeleted = 0;
// Loop over all points looking for duplicates
for (int i=1; i<numPoints; i++)
{
// Don't delete points which are already marked as deleted
if (!inFlags[i])
{
DataPoint currPoint = _track.getPoint(i);
// Don't delete any photo points
if (currPoint.getPhoto() == null)
{
// loop over last few points before this one
for (int j=i-NUM_POINTS_TO_BACKTRACK; j<i; j++)
{
if (j<0) {j=0;} // only look at last few points, but not before 0
if (currPoint.isDuplicate(_track.getPoint(j)))
{
inFlags[i] = true;
numDeleted++;
break;
}
}
}
}
}
return numDeleted;
}
/**
* @return specific gui components for dialog
*/
protected Component getSpecificGuiComponents()
{
// no parameters to set, so no gui components
return null;
}
/**
* @return title key for box
*/
protected String getTitleTextKey()
{
return "dialog.compress.duplicates.title";
}
}
|