Package jhd.FloodFill
Class HybridFloodFill.FloodParams
java.lang.Object
jhd.FloodFill.HybridFloodFill.FloodParams
- Enclosing class:
- HybridFloodFill
public static class HybridFloodFill.FloodParams
extends java.lang.Object
Experimental data structure passed to Flood_Fill
-
Field Summary
Fields Modifier and Type Field Description float
floodMax
float Flood pixels between floodMin and floodMaxfloat
floodMin
float Flood pixels between floodMin and floodMaxfloat
floodVal
float Set flooded pixels to this valueint
neighbors
int the connectivity 6(face), 18(face and edge), 26(face,edge and corner)boolean
showStatus
show a progress bar -
Constructor Summary
Constructors Constructor Description FloodParams()
-
Method Summary
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
floodMin
public float floodMinfloat Flood pixels between floodMin and floodMax -
floodMax
public float floodMaxfloat Flood pixels between floodMin and floodMax -
floodVal
public float floodValfloat Set flooded pixels to this value -
neighbors
public int neighborsint the connectivity 6(face), 18(face and edge), 26(face,edge and corner) -
showStatus
public boolean showStatusshow a progress bar
-
-
Constructor Details
-
FloodParams
public FloodParams()
-