endrov.flowImageStats
Class EvOpSumCircle

java.lang.Object
  extended by endrov.flow.EvOpGeneral
      extended by endrov.flow.EvOpSlice1
          extended by endrov.flowImageStats.EvOpSumCircle

public class EvOpSumCircle
extends EvOpSlice1

Moving sum. Sum is taken over a circle with given radius. Complexity O(w*h*r)


Constructor Summary
EvOpSumCircle(java.lang.Number pw)
           
 
Method Summary
static EvPixels apply(ProgressHandle progh, EvPixels in, int iradius)
          Moving sum.
 EvPixels exec1(ProgressHandle progh, EvPixels... p)
          Apply given several image planes, returns only the first image plane
 
Methods inherited from class endrov.flow.EvOpSlice1
exec, exec, exec, exec1, exec1, getNumberChannels
 
Methods inherited from class endrov.flow.EvOpGeneral
exec11, exec11, exec1Untyped, execUntyped
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EvOpSumCircle

public EvOpSumCircle(java.lang.Number pw)
Method Detail

exec1

public EvPixels exec1(ProgressHandle progh,
                      EvPixels... p)
Description copied from class: EvOpGeneral
Apply given several image planes, returns only the first image plane

Specified by:
exec1 in class EvOpGeneral

apply

public static EvPixels apply(ProgressHandle progh,
                             EvPixels in,
                             int iradius)
Moving sum. Sum is taken over an area of size (2pw+1)x(2ph+1). pw=ph=0 hence corresponds to the identity operation. Pixels outside assumed 0. Complexity O(w*h)