Fixed the path finding algos a bit

This commit is contained in:
Ziver Koc 2010-02-25 23:01:46 +00:00
parent 0f85e1b4dd
commit c161e4bdd8
11 changed files with 240 additions and 205 deletions

View file

@ -138,7 +138,7 @@ public class MedianFilter extends ImageFilterProcessor{
return ((Integer)data[ getY(a) ][ getX(a) ][ channel ]).compareTo(b);
}
public Integer getIndex(int i) {
public Integer get(int i) {
return data[ getY(i) ][ getX(i) ][ channel ];
}