Package jhd.FloodFill

Class FloodFill.FloodParams

java.lang.Object
jhd.FloodFill.FloodFill.FloodParams
Enclosing class:
FloodFill

public static class FloodFill.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 floodMax
    float floodMin
    float Flood pixels between floodMin and floodMax
    float floodVal
    float Set flooded pixels to this value
    int 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 floodMin
      float Flood pixels between floodMin and floodMax
    • floodMax

      public float floodMax
      float Flood pixels between floodMin and floodMax
    • floodVal

      public float floodVal
      float Set flooded pixels to this value
    • neighbors

      public int neighbors
      int the connectivity 6(face), 18(face and edge), 26(face,edge and corner)
    • showStatus

      public boolean showStatus
      show a progress bar
  • Constructor Details

    • FloodParams

      public FloodParams()