|
rt.reset();
MaximumFinder fd=new MaximumFinder();
ByteProcessor TU = fd.findMaxima(stack.getProcessor(iFrame),15,20,4,false,true);
int ir=rt.getCounter();
float[] sx = null;
float[] sy=null;
for(int it=1;it<ir;it++){
sx[it] = rt.getValue('X',it);
sy[it] = rt.getValue('Y',it);
I want to get the resulttable ,but There are some problems. My code is right?
|